From 5a2563c059309c0600404ce69f06a235fb717e4f Mon Sep 17 00:00:00 2001 From: Ben Darwin Date: Mon, 11 Apr 2016 15:00:09 -0400 Subject: [PATCH 01/96] theano: init at 0.8.1 --- pkgs/top-level/python-packages.nix | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c14372ea99b..d10a64c588d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -20085,6 +20085,36 @@ in modules // { }; }; + Theano = buildPythonPackage rec { + name = "Theano-0.8.1"; + + disabled = isPyPy || pythonOlder "2.6" || (isPy3k && pythonOlder "3.3"); + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/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 pkgs.blas ] ++ (with self; [ nose numpy 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}"; From fb6ea3deadfbffc9bd605d68170c0e3133abcb6d Mon Sep 17 00:00:00 2001 From: Al Zohali Date: Sat, 23 Apr 2016 22:26:23 +0300 Subject: [PATCH 02/96] postgresql service: initialScript fixup --- nixos/modules/services/databases/postgresql.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 From 3b7aee2e5a87b256aaff903a33106d974a25dbef Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Fri, 8 Apr 2016 12:49:37 +0200 Subject: [PATCH 03/96] beancount: init at 2016-04-10-b5721f1c6f01bd168a5781652e5e3167f7f8ceb3 --- .../applications/office/beancount/default.nix | 43 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 ++ 2 files changed, 47 insertions(+) create mode 100644 pkgs/applications/office/beancount/default.nix 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/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 621ed6a5145..9ebd6d6960f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14697,6 +14697,10 @@ in bastet = callPackage ../games/bastet {}; + beancount = callPackage ../applications/office/beancount { + pythonPackages = python3Packages; + }; + beret = callPackage ../games/beret { }; bitsnbots = callPackage ../games/bitsnbots { From 8dbcb4e35ecc2513dab1ed8cb6052f68ab0a6537 Mon Sep 17 00:00:00 2001 From: Eric Merritt Date: Mon, 28 Mar 2016 14:14:13 -0700 Subject: [PATCH 04/96] beamPackages: Add support for Mix and Erlang.mk --- .../beam-modules/build-erlang-mk.nix | 86 + .../build-hex.nix | 0 pkgs/development/beam-modules/build-mix.nix | 86 + .../build-rebar3.nix | 9 +- pkgs/development/beam-modules/default.nix | 17 + .../rebar3 => beam-modules}/fetch-hex.nix | 0 .../development/beam-modules/hex-packages.nix | 43524 ++++++++++++++++ .../beam-modules/hex-registry-snapshot.nix | 23 + pkgs/development/beam-modules/hex/default.nix | 58 + pkgs/development/beam-modules/mix-bootstrap | 112 + .../beam-modules/pgsql/default.nix | 34 + .../webdriver/default.nix | 0 pkgs/development/erlang-modules/default.nix | 14 - .../erlang-modules/hex-packages.nix | 3027 -- .../tools/build-managers/rebar3/default.nix | 7 +- pkgs/top-level/all-packages.nix | 9 +- 16 files changed, 43953 insertions(+), 3053 deletions(-) create mode 100644 pkgs/development/beam-modules/build-erlang-mk.nix rename pkgs/development/{erlang-modules => beam-modules}/build-hex.nix (100%) create mode 100644 pkgs/development/beam-modules/build-mix.nix rename pkgs/development/{erlang-modules => beam-modules}/build-rebar3.nix (88%) create mode 100644 pkgs/development/beam-modules/default.nix rename pkgs/development/{tools/build-managers/rebar3 => beam-modules}/fetch-hex.nix (100%) create mode 100644 pkgs/development/beam-modules/hex-packages.nix create mode 100644 pkgs/development/beam-modules/hex-registry-snapshot.nix create mode 100644 pkgs/development/beam-modules/hex/default.nix create mode 100755 pkgs/development/beam-modules/mix-bootstrap create mode 100644 pkgs/development/beam-modules/pgsql/default.nix rename pkgs/development/{erlang-modules => beam-modules}/webdriver/default.nix (100%) delete mode 100644 pkgs/development/erlang-modules/default.nix delete mode 100644 pkgs/development/erlang-modules/hex-packages.nix 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..12efc00b050 --- /dev/null +++ b/pkgs/development/beam-modules/build-mix.nix @@ -0,0 +1,86 @@ +{ stdenv, writeText, elixir, erlang, hexRegistrySnapshot, hex }: + +{ 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 ]; + }; + + 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 88% rename from pkgs/development/erlang-modules/build-rebar3.nix rename to pkgs/development/beam-modules/build-rebar3.nix index 8033d6c838e..2627ddf99a6 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; @@ -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..03bab8c4aa9 --- /dev/null +++ b/pkgs/development/beam-modules/default.nix @@ -0,0 +1,17 @@ +{ stdenv, pkgs }: #? import {} }: + +let + self = rec { + hexPackages = import ./hex-packages.nix { stdenv = stdenv; callPackage = self.callPackage; }; + 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 {}; + elli = callPackage ./elli {}; + }; +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..d7b635176a8 --- /dev/null +++ b/pkgs/development/beam-modules/hex-packages.nix @@ -0,0 +1,43524 @@ +/* hex-packages.nix is an auto-generated file -- DO NOT EDIT! */ + +/* Unbuildable packages: + + +*/ +{ stdenv, callPackage, overrides ? (self: super: {}) }: + +let + packages = self: rec { + abnf_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + abnf = abnf_0_0_1; + + absinthe_0_5_2 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "absinthe"; + version = "0.5.2"; + src = fetchHex { + pkg = "absinthe"; + version = "0.5.2"; + sha256 = + "2b926ae2b61e0227caf437419d017bb146a9073a67e4e5fa5ed754f3b30994f6"; + }; + + meta = { + description = ''GraphQL for Elixir''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/CargoSense/absinthe"; + }; + } + ) {}; + + absinthe = absinthe_0_5_2; + + absinthe_plug_0_5_0 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1, absinthe_0_5_2 }: + buildMix { + name = "absinthe_plug"; + version = "0.5.0"; + src = fetchHex { + pkg = "absinthe_plug"; + version = "0.5.0"; + sha256 = + "eaa22a2af708ee3c37217ad5fcf31210347bb7c0807f7c96cffb09b311326291"; + }; + beamDeps = [ plug_1_1_1 absinthe_0_5_2 ]; + + meta = { + description = ''A plug for Absinthe, an experimental GraphQL + toolkit''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/CargoSense/absinthe_plug"; + }; + } + ) {}; + + absinthe_plug = absinthe_plug_0_5_0; + + access_token_extractor_0_1_1 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1, 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_1 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"; + }; + } + ) {}; + + access_token_extractor = access_token_extractor_0_1_1; + + active_0_9_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "active"; + version = "0.9.0"; + src = fetchHex { + pkg = "active"; + version = "0.9.0"; + sha256 = + "3ec6a0eda29137866674ddd56d44f6b0383fa3ec4480121639d2ef61b443ec28"; + }; + + meta = { + description = ''Erlang active reloader''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/synrc/active"; + }; + } + ) {}; + + active = active_0_9_0; + + adam7_0_4_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + adam7 = adam7_0_4_0; + + adap_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + adap = adap_0_0_1; + + addict_0_1_0 = callPackage + ( + { + buildMix, + fetchHex, + phoenix_1_1_4, + mailgun_0_0_2, + ecto_0_16_0, + cowboy_1_0_4, + comeonin_1_6_0 + }: + buildMix { + name = "addict"; + version = "0.1.0"; + src = fetchHex { + pkg = "addict"; + version = "0.1.0"; + sha256 = + "8d8ca253ee73bae88c1eb756992fe4435aa4e7b58eddcd102097b13dc4af611a"; + }; + beamDeps = [ + phoenix_1_1_4 + mailgun_0_0_2 + ecto_0_16_0 + cowboy_1_0_4 + comeonin_1_6_0 + ]; + + meta = { + longDescription = ''Addict allows you to manage users on your + Phoenix app easily. Register, login, logout, + recover password and password updating is + available off-the-shelf.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/trenpixster/addict"; + }; + } + ) {}; + + addict = addict_0_1_0; + + address_us_0_1_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "address_us"; + version = "0.1.1"; + src = fetchHex { + pkg = "address_us"; + version = "0.1.1"; + sha256 = + "e29c6dd33d2a2ebd97441bfdac3eb23fa6221cf5d3be8b8c66247ee61ce442c6"; + }; + + meta = { + description = ''Library for parsing US Addresses into their + individual parts.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/smashedtoatoms/address_us"; + }; + } + ) {}; + + address_us = address_us_0_1_1; + + aeacus_0_3_0 = callPackage + ( + { buildMix, fetchHex, comeonin_1_6_0 }: + buildMix { + name = "aeacus"; + version = "0.3.0"; + src = fetchHex { + pkg = "aeacus"; + version = "0.3.0"; + sha256 = + "3cc138cfc7c508cfd85afddd0881632dde2e663d222c9e3749fae8c80ebb2c0b"; + }; + beamDeps = [ comeonin_1_6_0 ]; + + meta = { + longDescription = ''A simple, secure, and highly configurable + Elixir identity [username | email | id | + etc.]/password authentication module; Compatible + with Ecto.''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/zmoshansky/aeacus"; + }; + } + ) {}; + + aeacus = aeacus_0_3_0; + + airbrake_0_1_0 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "airbrake"; + version = "0.1.0"; + src = fetchHex { + pkg = "airbrake"; + version = "0.1.0"; + sha256 = + "45d3e2da7f5a8793b9fd7752cbeaa988a848396f44b77d0265f3bed36182d901"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''An Elixir notifier to the Airbrake''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/romul/airbrake-elixir"; + }; + } + ) {}; + + airbrake = airbrake_0_1_0; + + airbrake_plug_0_1_1 = callPackage + ( + { buildMix, fetchHex, airbrake_0_1_0 }: + buildMix { + name = "airbrake_plug"; + version = "0.1.1"; + src = fetchHex { + pkg = "airbrake_plug"; + version = "0.1.1"; + sha256 = + "2560f8b830e94b09788952165cd3053b47106d4afebf547dc370d7f307e804b9"; + }; + beamDeps = [ airbrake_0_1_0 ]; + + meta = { + description = ''Airbrake reporter for Elixir`s Plug''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/romul/airbrake_plug"; + }; + } + ) {}; + + airbrake_plug = airbrake_plug_0_1_1; + + airbrakex_0_0_6 = callPackage + ( + { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_1 }: + buildMix { + name = "airbrakex"; + version = "0.0.6"; + src = fetchHex { + pkg = "airbrakex"; + version = "0.0.6"; + sha256 = + "a8efc0a9a641a6c5ada2585ee5889291b74ded10977af7b1a4ac6bc445d166e8"; + }; + beamDeps = [ poison_2_1_0 httpoison_0_8_1 ]; + + meta = { + description = ''Airbrake Elixir Notifier''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/fazibear/airbrakex"; + }; + } + ) {}; + + airbrakex = airbrakex_0_0_6; + + alambic_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + alambic = alambic_0_1_0; + + alchemy_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + alchemy = alchemy_0_0_1; + + aleppo_0_9_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + aleppo = aleppo_0_9_0; + + alexa_plug_0_2_0 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1 }: + buildMix { + name = "alexa_plug"; + version = "0.2.0"; + src = fetchHex { + pkg = "alexa_plug"; + version = "0.2.0"; + sha256 = + "a78f6fa5e3ba33ce0943f4cb96d6cfcc9b36637a4575314469c8a0d45fff40d0"; + }; + beamDeps = [ plug_1_1_1 ]; + + 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"; + }; + } + ) {}; + + alexa_plug = alexa_plug_0_2_0; + + algae_0_9_1 = callPackage + ( + { buildMix, fetchHex, quark_1_0_2 }: + buildMix { + name = "algae"; + version = "0.9.1"; + src = fetchHex { + pkg = "algae"; + version = "0.9.1"; + sha256 = + "6d0877d508bd16098b4fb6d0549c5070b8217016b61ac8b220d9f35f3fb82391"; + }; + 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"; + }; + } + ) {}; + + algae = algae_0_9_1; + + alice_0_1_2 = callPackage + ( + { + buildMix, + fetchHex, + slack_0_4_2, + redix_0_3_4, + poolboy_1_5_1, + poison_2_0_1 + }: + buildMix { + name = "alice"; + version = "0.1.2"; + src = fetchHex { + pkg = "alice"; + version = "0.1.2"; + sha256 = + "badb6a115a8de88bab122b197214881cd64d2aaf48d8004013adbc6a024fb985"; + }; + beamDeps = [ slack_0_4_2 redix_0_3_4 poolboy_1_5_1 poison_2_0_1 + ]; + + meta = { + description = ''A Slack bot''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/adamzaninovich/alice"; + }; + } + ) {}; + + alice = alice_0_1_2; + + alice_against_humanity_0_0_1 = callPackage + ( + { buildMix, fetchHex, alice_0_1_2 }: + buildMix { + name = "alice_against_humanity"; + version = "0.0.1"; + src = fetchHex { + pkg = "alice_against_humanity"; + version = "0.0.1"; + sha256 = + "8c9ddbd7b5db3a18740a354b2e385c7e652e820f4262279dfabee36de93c7816"; + }; + beamDeps = [ alice_0_1_2 ]; + + meta = { + description = ''A handler for the Alice Slack bot. Play Cards + Against Humanity with Alice.''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/adamzaninovich/alice_against_humanity"; + }; + } + ) {}; + + alice_against_humanity = alice_against_humanity_0_0_1; + + alice_google_images_0_0_1 = callPackage + ( + { buildMix, fetchHex, alice_0_1_2 }: + buildMix { + name = "alice_google_images"; + version = "0.0.1"; + src = fetchHex { + pkg = "alice_google_images"; + version = "0.0.1"; + sha256 = + "ca276e382bde0a996866c7196ae454d3fdc0eb835398e8ece56c24b2c74736cc"; + }; + beamDeps = [ alice_0_1_2 ]; + + meta = { + description = ''A handler for the Alice Slack bot. Get random + images from Google''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/adamzaninovich/alice_google_images"; + }; + } + ) {}; + + alice_google_images = alice_google_images_0_0_1; + + alice_karma_0_0_1 = callPackage + ( + { buildMix, fetchHex, alice_0_1_2 }: + buildMix { + name = "alice_karma"; + version = "0.0.1"; + src = fetchHex { + pkg = "alice_karma"; + version = "0.0.1"; + sha256 = + "b2c1d8b0b7fe077b2a4bc1f24b01e872e24d4f6c82d50791ef6b3a57fc2af150"; + }; + beamDeps = [ alice_0_1_2 ]; + + meta = { + longDescription = ''A handler for the Alice Slack bot. Allows + Alice to keep track of karma points for + arbitrary terms.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/adamzaninovich/alice_karma"; + }; + } + ) {}; + + alice_karma = alice_karma_0_0_1; + + alphonse_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + alphonse = alphonse_0_1_0; + + amazon_product_advertising_client_0_1_0 = callPackage + ( + { + buildMix, + fetchHex, + timex_1_0_0_rc4, + sweet_xml_0_6_1, + httpoison_0_8_1 + }: + buildMix { + name = "amazon_product_advertising_client"; + version = "0.1.0"; + src = fetchHex { + pkg = "amazon_product_advertising_client"; + version = "0.1.0"; + sha256 = + "b50ac32e0386060de093955662a8152bcb446c81c6fa5315ec0cf94586c69c24"; + }; + beamDeps = [ timex_1_0_0_rc4 sweet_xml_0_6_1 httpoison_0_8_1 ]; + + meta = { + description = ''An Amazon Product Advertising API client for + Elixir''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/zachgarwood/elixir-amazon-product-advertising-client"; + }; + } + ) {}; + + amazon_product_advertising_client = + amazon_product_advertising_client_0_1_0; + + amnesia_0_2_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + amnesia = amnesia_0_2_1; + + amqp_0_1_1 = callPackage + ( + { buildMix, fetchHex, amqp_client_3_5_6 }: + buildMix { + name = "amqp"; + version = "0.1.1"; + src = fetchHex { + pkg = "amqp"; + version = "0.1.1"; + sha256 = + "64cf314b8953cef7c809cce8f21cb8574f1ca29226b007bbaab7ac9079c96912"; + }; + beamDeps = [ amqp_client_3_5_6 ]; + + meta = { + description = ''Idiomatic Elixir client for RabbitMQ.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/pma/amqp"; + }; + } + ) {}; + + amqp_0_1_4 = callPackage + ( + { buildMix, fetchHex, amqp_client_3_5_6 }: + buildMix { + name = "amqp"; + version = "0.1.4"; + src = fetchHex { + pkg = "amqp"; + version = "0.1.4"; + sha256 = + "a75d9b9283f306627b1d72a1ae326bb8c2910c5cd8198fa036e575b74b340ef4"; + }; + beamDeps = [ amqp_client_3_5_6 ]; + + meta = { + description = ''Idiomatic Elixir client for RabbitMQ.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/pma/amqp"; + }; + } + ) {}; + + amqp = amqp_0_1_4; + + amqp_client_3_5_6 = callPackage + ( + { buildRebar3, fetchHex, rabbit_common_3_5_6 }: + buildRebar3 { + name = "amqp_client"; + version = "3.5.6"; + src = fetchHex { + pkg = "amqp_client"; + version = "3.5.6"; + sha256 = + "3dc10a5ba146fd737502d407a1afee0c460b4477d66ca361240985f412a2e9a3"; + }; + + beamDeps = [ rabbit_common_3_5_6 ]; + + meta = { + description = ''Erlang RabbitMQ/AMQP client.''; + license = stdenv.lib.licenses.mpl11; + homepage = "https://github.com/jbrisbin/amqp_client"; + }; + } + ) {}; + + amqp_client = amqp_client_3_5_6; + + amrita_0_4_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "amrita"; + version = "0.4.0"; + src = fetchHex { + pkg = "amrita"; + version = "0.4.0"; + sha256 = + "8d3e642e665f9634aa44463ed6964ccf05e251c81ef92aaa9eacce2e9be959ad"; + }; + + meta = { + description = ''A polite, well mannered and thoroughly upstanding + testing framework for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "http://amrita.io"; + }; + } + ) {}; + + amrita = amrita_0_4_0; + + anaphora_0_1_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "anaphora"; + version = "0.1.1"; + src = fetchHex { + pkg = "anaphora"; + version = "0.1.1"; + sha256 = + "c43d66532152b05caee2cfca06ae1b86bd297c2e67ca358ecdcdc94da57ade83"; + }; + + meta = { + description = ''The anaphoric macro collection for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/sviridov/anaphora-elixir"; + }; + } + ) {}; + + anaphora = anaphora_0_1_1; + + anubis_0_1_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "anubis"; + version = "0.1.0"; + src = fetchHex { + pkg = "anubis"; + version = "0.1.0"; + sha256 = + "38329609a08261ba50b8ef2cfffa3bc4926b5412f8683a9322e59cf953779aab"; + }; + + meta = { + description = '' Anubis is a framework for building command line + applications. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bennyhallett/anubis"; + }; + } + ) {}; + + anubis_0_3_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "anubis"; + version = "0.3.0"; + src = fetchHex { + pkg = "anubis"; + version = "0.3.0"; + sha256 = + "556039ca0e045116e3a2f71b15e7d884122e6b7596fede05d022d28412df5ae2"; + }; + + meta = { + description = '' Anubis is a framework for building command line + applications. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bennyhallett/anubis"; + }; + } + ) {}; + + anubis = anubis_0_3_0; + + apache_passwd_md5_1_0_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "apache_passwd_md5"; + version = "1.0.0"; + src = fetchHex { + pkg = "apache_passwd_md5"; + version = "1.0.0"; + sha256 = + "2ffc49fe46aadcd21248aacb4a9c723c8d8a0304747f8cf8e6089e97404f59f1"; + }; + + meta = { + longDescription = ''Provides Apache/APR style password hashing. + Useful for generating or authenticating against + MD5 htpasswd passwords. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/kevinmontuori/Apache.PasswdMD5"; + }; + } + ) {}; + + apache_passwd_md5 = apache_passwd_md5_1_0_0; + + apex_0_3_7 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + apex = apex_0_3_7; + + apix_0_1_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + apix = apix_0_1_0; + + apns_0_0_11 = callPackage + ( + { buildMix, fetchHex, poolboy_1_5_1, poison_1_5_2 }: + buildMix { + name = "apns"; + version = "0.0.11"; + src = fetchHex { + pkg = "apns"; + version = "0.0.11"; + sha256 = + "03258b65f3225f47d3f2c23b087f96b904e9f84b5be242e66c0dbfb54c728011"; + }; + 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"; + }; + } + ) {}; + + apns = apns_0_0_11; + + apostle_0_0_3 = callPackage + ( + { buildMix, fetchHex, poison_1_4_0, httpoison_0_7_5 }: + buildMix { + name = "apostle"; + version = "0.0.3"; + src = fetchHex { + pkg = "apostle"; + version = "0.0.3"; + sha256 = + "3bb6b358236bbf730df69fa775f230355235a7e24dae73a9f17e4237c3fdb583"; + }; + beamDeps = [ poison_1_4_0 httpoison_0_7_5 ]; + + meta = { + description = ''Elixir client for Apostle.io.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jamesotron/apostle-elixir"; + }; + } + ) {}; + + apostle = apostle_0_0_3; + + ar2ecto_0_1_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ar2ecto = ar2ecto_0_1_2; + + arc_0_3_0 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_1, ex_aws_0_4_17 }: + buildMix { + name = "arc"; + version = "0.3.0"; + src = fetchHex { + pkg = "arc"; + version = "0.3.0"; + sha256 = + "cc0bb4e31e9b4eccb164959bfc4f438390d5ddaed5762c49761a69d7e2f75e48"; + }; + beamDeps = [ httpoison_0_8_1 ex_aws_0_4_17 ]; + + meta = { + description = ''Flexible file upload and attachment library for + Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/stavro/arc"; + }; + } + ) {}; + + arc = arc_0_3_0; + + arc_ecto_0_3_2 = callPackage + ( + { buildMix, fetchHex, ecto_2_0_0_beta_0, arc_0_3_0 }: + buildMix { + name = "arc_ecto"; + version = "0.3.2"; + src = fetchHex { + pkg = "arc_ecto"; + version = "0.3.2"; + sha256 = + "92cb9e81eb75a1a9fdb4f4fc8e83714b9ee67e3ddb96db9d53c46e7002bf7e8d"; + }; + beamDeps = [ ecto_2_0_0_beta_0 arc_0_3_0 ]; + + meta = { + description = ''An integration with Arc and Ecto.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/stavro/arc_ecto"; + }; + } + ) {}; + + arc_ecto = arc_ecto_0_3_2; + + argent_0_0_1 = callPackage + ( + { buildMix, 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.''; + + }; + } + ) {}; + + argent = argent_0_0_1; + + argument_parser_0_1_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "argument_parser"; + version = "0.1.1"; + src = fetchHex { + pkg = "argument_parser"; + version = "0.1.1"; + sha256 = + "beebcf7216bce18d953a832209ec0e9a3b669f108bf49c09f964060f0a10cb85"; + }; + + meta = { + description = ''More powerful argument parser for creating nice + scripts''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/jisaacstone/ex_argument_parser"; + }; + } + ) {}; + + argument_parser = argument_parser_0_1_1; + + array_1_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + array = array_1_0_1; + + artifact_0_1_0 = callPackage + ( + { + buildMix, fetchHex, porcelain_2_0_1, poolboy_1_5_1, plug_1_1_1 + }: + buildMix { + name = "artifact"; + version = "0.1.0"; + src = fetchHex { + pkg = "artifact"; + version = "0.1.0"; + sha256 = + "1b03c29afa283429fbd158ce70345b0612a6bc87b743164ddc5b86213b42d9f5"; + }; + beamDeps = [ porcelain_2_0_1 poolboy_1_5_1 plug_1_1_1 ]; + + meta = { + description = ''File upload and on-the-fly processing for + Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/doomspork/artifact"; + }; + } + ) {}; + + artifact = artifact_0_1_0; + + aruspex_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + aruspex = aruspex_0_1_0; + + asanaficator_0_0_1 = callPackage + ( + { buildMix, fetchHex, httpoison_0_7_5, exjsx_3_2_0 }: + buildMix { + name = "asanaficator"; + version = "0.0.1"; + src = fetchHex { + pkg = "asanaficator"; + version = "0.0.1"; + sha256 = + "891ca378a0b83d7018c10073ab14f35930186098d777e24550fff84a9683bfa3"; + }; + beamDeps = [ httpoison_0_7_5 exjsx_3_2_0 ]; + + meta = { + description = ''Simple Elixir wrapper for the Asana API''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/trenpixster/asanaficator"; + }; + } + ) {}; + + asanaficator = asanaficator_0_0_1; + + ashes_0_0_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ashes = ashes_0_0_3; + + assembla_api_0_1_0 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "assembla_api"; + version = "0.1.0"; + src = fetchHex { + pkg = "assembla_api"; + version = "0.1.0"; + sha256 = + "b4a3898de536e4820702c0f119993fd2804e91e2525d1e7eba57d8744983ef24"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''Assembla API client''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Assembla/ex_assembla_api"; + }; + } + ) {}; + + assembla_api = assembla_api_0_1_0; + + assert_diff_0_0_5 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + assert_diff = assert_diff_0_0_5; + + atlas_0_2_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "atlas"; + version = "0.2.0"; + src = fetchHex { + pkg = "atlas"; + version = "0.2.0"; + sha256 = + "1c887e4a6224f3189a92e4e4684a2623161a70c7fbd0fd7db79233d5d2f6facf"; + }; + + meta = { + description = ''Object Relational Mapper for Elixir ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/chrismccord/atlas"; + }; + } + ) {}; + + atlas = atlas_0_2_0; + + authentic_0_0_1 = callPackage + ( + { buildMix, 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; + }; + } + ) {}; + + authentic = authentic_0_0_1; + + auto_doc_0_0_2 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, plug_1_1_1 }: + 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_1 ]; + + 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"; + }; + } + ) {}; + + auto_doc = auto_doc_0_0_2; + + autobots_license_0_1_0 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1, 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_1 cowboy_1_0_4 ]; + + meta = { }; + } + ) {}; + + autobots_license = autobots_license_0_1_0; + + avex_0_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + avex = avex_0_2_0; + + aws_0_0_8 = callPackage + ( + { + buildMix, fetchHex, timex_1_0_1, poison_1_5_2, httpoison_0_8_1 + }: + buildMix { + name = "aws"; + version = "0.0.8"; + src = fetchHex { + pkg = "aws"; + version = "0.0.8"; + sha256 = + "4cd03efff629c01847ec82777ba1af2a8543fde288fe48ab36d9b8aa66ba7e9f"; + }; + beamDeps = [ timex_1_0_1 poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''AWS clients for Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/jkakar/aws-elixir"; + }; + } + ) {}; + + aws = aws_0_0_8; + + aws_auth_0_2_5 = callPackage + ( + { buildMix, fetchHex, timex_1_0_1 }: + buildMix { + name = "aws_auth"; + version = "0.2.5"; + src = fetchHex { + pkg = "aws_auth"; + version = "0.2.5"; + sha256 = + "646f1f42652adfb329b5eedde28ddda516c6d02dce45932108b85e2d8bd91b0a"; + }; + beamDeps = [ timex_1_0_1 ]; + + meta = { + description = ''AWS Signature Version 4 Signing Library''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/bryanjos/aws_auth"; + }; + } + ) {}; + + aws_auth = aws_auth_0_2_5; + + aws_erlang_0_1_0 = callPackage + ( + { + buildMix, + fetchHex, + jsx_2_8_0, + hackney_1_4_8, + erlware_commons_0_18_0 + }: + buildMix { + name = "aws_erlang"; + version = "0.1.0"; + src = fetchHex { + pkg = "aws_erlang"; + version = "0.1.0"; + sha256 = + "274e5232cda0ae883ffd813eb172dc0c00134ee04b3deaad1f34e1d4b42b282e"; + }; + beamDeps = [ jsx_2_8_0 hackney_1_4_8 erlware_commons_0_18_0 ]; + + meta = { + description = ''aws clients for erlang''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/jkakar/aws-erlang"; + }; + } + ) {}; + + aws_erlang = aws_erlang_0_1_0; + + aws_http_0_2_4 = callPackage + ( + { buildRebar3, fetchHex, lhttpc_1_3_0, barrel_jiffy_0_14_4 }: + buildRebar3 { + name = "aws_http"; + version = "0.2.4"; + src = fetchHex { + pkg = "aws_http"; + version = "0.2.4"; + sha256 = + "96065da0d348a8e47e01531cfa720615e15a21c1bd4e5c82decf56026cde128f"; + }; + + beamDeps = [ lhttpc_1_3_0 barrel_jiffy_0_14_4 ]; + + meta = { + description = ''Amazon AWS HTTP helpers''; + + homepage = "https://github.com/anha0825/erl_aws_http"; + }; + } + ) {}; + + aws_http = aws_http_0_2_4; + + b2_0_0_6 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "b2"; + version = "0.0.6"; + src = fetchHex { + pkg = "b2"; + version = "0.0.6"; + sha256 = + "f8b33d1ec36576dfbca3f2f4c5fad1a9a227207d1ef63b3a388778e8fad3333a"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''Elixir B2 cloud API wrapper''; + + }; + } + ) {}; + + b2 = b2_0_0_6; + + backoff_1_1_3 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "backoff"; + version = "1.1.3"; + src = fetchHex { + pkg = "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; + + balanced_3_1_0 = callPackage + ( + { buildMix, fetchHex, poison_1_2_1, httpotion_1_0_0 }: + buildMix { + name = "balanced"; + version = "3.1.0"; + src = fetchHex { + pkg = "balanced"; + version = "3.1.0"; + sha256 = + "f86f199d76ac66407fbb82fb927e999ec4119a617500965b824ceb4071fcd2d2"; + }; + beamDeps = [ poison_1_2_1 httpotion_1_0_0 ]; + + meta = { + description = ''Balanced API for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bryanjos/balanced-elixir"; + }; + } + ) {}; + + balanced = balanced_3_1_0; + + bamboo_0_2_0 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_7_5 }: + buildMix { + name = "bamboo"; + version = "0.2.0"; + src = fetchHex { + pkg = "bamboo"; + version = "0.2.0"; + sha256 = + "f75790da6235225840be3cf6ea9dcfe91abb51bb20ab8e42425a4d207296bbe5"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_7_5 ]; + + meta = { + longDescription = ''Straightforward, composable, and adapter + based Elixir email library for people that love + piping. Adapters for Mandrill, Sendgrid, + in-memory, and test.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/paulcsmith/bamboo"; + }; + } + ) {}; + + bamboo = bamboo_0_2_0; + + bandwidth_1_2_1 = callPackage + ( + { buildMix, fetchHex, poison_1_4_0, httpoison_0_7_5 }: + buildMix { + name = "bandwidth"; + version = "1.2.1"; + src = fetchHex { + pkg = "bandwidth"; + version = "1.2.1"; + sha256 = + "cfc31517bd160cc9a2e6c55b664eccadc001fc650bd8ea9f01418feb8e7194b5"; + }; + beamDeps = [ poison_1_4_0 httpoison_0_7_5 ]; + + meta = { + description = ''An Elixir client library for the Bandwidth + Application Platform''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/wtcross/elixir-bandwidth"; + }; + } + ) {}; + + bandwidth = bandwidth_1_2_1; + + bankster_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + bankster = bankster_0_1_0; + + banner_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + banner = banner_0_1_0; + + barrel_ibrowse_4_2_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + barrel_ibrowse = barrel_ibrowse_4_2_0; + + barrel_jiffy_0_14_4 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "barrel_jiffy"; + version = "0.14.4"; + src = fetchHex { + pkg = "barrel_jiffy"; + version = "0.14.4"; + sha256 = + "3b730d6a18e988b8411f449bbb5df3637eb7bea864302924581b2391dd6b6e71"; + }; + compilePorts = true; + + meta = { + description = ''JSON Decoder/Encoder.''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/barrel-db/jiffy"; + }; + } + ) {}; + + barrel_jiffy_0_14_5 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "barrel_jiffy"; + version = "0.14.5"; + src = fetchHex { + pkg = "barrel_jiffy"; + version = "0.14.5"; + sha256 = + "8a874c6dbcf439a7d7b300b4463f47e088fd54e2b715ef7261e21807ee421f47"; + }; + compilePorts = true; + + meta = { + description = ''JSON Decoder/Encoder.''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/barrel-db/jiffy"; + }; + } + ) {}; + + barrel_jiffy = barrel_jiffy_0_14_5; + + barrel_oauth_1_6_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + barrel_oauth = barrel_oauth_1_6_0; + + base16_1_0_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + base16 = base16_1_0_0; + + base58_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + base58 = base58_0_1_0; + + base58check_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + base58check = base58check_0_1_0; + + base62_1_1_0 = callPackage + ( + { buildMix, fetchHex, custom_base_0_1_0 }: + buildMix { + name = "base62"; + version = "1.1.0"; + src = fetchHex { + pkg = "base62"; + version = "1.1.0"; + sha256 = + "3e6d5e21aed7875951236ae25a69ac5a22767c685e4e49e973918ae4ba7d9a2a"; + }; + beamDeps = [ custom_base_0_1_0 ]; + + meta = { + description = ''Base62 encoder/decoder in pure Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/igas/base62"; + }; + } + ) {}; + + base62 = base62_1_1_0; + + base64url_0_0_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + base64url = base64url_0_0_1; + + basho_stats_1_0_3 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "basho_stats"; + version = "1.0.3"; + src = fetchHex { + pkg = "basho_stats"; + version = "1.0.3"; + sha256 = + "d739e733b1c8afcaa467289fca50221753fc8cde6e7b53a79b67f98a2a261f5a"; + }; + + meta = { + description = ''Basic Erlang statistics library''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/basho/basho_stats"; + }; + } + ) {}; + + basho_stats = basho_stats_1_0_3; + + basic_auth_1_0_0 = callPackage + ( + { buildMix, fetchHex, plug_0_8_1, cowboy_1_0_4 }: + buildMix { + name = "basic_auth"; + version = "1.0.0"; + src = fetchHex { + pkg = "basic_auth"; + version = "1.0.0"; + sha256 = + "e8ed4b5ca05c06dc1c19c69f1f00611e93d17bfa913eefbb6bed4a209af3a5a9"; + }; + beamDeps = [ plug_0_8_1 cowboy_1_0_4 ]; + + meta = { + description = ''Basic Authentication Plug''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/cultivatehq/basic_auth"; + }; + } + ) {}; + + basic_auth = basic_auth_1_0_0; + + batcher_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + batcher = batcher_0_0_1; + + battlenet_0_0_2 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "battlenet"; + version = "0.0.2"; + src = fetchHex { + pkg = "battlenet"; + version = "0.0.2"; + sha256 = + "cdd4e182da5a2db478e0da9ac1a467fc8f2b8ec638e3e38dd7962ff3fe8c9342"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''Elixir library for the Battle.net API.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/cazrin/battlenet"; + }; + } + ) {}; + + battlenet = battlenet_0_0_2; + + bbmustache_1_0_3 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + bbmustache_1_0_4 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + bbmustache_1_1_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + bbmustache = bbmustache_1_1_0; + + beaker_1_2_0 = callPackage + ( + { + buildMix, + fetchHex, + phoenix_1_1_4, + ecto_2_0_0_beta_0, + bureaucrat_0_1_2 + }: + buildMix { + name = "beaker"; + version = "1.2.0"; + src = fetchHex { + pkg = "beaker"; + version = "1.2.0"; + sha256 = + "f792ee661db3e31f4c6cacae992e81bbcc302ce05aec29c16bab9853bd763438"; + }; + beamDeps = [ phoenix_1_1_4 ecto_2_0_0_beta_0 bureaucrat_0_1_2 ]; + + meta = { + longDescription = ''Measure your Elixir! A metrics library that + will help Elixirists keep track of their + application`s performance, as well as any custom + statistics they like.''; + + homepage = "http://github.com/hahuang65/beaker"; + }; + } + ) {}; + + beaker = beaker_1_2_0; + + beam_analyzer_0_0_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + beam_analyzer = beam_analyzer_0_0_3; + + bear_0_8_3 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + bear = bear_0_8_3; + + belvedere_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + belvedere = belvedere_0_0_1; + + benchfella_0_3_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + benchfella = benchfella_0_3_2; + + benchmark_ips_0_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + benchmark_ips = benchmark_ips_0_2_0; + + benchwarmer_0_0_2 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "benchwarmer"; + version = "0.0.2"; + src = fetchHex { + pkg = "benchwarmer"; + version = "0.0.2"; + sha256 = + "8b98b39c1c50df624f9c2d13ca953eeed465eed6feda975da26b479df2b4c9f5"; + }; + + meta = { + longDescription = ''Benchwarmer is an Elixir micro-benchmarking + utility that runs a function (or list of + functions) repeatedly against a dataset for a + period of time, and then reports on the average + time each operation took to complete, allowing + for easy comparison. ''; + license = stdenv.lib.licenses.wtfpl; + homepage = "https://github.com/mroth/benchwarmer"; + }; + } + ) {}; + + benchwarmer = benchwarmer_0_0_2; + + bencode_0_2_0 = callPackage + ( + { buildMix, fetchHex, eqc_ex_1_2_4 }: + buildMix { + name = "bencode"; + version = "0.2.0"; + src = fetchHex { + pkg = "bencode"; + version = "0.2.0"; + sha256 = + "78ec5fbfa24cb98795d80d4982fc30563af4d7cd7c77ee86a3bffeb1b3a312dd"; + }; + beamDeps = [ eqc_ex_1_2_4 ]; + + meta = { + longDescription = ''A bencode encoder and decoder. 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"; + }; + } + ) {}; + + bencode = bencode_0_2_0; + + bencoder_0_0_7 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "bencoder"; + version = "0.0.7"; + src = fetchHex { + pkg = "bencoder"; + version = "0.0.7"; + sha256 = + "1fd5478490f0ef03e5afee0c0392226efe07a76c9f537697176bc46bc46500b8"; + }; + + meta = { + description = ''a library to handle bencode in elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/alehander42/bencoder"; + }; + } + ) {}; + + bencoder = bencoder_0_0_7; + + bencodex_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + bencodex = bencodex_1_0_0; + + bert_0_1_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + bert = bert_0_1_0; + + bertex_1_2_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "bertex"; + version = "1.2.0"; + src = fetchHex { + pkg = "bertex"; + version = "1.2.0"; + sha256 = + "5e6db198c106dbfbd6e419201ec15facd71fac320f24e3e85a856d624ac4096a"; + }; + + meta = { + description = '' Elixir BERT encoder/decoder ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/edgurgel/bertex"; + }; + } + ) {}; + + bertex = bertex_1_2_0; + + bgg_0_1_0 = callPackage + ( + { buildMix, fetchHex, quinn_0_0_4, httpoison_0_8_1 }: + buildMix { + name = "bgg"; + version = "0.1.0"; + src = fetchHex { + pkg = "bgg"; + version = "0.1.0"; + sha256 = + "d26593e7ebb23f76e6c0e73a9a1acb6a45ec25ea53b6ee716a2291f07c5f1fb6"; + }; + beamDeps = [ quinn_0_0_4 httpoison_0_8_1 ]; + + meta = { + description = ''A BoardGameGeek API wrapper in Elixir + http://boardgamegeek.com/xmlapi/''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/peralmq/bgg-elixir"; + }; + } + ) {}; + + bgg = bgg_0_1_0; + + billiards_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "billiards"; + version = "0.0.1"; + src = fetchHex { + pkg = "billiards"; + version = "0.0.1"; + sha256 = + "5b8d8eab12e35c0c7eff5be02a4adf0a7aa4cf10688a5faeec9b10f2c2f04046"; + }; + meta = { }; + } + ) {}; + + billiards = billiards_0_0_1; + + bin_format_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + bin_format = bin_format_0_0_1; + + bing_translator_0_2_3 = callPackage + ( + { + buildMix, + fetchHex, + timex_1_0_0_rc4, + poison_1_5_2, + httpoison_0_8_1, + floki_0_7_1 + }: + buildMix { + name = "bing_translator"; + version = "0.2.3"; + src = fetchHex { + pkg = "bing_translator"; + version = "0.2.3"; + sha256 = + "a1a953a96728e0531c41c96befe4301d80370c2f09a2ed412a8c8a817d7333c9"; + }; + beamDeps = [ + timex_1_0_0_rc4 + poison_1_5_2 + httpoison_0_8_1 + floki_0_7_1 + ]; + + meta = { + longDescription = ''Translate strings using the Bing HTTP API. + Requires that you have a Client ID and Secret. + See README.md for information.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ikeikeikeike/bing_translator"; + }; + } + ) {}; + + bing_translator = bing_translator_0_2_3; + + binstructor_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + binstructor = binstructor_0_0_1; + + bit_field_set_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + bit_field_set = bit_field_set_0_1_0; + + bitbucket_api_0_0_2 = callPackage + ( + { buildMix, fetchHex, jsx_2_8_0, httpoison_0_7_5, jsex_2_0_0 }: + buildMix { + name = "bitbucket_api"; + version = "0.0.2"; + src = fetchHex { + pkg = "bitbucket_api"; + version = "0.0.2"; + sha256 = + "25fbdda8ed1813f0ade92b4f28b3290b3efd6be63ff25c84ab9e24b512464245"; + }; + beamDeps = [ jsx_2_8_0 httpoison_0_7_5 jsex_2_0_0 ]; + + meta = { + description = ''Create hooks for Bitbucket. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Blackrush/bitbucket_api"; + }; + } + ) {}; + + bitbucket_api = bitbucket_api_0_0_2; + + bitfield_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + bitfield = bitfield_1_0_0; + + bitmap_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + bitmap = bitmap_1_0_0; + + bitpay_0_2_5 = callPackage + ( + { + buildMix, fetchHex, uuid_0_1_5, httpotion_1_0_0, exjsx_3_1_0 + }: + buildMix { + name = "bitpay"; + version = "0.2.5"; + src = fetchHex { + pkg = "bitpay"; + version = "0.2.5"; + sha256 = + "25a0b2dbf6619ddc0db4cf1ee03b3d097adac47dc47c65b71a2661eba0f2e3a2"; + }; + beamDeps = [ uuid_0_1_5 httpotion_1_0_0 exjsx_3_1_0 ]; + + meta = { + longDescription = ''Library to allow elixir apps to easily use + the BitPay REST API to authenticate, generate + invoices, and retrieve invoices. Includes + Utilities for using Erlangs library for Elliptic + Curve Keys.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bitpay/elixir-client"; + }; + } + ) {}; + + bitpay = bitpay_0_2_5; + + blackbook_0_3_1 = callPackage + ( + { + buildMix, + fetchHex, + timex_ecto_0_5_0, + timex_0_19_5, + secure_random_0_2_0, + postgrex_0_11_1, + ecto_2_0_0_beta_0, + earmark_0_2_1, + comeonin_1_6_0 + }: + buildMix { + name = "blackbook"; + version = "0.3.1"; + src = fetchHex { + pkg = "blackbook"; + version = "0.3.1"; + sha256 = + "deecf1248ec5ef7911e3b440a968d8cb2dae54d50e36bf80173a2593f0e4ecde"; + }; + beamDeps = [ + timex_ecto_0_5_0 + timex_0_19_5 + secure_random_0_2_0 + postgrex_0_11_1 + ecto_2_0_0_beta_0 + earmark_0_2_1 + comeonin_1_6_0 + ]; + + meta = { }; + } + ) {}; + + blackbook = blackbook_0_3_1; + + blacksmith_0_1_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + blacksmith = blacksmith_0_1_3; + + blaguth_1_2_1 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1, 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_1 cowboy_1_0_4 ]; + + meta = { + description = ''Basic Access Authentication in Plug + applications.''; + license = stdenv.lib.licenses.isc; + homepage = "https://github.com/lexmag/blaguth"; + }; + } + ) {}; + + blaguth = blaguth_1_2_1; + + blanket_0_3_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + blanket = blanket_0_3_1; + + block_timer_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "block_timer"; + version = "0.0.1"; + src = fetchHex { + pkg = "block_timer"; + version = "0.0.1"; + sha256 = + "1dec7d6590de5b5d2cecd101ea4b276180b7d428e8b36863c424223dd0a97782"; + }; + + meta = { + description = ''Macros to use :timer.apply_after and + :timer.apply_interval with a block''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/adamkittelson/block_timer"; + }; + } + ) {}; + + block_timer = block_timer_0_0_1; + + blocking_queue_1_3_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + blocking_queue = blocking_queue_1_3_0; + + bloodhound_0_1_1 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "bloodhound"; + version = "0.1.1"; + src = fetchHex { + pkg = "bloodhound"; + version = "0.1.1"; + sha256 = + "6aaab638fe90fc3714b650b659df774c7cdb12d098fee3910952e0a0f8fcd6ec"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''An ElasticSearch library for Elixir that can be + easily integrated with Ecto''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ianwalter/bloodhound"; + }; + } + ) {}; + + bloodhound = bloodhound_0_1_1; + + bloomex_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + bloomex = bloomex_1_0_0; + + bmark_1_0_2 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "bmark"; + version = "1.0.2"; + src = fetchHex { + pkg = "bmark"; + version = "1.0.2"; + sha256 = + "70204b013c75d3b95d58acc42ff62461eaebe1e5345ef029fe59ba30a15b1747"; + }; + + 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"; + }; + } + ) {}; + + bmark = bmark_1_0_2; + + boltun_0_0_4 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + boltun = boltun_0_0_4; + + booter_0_1_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "booter"; + version = "0.1.0"; + src = fetchHex { + pkg = "booter"; + version = "0.1.0"; + sha256 = + "bb14263b5d5dc74c3f4086f764153a0d09b2b05a9cda6f4b121cc7789159a80e"; + }; + + meta = { + description = ''Boot an Elixir application step by step''; + license = stdenv.lib.licenses.mpl11; + homepage = "https://github.com/eraserewind/booter"; + }; + } + ) {}; + + booter = booter_0_1_0; + + botan_0_1_2 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "botan"; + version = "0.1.2"; + src = fetchHex { + pkg = "botan"; + version = "0.1.2"; + sha256 = + "43541b5c52c91e46295a015f58857c347c85a7753d7c3cd3a1f835b25fdedaa9"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''Elixir wrapper for Botan.io''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mendab1e/exBotan"; + }; + } + ) {}; + + botan = botan_0_1_2; + + bottler_0_5_0 = callPackage + ( + { buildMix, fetchHex, sshex_1_1_0 }: + buildMix { + name = "bottler"; + version = "0.5.0"; + src = fetchHex { + pkg = "bottler"; + version = "0.5.0"; + sha256 = + "a76b2ddfc98ef943ceb6730dd09fb3d085cb9dcc8feb8c739abbe0dcc77d8ffe"; + }; + beamDeps = [ sshex_1_1_0 ]; + + meta = { + longDescription = ''Help you bottle, ship and serve your Elixir + apps. Bottler is a collection of tools that aims + to help you generate releases, ship them to your + servers, install them there, and get them live + on production.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/elpulgardelpanda/bottler"; + }; + } + ) {}; + + bottler = bottler_0_5_0; + + bouncer_0_1_5 = callPackage + ( + { + buildMix, + fetchHex, + redix_0_3_4, + poolboy_1_5_1, + poison_1_5_2, + plug_1_1_1, + phoenix_1_1_4 + }: + buildMix { + name = "bouncer"; + version = "0.1.5"; + src = fetchHex { + pkg = "bouncer"; + version = "0.1.5"; + sha256 = + "82979e9c8df401cbf5eb2dd09dff3952933cf2efd9135be1f0cb51ec04deb996"; + }; + beamDeps = [ + redix_0_3_4 + poolboy_1_5_1 + poison_1_5_2 + plug_1_1_1 + phoenix_1_1_4 + ]; + + meta = { + description = ''Token-based authorization and session management + for Phoenix (Elixir)''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ianwalter/bouncer"; + }; + } + ) {}; + + bouncer = bouncer_0_1_5; + + braintree_0_3_1 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_1 }: + buildMix { + name = "braintree"; + version = "0.3.1"; + src = fetchHex { + pkg = "braintree"; + version = "0.3.1"; + sha256 = + "a93e78cbf8a1407035d8bcf6e7d53fc2ef2f716f3bd49b833ae105fa06a40ec1"; + }; + beamDeps = [ httpoison_0_8_1 ]; + + meta = { + description = ''Native Braintree client library for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/sorentwo/braintree-elixir"; + }; + } + ) {}; + + braintree = braintree_0_3_1; + + braise_0_3_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + braise = braise_0_3_2; + + brcpfcnpj_0_0_9 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "brcpfcnpj"; + version = "0.0.9"; + src = fetchHex { + pkg = "brcpfcnpj"; + version = "0.0.9"; + sha256 = + "d5b7c8b473a07c3c91aa450b91ef9899a423c3f36a3027d4be5da25fdf5cef4b"; + }; + + 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"; + }; + } + ) {}; + + brcpfcnpj = brcpfcnpj_0_0_9; + + breadcrumble_1_0_2 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1 }: + buildMix { + name = "breadcrumble"; + version = "1.0.2"; + src = fetchHex { + pkg = "breadcrumble"; + version = "1.0.2"; + sha256 = + "8265e64e363df90e556125e091ba52e92a8eeaad57cc3efdd926aa0b069ad78f"; + }; + beamDeps = [ plug_1_1_1 ]; + + meta = { + description = ''Elixir port of Breadcrumble library''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ma2gedev/breadcrumble_ex"; + }; + } + ) {}; + + breadcrumble = breadcrumble_1_0_2; + + briefly_0_3_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + briefly = briefly_0_3_0; + + browser_0_1_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + browser = browser_0_1_2; + + bson_0_4_4 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "bson"; + version = "0.4.4"; + src = fetchHex { + pkg = "bson"; + version = "0.4.4"; + sha256 = + "69cbda1d27fd0f500f306c99e609593132c66b521b92a21ce6f21fea88dc3d27"; + }; + + meta = { + description = ''BSON implementation for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/checkiz/elixir-bson"; + }; + } + ) {}; + + bson = bson_0_4_4; + + bstr_0_3_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + bstr = bstr_0_3_0; + + bugsnag_1_1_1 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "bugsnag"; + version = "1.1.1"; + src = fetchHex { + pkg = "bugsnag"; + version = "1.1.1"; + sha256 = + "ed4d8876e9bdf841f6f08e6562ad9455ef3d06fb9d403702e7e24611fbe96247"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''An Elixir interface to the Bugsnag API''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jarednorman/bugsnag-elixir"; + }; + } + ) {}; + + bugsnag = bugsnag_1_1_1; + + bugsnag_erl_0_1_2 = callPackage + ( + { buildRebar3, fetchHex, lager_3_0_1, jsx_2_8_0 }: + buildRebar3 { + name = "bugsnag_erl"; + version = "0.1.2"; + src = fetchHex { + pkg = "bugsnag_erl"; + version = "0.1.2"; + sha256 = + "c54c6e7fcb5e74b1d3611371ce7bd73fb31aaf27f909398a286683802c541851"; + }; + + beamDeps = [ lager_3_0_1 jsx_2_8_0 ]; + + meta = { + description = ''Bugsnag notifier''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/project-fifo/bugsnag-erlang"; + }; + } + ) {}; + + bugsnag_erl = bugsnag_erl_0_1_2; + + bump_0_1_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "bump"; + version = "0.1.0"; + src = fetchHex { + pkg = "bump"; + version = "0.1.0"; + sha256 = + "068b418026a90382f9809ffe0504579f7ccea981f794ff6257ba2a0925b91360"; + }; + + meta = { + description = ''A library for writing BMP files from binary data. + ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/evanfarrar/ex_bump"; + }; + } + ) {}; + + bump = bump_0_1_0; + + bunt_0_1_5 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + bunt = bunt_0_1_5; + + bureaucrat_0_1_2 = callPackage + ( + { buildMix, fetchHex, plug_0_8_1 }: + buildMix { + name = "bureaucrat"; + version = "0.1.2"; + src = fetchHex { + pkg = "bureaucrat"; + version = "0.1.2"; + sha256 = + "cd746f6f9ee9927b1b81ae7834c7b0a045df7e53151674d8b3d8de5832ec7402"; + }; + beamDeps = [ plug_0_8_1 ]; + + meta = { + description = ''Generate Phoenix API documentation from tests''; + license = stdenv.lib.licenses.unlicense; + homepage = "https://github.com/api-hogs/bureaucrat"; + }; + } + ) {}; + + bureaucrat = bureaucrat_0_1_2; + + butler_0_6_2 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_7_5 }: + buildMix { + name = "butler"; + version = "0.6.2"; + src = fetchHex { + pkg = "butler"; + version = "0.6.2"; + sha256 = + "28d681c4986c6711bf72c645084a83ea108a35039cedf5d03d6779d86cb7db19"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_7_5 ]; + + meta = { + description = ''A simple elixir robot to help you get things + done''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/keathley/butler"; + }; + } + ) {}; + + butler_0_7_1 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_7_5 }: + buildMix { + name = "butler"; + version = "0.7.1"; + src = fetchHex { + pkg = "butler"; + version = "0.7.1"; + sha256 = + "fdc4226c0347ea94e6b535c7d352c098720bdfad280357dad9b4d8bd3c346bd7"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_7_5 ]; + + meta = { + description = ''A simple elixir robot to help you get things + done''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/keathley/butler"; + }; + } + ) {}; + + butler = butler_0_7_1; + + butler_cage_0_0_2 = callPackage + ( + { buildMix, fetchHex, butler_0_7_1 }: + buildMix { + name = "butler_cage"; + version = "0.0.2"; + src = fetchHex { + pkg = "butler_cage"; + version = "0.0.2"; + sha256 = + "22c5d1d0cbe6c19fffae260b02717a984ee5632c34492ee4254972ca4ab8e059"; + }; + beamDeps = [ butler_0_7_1 ]; + + meta = { + description = ''A Butler plugin for showing silly photos of Nick + Cage.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/keathley/butler_cage"; + }; + } + ) {}; + + butler_cage = butler_cage_0_0_2; + + butler_cowsay_0_2_1 = callPackage + ( + { buildMix, fetchHex, cowsay_0_0_1, butler_0_6_2 }: + buildMix { + name = "butler_cowsay"; + version = "0.2.1"; + src = fetchHex { + pkg = "butler_cowsay"; + version = "0.2.1"; + sha256 = + "d5b6ef82ebd387666c8b8d4fd93df3d11ff2ed7a129ae3aa7d7faac9ae803195"; + }; + beamDeps = [ cowsay_0_0_1 butler_0_6_2 ]; + + meta = { + description = ''ButlerCowsay plugin for Butler SlackBot''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bbrock25/butler_cowsay"; + }; + } + ) {}; + + butler_cowsay = butler_cowsay_0_2_1; + + butler_new_0_4_3 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "butler_new"; + version = "0.4.3"; + src = fetchHex { + pkg = "butler_new"; + version = "0.4.3"; + sha256 = + "ef68a4957dde207e7663c3947d8ec93d8e24c9872619bd66b47d52abfb2b3d90"; + }; + meta = { }; + } + ) {}; + + butler_new = butler_new_0_4_3; + + butler_tableflip_0_0_3 = callPackage + ( + { buildMix, fetchHex, butler_0_7_1 }: + buildMix { + name = "butler_tableflip"; + version = "0.0.3"; + src = fetchHex { + pkg = "butler_tableflip"; + version = "0.0.3"; + sha256 = + "327840e6a07b8a3f2cc461920aea0a1cf39898b6fc0e1484e94867810dfea444"; + }; + beamDeps = [ butler_0_7_1 ]; + + meta = { + description = ''Butler Plugin for flipping tables.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/keathley/butler_tableflip"; + }; + } + ) {}; + + butler_tableflip = butler_tableflip_0_0_3; + + bypass_0_5_1 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1, 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_1 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"; + }; + } + ) {}; + + bypass = bypass_0_5_1; + + cache_tab_1_0_2 = callPackage + ( + { buildRebar3, fetchHex, p1_utils_1_0_3 }: + buildRebar3 { + name = "cache_tab"; + version = "1.0.2"; + src = fetchHex { + pkg = "cache_tab"; + version = "1.0.2"; + sha256 = + "1d802a8bdf01178e1c6171037cc6e66da1a0c9fbb6589f644919d9a7402ebcd2"; + }; + + beamDeps = [ p1_utils_1_0_3 ]; + + meta = { + description = ''In-memory cache Erlang / Elixir library''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/processone/cache_tab"; + }; + } + ) {}; + + cache_tab = cache_tab_1_0_2; + + calecto_0_5_0 = callPackage + ( + { buildMix, fetchHex, ecto_1_1_3, calendar_0_12_4 }: + buildMix { + name = "calecto"; + version = "0.5.0"; + src = fetchHex { + pkg = "calecto"; + version = "0.5.0"; + sha256 = + "3414a87a3a355eeb8116c2fc993e3827772f1dc9064aab00a81a76a5ef00ab5b"; + }; + beamDeps = [ ecto_1_1_3 calendar_0_12_4 ]; + + meta = { + longDescription = ''Library for using Calendar with Ecto. This + lets you save Calendar types in Ecto and work + with date-times in multiple timezones.''; + + homepage = "https://github.com/lau/calecto"; + }; + } + ) {}; + + calecto = calecto_0_5_0; + + calendar_0_12_3 = callPackage + ( + { buildMix, fetchHex, tzdata_0_1_8 }: + buildMix { + name = "calendar"; + version = "0.12.3"; + src = fetchHex { + pkg = "calendar"; + version = "0.12.3"; + sha256 = + "19aba4c9660239a710ac70e9bef56d8c8db73ebb48a2c89e3ac02cec64838aad"; + }; + beamDeps = [ tzdata_0_1_8 ]; + + 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"; + }; + } + ) {}; + + calendar_0_12_4 = callPackage + ( + { buildMix, fetchHex, tzdata_0_1_8 }: + buildMix { + name = "calendar"; + version = "0.12.4"; + src = fetchHex { + pkg = "calendar"; + version = "0.12.4"; + sha256 = + "1df7cc23b7dfa3228498fff3bd298495d8431433be94db62a60e93ffa455a060"; + }; + beamDeps = [ tzdata_0_1_8 ]; + + 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"; + }; + } + ) {}; + + calendar = calendar_0_12_4; + + calendar_translations_0_0_3 = callPackage + ( + { buildMix, fetchHex, calendar_0_12_4 }: + buildMix { + name = "calendar_translations"; + version = "0.0.3"; + src = fetchHex { + pkg = "calendar_translations"; + version = "0.0.3"; + sha256 = + "b232912959f7f645a34e1a6ceca4657156e64bb5db3573fbc61c603c648dcb09"; + }; + beamDeps = [ calendar_0_12_4 ]; + + meta = { + description = ''Translations for the Calendar library.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/padde/calendar_translations"; + }; + } + ) {}; + + calendar_translations = calendar_translations_0_0_3; + + calliope_0_3_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + calliope = calliope_0_3_0; + + canada_1_0_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "canada"; + version = "1.0.0"; + src = fetchHex { + pkg = "canada"; + version = "1.0.0"; + sha256 = + "5f4eb50f2f2747e5f3e8750760e2683b38667e113281a7a71b502d1aa52d89d1"; + }; + + meta = { + description = '' A DSL for declarative permissions ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jarednorman/canada"; + }; + } + ) {}; + + canada = canada_1_0_0; + + canary_0_14_0 = callPackage + ( + { + buildMix, fetchHex, plug_1_1_1, ecto_2_0_0_beta_0, canada_1_0_0 + }: + buildMix { + name = "canary"; + version = "0.14.0"; + src = fetchHex { + pkg = "canary"; + version = "0.14.0"; + sha256 = + "5002649bbe4b9c7e00fb7f0c499c109eb34732f50f69ede797ed1e768e4f0029"; + }; + beamDeps = [ plug_1_1_1 ecto_2_0_0_beta_0 canada_1_0_0 ]; + + meta = { + longDescription = ''An authorization library to restrict what + resources the current user is allowed to access, + and load resources for you.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/cpjk/canary"; + }; + } + ) {}; + + canary = canary_0_14_0; + + carrier_1_0_4 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_7_5 }: + buildMix { + name = "carrier"; + version = "1.0.4"; + src = fetchHex { + pkg = "carrier"; + version = "1.0.4"; + sha256 = + "9ea767fa6dfc35b1b5ebcdf3d737ea741589100573406969cea7579bbb51c0de"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_7_5 ]; + + meta = { + description = ''Elixir library for interacting with + SmartyStreets''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mylanconnolly/carrier"; + }; + } + ) {}; + + carrier = carrier_1_0_4; + + cartographer_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + cartographer = cartographer_0_0_1; + + cassius_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "cassius"; + version = "0.0.1"; + src = fetchHex { + pkg = "cassius"; + version = "0.0.1"; + sha256 = + "3fe26f2b1fceed3c553871dcf954955063e01ab2e2de41d8322e58bd03348c17"; + }; + + meta = { + description = ''Monitor linux file system events''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jquadrin/cassius"; + }; + } + ) {}; + + cassius = cassius_0_0_1; + + cauldron_0_1_5 = callPackage + ( + { buildMix, fetchHex, httprot_0_1_7, reagent_0_1_5 }: + buildMix { + name = "cauldron"; + version = "0.1.5"; + src = fetchHex { + pkg = "cauldron"; + version = "0.1.5"; + sha256 = + "565ee9bb6800512a3c9e8a58951455904c44d8f0ec207e80e20aef9f8cb7d6b1"; + }; + beamDeps = [ httprot_0_1_7 reagent_0_1_5 ]; + + meta = { + description = ''Web server library written in Elixir''; + license = stdenv.lib.licenses.wtfpl; + homepage = "https://github.com/meh/cauldron"; + }; + } + ) {}; + + cauldron = cauldron_0_1_5; + + caylir_0_2_0 = callPackage + ( + { + buildMix, fetchHex, poolboy_1_5_1, poison_1_5_2, hackney_1_4_8 + }: + buildMix { + name = "caylir"; + version = "0.2.0"; + src = fetchHex { + pkg = "caylir"; + version = "0.2.0"; + sha256 = + "b3699171f2bef699ce1968394cb2aee3b5ec7db529a395d8bf7d85163067f888"; + }; + beamDeps = [ poolboy_1_5_1 poison_1_5_2 hackney_1_4_8 ]; + + meta = { + description = ''Cayley driver for Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/mneudert/caylir"; + }; + } + ) {}; + + caylir = caylir_0_2_0; + + ccc_0_0_2 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "ccc"; + version = "0.0.2"; + src = fetchHex { + pkg = "ccc"; + version = "0.0.2"; + sha256 = + "cb976cf81c8497a271d3c6a4b20be4d0e569d5a0db3a60a227e1e8a13ee6abf7"; + }; + + meta = { + description = ''Character Code Converter''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Joe-noh/ccc"; + }; + } + ) {}; + + ccc = ccc_0_0_2; + + certifi_0_1_1 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "certifi"; + version = "0.1.1"; + src = fetchHex { + pkg = "certifi"; + version = "0.1.1"; + sha256 = + "e6d1dda48fad1b1c5b454c8402e2ac375ae12bf85a9910decaf791f330a7de29"; + }; + + meta = { + description = ''An OTP library''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/certifi/erlang-certifi"; + }; + } + ) {}; + + certifi_0_3_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + certifi = certifi_0_3_0; + + cesso_0_1_3 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "cesso"; + version = "0.1.3"; + src = fetchHex { + pkg = "cesso"; + version = "0.1.3"; + sha256 = + "54ba81e0d1358095e00305e48cd3917bc9ee06905bdaab7bc60c7ae3489a6ba7"; + }; + + meta = { + description = ''CSV handling library for Elixir.''; + license = stdenv.lib.licenses.wtfpl; + homepage = "https://github.com/meh/cesso"; + }; + } + ) {}; + + cesso = cesso_0_1_3; + + cet_0_2_2 = callPackage + ( + { + buildRebar3, + fetchHex, + lager_3_0_1, + jsx_2_8_0, + gen_smtp_0_9_0, + cowboy_1_0_4, + bstr_0_3_0, + bbmustache_1_0_4 + }: + buildRebar3 { + name = "cet"; + version = "0.2.2"; + src = fetchHex { + pkg = "cet"; + version = "0.2.2"; + sha256 = + "3da06f36791484576e4b338a2d8b5cfa65fe81ae7ed748aa7df85de0cb3bd2b4"; + }; + + beamDeps = [ + lager_3_0_1 + jsx_2_8_0 + gen_smtp_0_9_0 + cowboy_1_0_4 + bstr_0_3_0 + bbmustache_1_0_4 + ]; + + meta = { + description = ''Cielo24 Erlang Tools''; + + homepage = "https://github.com/Cielo24/cet"; + }; + } + ) {}; + + cet = cet_0_2_2; + + cf_0_1_2 = callPackage + ( + { buildRebar3, 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; + }; + } + ) {}; + + cf_0_2_1 = callPackage + ( + { buildRebar3, 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; + }; + } + ) {}; + + cf = cf_0_2_1; + + changex_0_1_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + changex = changex_0_1_1; + + chaos_spawn_0_7_0 = callPackage + ( + { buildMix, fetchHex, timex_0_19_5, exactor_2_2_0 }: + buildMix { + name = "chaos_spawn"; + version = "0.7.0"; + src = fetchHex { + pkg = "chaos_spawn"; + version = "0.7.0"; + sha256 = + "c4c8e985e750706fb4351d6eb036b513a4b7ea3e689a9aecd424251991f21eaa"; + }; + beamDeps = [ timex_0_19_5 exactor_2_2_0 ]; + + meta = { + longDescription = ''Providing tools to randomly kill proceses. + With the goal of creating robust supevision + trees.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/meadsteve/chaos-spawn"; + }; + } + ) {}; + + chaos_spawn = chaos_spawn_0_7_0; + + charlotte_0_4_0 = callPackage + ( + { + buildMix, + fetchHex, + cowboy_1_0_4, + env_conf_0_3_0, + uuid_0_1_5, + jazz_0_2_1 + }: + buildMix { + name = "charlotte"; + version = "0.4.0"; + src = fetchHex { + pkg = "charlotte"; + version = "0.4.0"; + sha256 = + "2c0eb1335922bec0c6bc5e8f3dc4d84192657b708c2558742f676ed430f0950f"; + }; + beamDeps = [ cowboy_1_0_4 env_conf_0_3_0 uuid_0_1_5 jazz_0_2_1 + ]; + + meta = { + longDescription = '' Charlotte is a Web Framework. It takes a + little from Rails and a little from Sinatra and + does a few things it`s own way. The goal is to + be light weight, fun and get out of your way. + defmodule Controller do use + Charlotte.Handlers.HTTP def routes do [ + {"/path", :path}, {"/path/:part", + :path_with_part} ] end def path("GET", _params, + conn) do render [message: "hello from path"], + conn end def path(verb, _params, conn) do + respond 405, {"Allowed", "GET"}, "#{verb} not + allowed", conn end end ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/LeakyBucket/charlotte.git"; + }; + } + ) {}; + + charlotte = charlotte_0_4_0; + + charm_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "charm"; + version = "0.0.1"; + src = fetchHex { + pkg = "charm"; + version = "0.0.1"; + sha256 = + "97a05c37c76b2efa5e8bd3c47333e9ebfe4f7c8777540900fcbec70c287bffa7"; + }; + + meta = { + description = ''Use ansi terminal characters to write colors and + cursor positions.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/tomgco/elixir-charm"; + }; + } + ) {}; + + charm = charm_0_0_1; + + chartkick_0_0_2 = callPackage + ( + { buildMix, 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 = { }; + } + ) {}; + + chartkick = chartkick_0_0_2; + + chash_0_1_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + chash = chash_0_1_1; + + chinese_translation_0_1_0 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_1 }: + buildMix { + name = "chinese_translation"; + version = "0.1.0"; + src = fetchHex { + pkg = "chinese_translation"; + version = "0.1.0"; + sha256 = + "d5e4f59421bad59e465322ce7a8f366179e5f6a732d7e06435e8a7c01f42e7ab"; + }; + beamDeps = [ httpoison_0_8_1 ]; + + meta = { + longDescription = ''ChineseTranslation provides traditional + chinese <-> simplified chinese translation, as + well as pinyin translation and slugify for + chinese phrases/characters. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/tyrchen/chinese_translation"; + }; + } + ) {}; + + chinese_translation = chinese_translation_0_1_0; + + chronos_1_0_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "chronos"; + version = "1.0.0"; + src = fetchHex { + pkg = "chronos"; + version = "1.0.0"; + sha256 = + "cfe0087dcf2ab401b3c2c1faa977571f9880f527b54a8c22cda5a8023a8420af"; + }; + + 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"; + }; + } + ) {}; + + chronos_1_5_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + chronos = chronos_1_5_1; + + chunky_svg_0_0_4 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + chunky_svg = chunky_svg_0_0_4; + + cidr_0_5_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "cidr"; + version = "0.5.0"; + src = fetchHex { + pkg = "cidr"; + version = "0.5.0"; + sha256 = + "876baa94135d058a5ff617c8a072cdb2e5381661eb93b70d07844c0f9e00f38d"; + }; + + meta = { + description = ''Classless Inter-Domain Routing (CIDR) for + Elixir''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/c-rack/cidr-elixir"; + }; + } + ) {}; + + cidr = cidr_0_5_0; + + cipher_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + cipher = cipher_0_1_0; + + cirru_parser_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + cirru_parser = cirru_parser_0_0_1; + + ckan_0_0_2 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpotion_2_1_0 }: + buildMix { + name = "ckan"; + version = "0.0.2"; + src = fetchHex { + pkg = "ckan"; + version = "0.0.2"; + sha256 = + "471a58f1d38df7a6ff36af9a1e9d4c6cb9d310c5acb2db95ff3184717d7762a0"; + }; + beamDeps = [ poison_1_5_2 httpotion_2_1_0 ]; + + meta = { + description = ''A small library for interacting with CKAN + (ckan.org) instances''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/rossjones/ckan_ex"; + }; + } + ) {}; + + ckan = ckan_0_0_2; + + cldr_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "cldr"; + version = "0.0.1"; + src = fetchHex { + pkg = "cldr"; + version = "0.0.1"; + sha256 = + "12e38f1ac12957606db8bd63314d98e40db007ff413de8f2ec94e0520a078201"; + }; + + meta = { + description = ''cldr is a library to use information from CLDR + data. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/magicienap/cldr"; + }; + } + ) {}; + + cldr = cldr_0_0_1; + + cleverbot_0_0_1 = callPackage + ( + { buildMix, fetchHex, httpoison_0_7_5 }: + buildMix { + name = "cleverbot"; + version = "0.0.1"; + src = fetchHex { + pkg = "cleverbot"; + version = "0.0.1"; + sha256 = + "2a6f1bedbfd03fa0bbceff1134976d720e349cd7551cd5033eadf79f6cea4622"; + }; + beamDeps = [ httpoison_0_7_5 ]; + + meta = { + description = ''A Cleverbot API wrapper.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/BlakeWilliams/Elixir-Cleverbot"; + }; + } + ) {}; + + cleverbot = cleverbot_0_0_1; + + clint_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + clint = clint_0_0_1; + + cloak_0_2_0 = callPackage + ( + { buildMix, fetchHex, poison_2_1_0, ecto_2_0_0_beta_0 }: + buildMix { + name = "cloak"; + version = "0.2.0"; + src = fetchHex { + pkg = "cloak"; + version = "0.2.0"; + sha256 = + "8e2455ab420102280719efc86cee7a58d1de358a541cd7d1b49b74fa30fa8fb8"; + }; + beamDeps = [ poison_2_1_0 ecto_2_0_0_beta_0 ]; + + meta = { + description = ''Encrypted fields for Ecto.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/danielberkompas/cloak"; + }; + } + ) {}; + + cloak = cloak_0_2_0; + + cloudi_core_1_5_1 = callPackage + ( + { + buildRebar3, + fetchHex, + varpool_1_5_1, + uuid_erl_1_5_1, + trie_1_5_1, + syslog_1_0_2, + supool_1_5_1, + reltool_util_1_5_1, + quickrand_1_5_1, + pqueue_1_5_1, + nodefinder_1_5_1, + keys1value_1_5_1, + key2value_1_5_1, + erlang_term_1_5_1, + dynamic_compile_1_0_0, + cpg_1_5_1 + }: + buildRebar3 { + name = "cloudi_core"; + version = "1.5.1"; + src = fetchHex { + pkg = "cloudi_core"; + version = "1.5.1"; + sha256 = + "1dd4471c9c5d5b0e8c0ccaff2878e046c430a8b00d59c2c0a41ed29cba1102ba"; + }; + + beamDeps = [ + varpool_1_5_1 + uuid_erl_1_5_1 + trie_1_5_1 + syslog_1_0_2 + supool_1_5_1 + reltool_util_1_5_1 + quickrand_1_5_1 + pqueue_1_5_1 + nodefinder_1_5_1 + keys1value_1_5_1 + key2value_1_5_1 + erlang_term_1_5_1 + dynamic_compile_1_0_0 + cpg_1_5_1 + ]; + + meta = { + description = ''Erlang/Elixir Cloud Framework''; + license = stdenv.lib.licenses.bsd3; + homepage = "http://cloudi.org"; + }; + } + ) {}; + + cloudi_core = cloudi_core_1_5_1; + + cloudi_service_api_requests_1_5_1 = callPackage + ( + { + buildRebar3, fetchHex, trie_1_5_1, jsx_2_4_0, cloudi_core_1_5_1 + }: + buildRebar3 { + name = "cloudi_service_api_requests"; + version = "1.5.1"; + src = fetchHex { + pkg = "cloudi_service_api_requests"; + version = "1.5.1"; + sha256 = + "3af4a6bb4ef9f428f6044a752cc5c37cd7bf9fdc7d26407044b8c716b40c86f3"; + }; + + beamDeps = [ trie_1_5_1 jsx_2_4_0 cloudi_core_1_5_1 ]; + + meta = { + description = ''Erlang/Elixir Cloud Framework API requests + (JSON-RPC/Erlang-term support)''; + license = stdenv.lib.licenses.bsd3; + homepage = "http://cloudi.org"; + }; + } + ) {}; + + cloudi_service_api_requests = cloudi_service_api_requests_1_5_1; + + cloudi_service_db_1_5_1 = callPackage + ( + { + buildRebar3, + fetchHex, + uuid_erl_1_5_1, + trie_1_5_1, + cloudi_core_1_5_1 + }: + buildRebar3 { + name = "cloudi_service_db"; + version = "1.5.1"; + src = fetchHex { + pkg = "cloudi_service_db"; + version = "1.5.1"; + sha256 = + "067fccc8ca006722021b873995245f498a86582540bf738f6648bdceebd187e9"; + }; + + beamDeps = [ uuid_erl_1_5_1 trie_1_5_1 cloudi_core_1_5_1 ]; + + meta = { + description = ''Erlang/Elixir Cloud Framework Database + (in-memory/testing/generic)''; + license = stdenv.lib.licenses.bsd3; + homepage = "http://cloudi.org"; + }; + } + ) {}; + + cloudi_service_db = cloudi_service_db_1_5_1; + + cloudi_service_db_cassandra_1_3_3 = callPackage + ( + { buildRebar3, fetchHex, cloudi_core_1_5_1 }: + buildRebar3 { + name = "cloudi_service_db_cassandra"; + version = "1.3.3"; + src = fetchHex { + pkg = "cloudi_service_db_cassandra"; + version = "1.3.3"; + sha256 = + "78c9f924df50466fc3d27ffdd38dd235562be2ba4da5c298c569b3eee2bc10ef"; + }; + + beamDeps = [ cloudi_core_1_5_1 ]; + + meta = { + description = ''Erlang/Elixir Cloud Framework Cassandra + Service''; + license = stdenv.lib.licenses.bsd3; + homepage = "http://cloudi.org"; + }; + } + ) {}; + + cloudi_service_db_cassandra = cloudi_service_db_cassandra_1_3_3; + + cloudi_service_db_cassandra_cql_1_5_1 = callPackage + ( + { buildRebar3, fetchHex, cloudi_core_1_5_1 }: + buildRebar3 { + name = "cloudi_service_db_cassandra_cql"; + version = "1.5.1"; + src = fetchHex { + pkg = "cloudi_service_db_cassandra_cql"; + version = "1.5.1"; + sha256 = + "09173e571262745de51bb0b53732d909d846c80079ce33b976df7d61584f9ba8"; + }; + + beamDeps = [ cloudi_core_1_5_1 ]; + + meta = { + description = ''Erlang/Elixir Cloud Framework Cassandra CQL + Service''; + license = stdenv.lib.licenses.bsd3; + homepage = "http://cloudi.org"; + }; + } + ) {}; + + cloudi_service_db_cassandra_cql = + cloudi_service_db_cassandra_cql_1_5_1; + + cloudi_service_db_couchdb_1_5_1 = callPackage + ( + { buildRebar3, fetchHex, cloudi_core_1_5_1 }: + buildRebar3 { + name = "cloudi_service_db_couchdb"; + version = "1.5.1"; + src = fetchHex { + pkg = "cloudi_service_db_couchdb"; + version = "1.5.1"; + sha256 = + "c6e97aadacf625549c99a96435e35d0dc971a7d0e7cf5283769e3d7e8ee36812"; + }; + + beamDeps = [ cloudi_core_1_5_1 ]; + + meta = { + description = ''Erlang/Elixir Cloud Framework CouchDB Service''; + license = stdenv.lib.licenses.bsd3; + homepage = "http://cloudi.org"; + }; + } + ) {}; + + cloudi_service_db_couchdb = cloudi_service_db_couchdb_1_5_1; + + cloudi_service_db_elasticsearch_1_3_3 = callPackage + ( + { buildRebar3, fetchHex, cloudi_core_1_5_1 }: + buildRebar3 { + name = "cloudi_service_db_elasticsearch"; + version = "1.3.3"; + src = fetchHex { + pkg = "cloudi_service_db_elasticsearch"; + version = "1.3.3"; + sha256 = + "2e4f6c8488ce879235f0548cb15cae6f3bcbb3c0b20e51ab3faad6769220ee12"; + }; + + beamDeps = [ cloudi_core_1_5_1 ]; + + meta = { + description = ''Erlang/Elixir Cloud Framework elasticsearch + Service''; + license = stdenv.lib.licenses.bsd3; + homepage = "http://cloudi.org"; + }; + } + ) {}; + + cloudi_service_db_elasticsearch = + cloudi_service_db_elasticsearch_1_3_3; + + cloudi_service_db_http_elli_1_5_1 = callPackage + ( + { + buildRebar3, + fetchHex, + uuid_erl_1_5_1, + trie_1_5_1, + elli_1_0_4, + cowlib_1_0_2, + cloudi_core_1_5_1 + }: + buildRebar3 { + name = "cloudi_service_db_http_elli"; + version = "1.5.1"; + src = fetchHex { + pkg = "cloudi_service_db_http_elli"; + version = "1.5.1"; + sha256 = + "f1dde8cbb83773fb0e9ac918ac5c6ffdf3255462d252296b9a23f02e144ea13a"; + }; + + beamDeps = [ + uuid_erl_1_5_1 + trie_1_5_1 + elli_1_0_4 + cowlib_1_0_2 + cloudi_core_1_5_1 + ]; + + meta = { + description = ''Erlang/Elixir Cloud Framework elli HTTP + Service''; + license = stdenv.lib.licenses.bsd3; + homepage = "http://cloudi.org"; + }; + } + ) {}; + + cloudi_service_db_http_elli = cloudi_service_db_http_elli_1_5_1; + + cloudi_service_db_memcached_1_5_1 = callPackage + ( + { buildRebar3, fetchHex, cloudi_core_1_5_1 }: + buildRebar3 { + name = "cloudi_service_db_memcached"; + version = "1.5.1"; + src = fetchHex { + pkg = "cloudi_service_db_memcached"; + version = "1.5.1"; + sha256 = + "edcd28714e02d1b875c0c3a754fe230d5247b7b5e10194a74ee4d425fdca0839"; + }; + + beamDeps = [ cloudi_core_1_5_1 ]; + + meta = { + description = ''Erlang/Elixir Cloud Framework memcached + Service''; + license = stdenv.lib.licenses.bsd3; + homepage = "http://cloudi.org"; + }; + } + ) {}; + + cloudi_service_db_memcached = cloudi_service_db_memcached_1_5_1; + + cloudi_service_db_mysql_1_5_1 = callPackage + ( + { buildRebar3, fetchHex, cloudi_core_1_5_1 }: + buildRebar3 { + name = "cloudi_service_db_mysql"; + version = "1.5.1"; + src = fetchHex { + pkg = "cloudi_service_db_mysql"; + version = "1.5.1"; + sha256 = + "9bb0dec142d903615e0a5e360bd5faae9ceeccf37f1afc705e2a9a402c273a5b"; + }; + + beamDeps = [ cloudi_core_1_5_1 ]; + + meta = { + description = ''Erlang/Elixir Cloud Framework MySQL Service''; + license = stdenv.lib.licenses.bsd3; + homepage = "http://cloudi.org"; + }; + } + ) {}; + + cloudi_service_db_mysql = cloudi_service_db_mysql_1_5_1; + + cloudi_service_db_pgsql_1_5_1 = callPackage + ( + { buildRebar3, fetchHex, cloudi_core_1_5_1 }: + buildRebar3 { + name = "cloudi_service_db_pgsql"; + version = "1.5.1"; + src = fetchHex { + pkg = "cloudi_service_db_pgsql"; + version = "1.5.1"; + sha256 = + "d7cf7cb44d57e84f68310f0e146bf2c76f0aa42bca0073166c0da79ddd44b70e"; + }; + + beamDeps = [ cloudi_core_1_5_1 ]; + + meta = { + description = ''Erlang/Elixir Cloud Framework PostgreSQL + Service''; + license = stdenv.lib.licenses.bsd3; + homepage = "http://cloudi.org"; + }; + } + ) {}; + + cloudi_service_db_pgsql = cloudi_service_db_pgsql_1_5_1; + + cloudi_service_db_riak_1_3_3 = callPackage + ( + { buildRebar3, fetchHex, cloudi_core_1_5_1 }: + buildRebar3 { + name = "cloudi_service_db_riak"; + version = "1.3.3"; + src = fetchHex { + pkg = "cloudi_service_db_riak"; + version = "1.3.3"; + sha256 = + "902b6cb52a077fa47579631c07ca5ee414001b7388aac324b668c902a75de459"; + }; + + beamDeps = [ cloudi_core_1_5_1 ]; + + meta = { + description = ''Erlang/Elixir Cloud Framework Riak Service''; + license = stdenv.lib.licenses.bsd3; + homepage = "http://cloudi.org"; + }; + } + ) {}; + + cloudi_service_db_riak = cloudi_service_db_riak_1_3_3; + + cloudi_service_db_tokyotyrant_1_5_0 = callPackage + ( + { buildRebar3, fetchHex, cloudi_core_1_5_1 }: + buildRebar3 { + name = "cloudi_service_db_tokyotyrant"; + version = "1.5.0"; + src = fetchHex { + pkg = "cloudi_service_db_tokyotyrant"; + version = "1.5.0"; + sha256 = + "553893dfed554b3988e80f6dbc2aa301255941646fe82df57d4bca00ffeb9d1a"; + }; + + beamDeps = [ cloudi_core_1_5_1 ]; + + meta = { + description = ''Erlang/Elixir Cloud Framework Tokyo Tyrant + Service''; + license = stdenv.lib.licenses.bsd3; + homepage = "http://cloudi.org"; + }; + } + ) {}; + + cloudi_service_db_tokyotyrant = + cloudi_service_db_tokyotyrant_1_5_0; + + cloudi_service_filesystem_1_5_1 = callPackage + ( + { buildRebar3, fetchHex, cowlib_1_0_2, cloudi_core_1_5_1 }: + buildRebar3 { + name = "cloudi_service_filesystem"; + version = "1.5.1"; + src = fetchHex { + pkg = "cloudi_service_filesystem"; + version = "1.5.1"; + sha256 = + "18fa3406bd3a6cafb40cbacd01c16ff32daccf6b4eb45efa6ec351d03f08d4c3"; + }; + + beamDeps = [ cowlib_1_0_2 cloudi_core_1_5_1 ]; + + meta = { + description = ''Erlang/Elixir Cloud Framework Filesystem + Service''; + license = stdenv.lib.licenses.bsd3; + homepage = "http://cloudi.org"; + }; + } + ) {}; + + cloudi_service_filesystem = cloudi_service_filesystem_1_5_1; + + cloudi_service_http_client_1_5_1 = callPackage + ( + { + buildRebar3, + fetchHex, + uuid_erl_1_5_1, + trie_1_5_1, + cloudi_core_1_5_1 + }: + buildRebar3 { + name = "cloudi_service_http_client"; + version = "1.5.1"; + src = fetchHex { + pkg = "cloudi_service_http_client"; + version = "1.5.1"; + sha256 = + "674be0160e09543e9cddf0286b11d8110514b0db3d18e2f9e097796997b7a7db"; + }; + + beamDeps = [ uuid_erl_1_5_1 trie_1_5_1 cloudi_core_1_5_1 ]; + + meta = { + description = ''Erlang/Elixir Cloud Framework HTTP client + Service''; + license = stdenv.lib.licenses.bsd3; + homepage = "http://cloudi.org"; + }; + } + ) {}; + + cloudi_service_http_client = cloudi_service_http_client_1_5_1; + + cloudi_service_http_cowboy_1_5_1 = callPackage + ( + { buildRebar3, fetchHex, cowboy_1_0_4, cloudi_core_1_5_1 }: + buildRebar3 { + name = "cloudi_service_http_cowboy"; + version = "1.5.1"; + src = fetchHex { + pkg = "cloudi_service_http_cowboy"; + version = "1.5.1"; + sha256 = + "e0d07bbcd33bac980b66b7854bb8804433ba4619b6c6a3be63fefa36372b7a4b"; + }; + + beamDeps = [ cowboy_1_0_4 cloudi_core_1_5_1 ]; + + meta = { + description = ''Erlang/Elixir Cloud Framework cowboy HTTP/HTTPS + Service''; + license = stdenv.lib.licenses.bsd3; + homepage = "http://cloudi.org"; + }; + } + ) {}; + + cloudi_service_http_cowboy = cloudi_service_http_cowboy_1_5_1; + + cloudi_service_http_rest_1_5_1 = callPackage + ( + { buildRebar3, fetchHex, trie_1_5_1, cloudi_core_1_5_1 }: + buildRebar3 { + name = "cloudi_service_http_rest"; + version = "1.5.1"; + src = fetchHex { + pkg = "cloudi_service_http_rest"; + version = "1.5.1"; + sha256 = + "5f9f51df32defa5d383446431a0029d614732b1377933e0c682ca4556cfe63ce"; + }; + + beamDeps = [ trie_1_5_1 cloudi_core_1_5_1 ]; + + meta = { + description = ''REST HTTP CloudI Service''; + license = stdenv.lib.licenses.bsd3; + homepage = "http://cloudi.org"; + }; + } + ) {}; + + cloudi_service_http_rest = cloudi_service_http_rest_1_5_1; + + cloudi_service_map_reduce_1_5_1 = callPackage + ( + { buildRebar3, fetchHex, cloudi_core_1_5_1 }: + buildRebar3 { + name = "cloudi_service_map_reduce"; + version = "1.5.1"; + src = fetchHex { + pkg = "cloudi_service_map_reduce"; + version = "1.5.1"; + sha256 = + "44d31fd7f4e772bce5f508f4eb41d423bbfc347f2d7a4194326085ee5542a61d"; + }; + + beamDeps = [ cloudi_core_1_5_1 ]; + + meta = { + description = ''Erlang/Elixir Cloud Framework Map/Reduce + Service''; + license = stdenv.lib.licenses.bsd3; + homepage = "http://cloudi.org"; + }; + } + ) {}; + + cloudi_service_map_reduce = cloudi_service_map_reduce_1_5_1; + + cloudi_service_monitoring_1_5_1 = callPackage + ( + { + buildRebar3, + fetchHex, + key2value_1_5_1, + folsom_0_8_3, + cloudi_core_1_5_1 + }: + buildRebar3 { + name = "cloudi_service_monitoring"; + version = "1.5.1"; + src = fetchHex { + pkg = "cloudi_service_monitoring"; + version = "1.5.1"; + sha256 = + "4cb1d89085bba3b30910d8d129dde609cc063f761a736418da0eb9491ee673d5"; + }; + + beamDeps = [ key2value_1_5_1 folsom_0_8_3 cloudi_core_1_5_1 ]; + + meta = { + description = ''CloudI Monitoring Service''; + license = stdenv.lib.licenses.bsd3; + homepage = "http://cloudi.org"; + }; + } + ) {}; + + cloudi_service_monitoring = cloudi_service_monitoring_1_5_1; + + cloudi_service_queue_1_5_1 = callPackage + ( + { buildRebar3, fetchHex, cloudi_core_1_5_1 }: + buildRebar3 { + name = "cloudi_service_queue"; + version = "1.5.1"; + src = fetchHex { + pkg = "cloudi_service_queue"; + version = "1.5.1"; + sha256 = + "7fc7a1f0e8a888df2f6b5a2d3c0a7134475ba99f08aeb92244bbbf12e420d4c6"; + }; + + beamDeps = [ cloudi_core_1_5_1 ]; + + meta = { + description = ''Erlang/Elixir Cloud Framework Persistent Queue + Service''; + license = stdenv.lib.licenses.bsd3; + homepage = "http://cloudi.org"; + }; + } + ) {}; + + cloudi_service_queue = cloudi_service_queue_1_5_1; + + cloudi_service_quorum_1_5_1 = callPackage + ( + { buildRebar3, fetchHex, cloudi_core_1_5_1 }: + buildRebar3 { + name = "cloudi_service_quorum"; + version = "1.5.1"; + src = fetchHex { + pkg = "cloudi_service_quorum"; + version = "1.5.1"; + sha256 = + "2ca5f275073696f6226c7610a3933761d28081ad86d2b7a37dac41b40fe293f9"; + }; + + beamDeps = [ cloudi_core_1_5_1 ]; + + meta = { + description = ''Erlang/Elixir Cloud Framework Quorum Service''; + license = stdenv.lib.licenses.bsd3; + homepage = "http://cloudi.org"; + }; + } + ) {}; + + cloudi_service_quorum = cloudi_service_quorum_1_5_1; + + cloudi_service_router_1_5_1 = callPackage + ( + { buildRebar3, fetchHex, cloudi_core_1_5_1 }: + buildRebar3 { + name = "cloudi_service_router"; + version = "1.5.1"; + src = fetchHex { + pkg = "cloudi_service_router"; + version = "1.5.1"; + sha256 = + "e37d8f657183ab44fe28f27d02a6a50608c04af8f47872cbd4cb12a19a23b18f"; + }; + + beamDeps = [ cloudi_core_1_5_1 ]; + + meta = { + description = ''Erlang/Elixir Cloud Framework Router Service''; + license = stdenv.lib.licenses.bsd3; + homepage = "http://cloudi.org"; + }; + } + ) {}; + + cloudi_service_router = cloudi_service_router_1_5_1; + + cloudi_service_tcp_1_5_1 = callPackage + ( + { buildRebar3, fetchHex, cloudi_core_1_5_1 }: + buildRebar3 { + name = "cloudi_service_tcp"; + version = "1.5.1"; + src = fetchHex { + pkg = "cloudi_service_tcp"; + version = "1.5.1"; + sha256 = + "f0be083ef768aa356148f7fa26989139bfc5d8fb6f1119bd31eed06e5ab38469"; + }; + + beamDeps = [ cloudi_core_1_5_1 ]; + + meta = { + description = ''Erlang/Elixir Cloud Framework TCP Service''; + license = stdenv.lib.licenses.bsd3; + homepage = "http://cloudi.org"; + }; + } + ) {}; + + cloudi_service_tcp = cloudi_service_tcp_1_5_1; + + cloudi_service_timers_1_5_1 = callPackage + ( + { buildRebar3, fetchHex, cloudi_core_1_5_1 }: + buildRebar3 { + name = "cloudi_service_timers"; + version = "1.5.1"; + src = fetchHex { + pkg = "cloudi_service_timers"; + version = "1.5.1"; + sha256 = + "c576fe4725493fd3303945398b0984f339a8b52877bead4deb282e7d0f4bbc64"; + }; + + beamDeps = [ cloudi_core_1_5_1 ]; + + meta = { + description = ''Erlang/Elixir Cloud Framework Timers Service''; + license = stdenv.lib.licenses.bsd3; + homepage = "http://cloudi.org"; + }; + } + ) {}; + + cloudi_service_timers = cloudi_service_timers_1_5_1; + + cloudi_service_udp_1_5_1 = callPackage + ( + { buildRebar3, fetchHex, cloudi_core_1_5_1 }: + buildRebar3 { + name = "cloudi_service_udp"; + version = "1.5.1"; + src = fetchHex { + pkg = "cloudi_service_udp"; + version = "1.5.1"; + sha256 = + "d2939f6eb8048a0b154463e3ee5ff986a0a5370c97019e5562ee3fbb07b8698b"; + }; + + beamDeps = [ cloudi_core_1_5_1 ]; + + meta = { + description = ''Erlang/Elixir Cloud Framework UDP Service''; + license = stdenv.lib.licenses.bsd3; + homepage = "http://cloudi.org"; + }; + } + ) {}; + + cloudi_service_udp = cloudi_service_udp_1_5_1; + + cloudi_service_validate_1_5_1 = callPackage + ( + { buildRebar3, fetchHex, cloudi_core_1_5_1 }: + buildRebar3 { + name = "cloudi_service_validate"; + version = "1.5.1"; + src = fetchHex { + pkg = "cloudi_service_validate"; + version = "1.5.1"; + sha256 = + "96712d805bea5f36acbb01c90b46b87532e64a454a7c2b4deb34029508c51c78"; + }; + + beamDeps = [ cloudi_core_1_5_1 ]; + + meta = { + description = ''Erlang/Elixir Cloud Framework Validate Service''; + license = stdenv.lib.licenses.bsd3; + homepage = "http://cloudi.org"; + }; + } + ) {}; + + cloudi_service_validate = cloudi_service_validate_1_5_1; + + cloudi_service_zeromq_1_5_1 = callPackage + ( + { buildRebar3, fetchHex, cloudi_core_1_5_1 }: + buildRebar3 { + name = "cloudi_service_zeromq"; + version = "1.5.1"; + src = fetchHex { + pkg = "cloudi_service_zeromq"; + version = "1.5.1"; + sha256 = + "dba08d714d32fc9b50658ef075a13e99285458f73f433fb6f2059afcfb1ce498"; + }; + + beamDeps = [ cloudi_core_1_5_1 ]; + + meta = { + description = ''Erlang/Elixir Cloud Framework ZeroMQ Service''; + license = stdenv.lib.licenses.bsd3; + homepage = "http://cloudi.org"; + }; + } + ) {}; + + cloudi_service_zeromq = cloudi_service_zeromq_1_5_1; + + cloudinary_0_0_2 = callPackage + ( + { buildMix, fetchHex, poison_1_4_0, httpoison_0_8_1 }: + buildMix { + name = "cloudinary"; + version = "0.0.2"; + src = fetchHex { + pkg = "cloudinary"; + version = "0.0.2"; + sha256 = + "9e32b21717b193f90a526203725811b96294d7c88391e5ad4a57bf178678cc4c"; + }; + beamDeps = [ poison_1_4_0 httpoison_0_8_1 ]; + + meta = { + description = ''Library to upload to Cloudinary''; + license = stdenv.lib.licenses.mit; + }; + } + ) {}; + + cloudinary = cloudinary_0_0_2; + + cloudinaryex_0_0_2 = callPackage + ( + { + buildMix, fetchHex, timex_1_0_1, poison_1_5_2, httpoison_0_8_1 + }: + buildMix { + name = "cloudinaryex"; + version = "0.0.2"; + src = fetchHex { + pkg = "cloudinaryex"; + version = "0.0.2"; + sha256 = + "31518baacfcca428e30ee8f1c411d76568344e7032ed93cf34535e279c8472fc"; + }; + beamDeps = [ timex_1_0_1 poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''A library for connecting with Cloudinary in + Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/micahwedemeyer/cloudinaryex"; + }; + } + ) {}; + + cloudinaryex = cloudinaryex_0_0_2; + + clox_0_1_3 = callPackage + ( + { buildMix, fetchHex, timex_0_13_5 }: + buildMix { + name = "clox"; + version = "0.1.3"; + src = fetchHex { + pkg = "clox"; + version = "0.1.3"; + sha256 = + "a4e9330289479ecffce51346071282d8470612462b40e150d34a27475411f35b"; + }; + beamDeps = [ timex_0_13_5 ]; + + meta = { + description = ''time series date keys''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/camshaft/clox"; + }; + } + ) {}; + + clox = clox_0_1_3; + + cmark_0_6_8 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "cmark"; + version = "0.6.8"; + src = fetchHex { + pkg = "cmark"; + version = "0.6.8"; + sha256 = + "ee148d419684923567be4f413cf82c6f8da2d235e40d434e616febca158372cc"; + }; + compilePorts = true; + + meta = { + longDescription = ''Elixir NIF for cmark (C), a parser library + following the CommonMark spec, a compatible + implementation of Markdown.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/asaaki/cmark.ex"; + }; + } + ) {}; + + cmark = cmark_0_6_8; + + cobertura_cover_0_9_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + cobertura_cover = cobertura_cover_0_9_0; + + codepagex_0_1_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + codepagex = codepagex_0_1_2; + + coffee_rotor_0_2_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + coffee_rotor = coffee_rotor_0_2_1; + + coinbase_0_0_1 = callPackage + ( + { + buildMix, + fetchHex, + timex_0_13_5, + poison_1_3_1, + inflex_1_0_0, + httpoison_0_7_5, + dotenv_0_0_4 + }: + buildMix { + name = "coinbase"; + version = "0.0.1"; + src = fetchHex { + pkg = "coinbase"; + version = "0.0.1"; + sha256 = + "c7d59d239f219623765a596dc61a678a527d19fd0110db1ea09ab937d0df9bcc"; + }; + beamDeps = [ + timex_0_13_5 + poison_1_3_1 + inflex_1_0_0 + httpoison_0_7_5 + dotenv_0_0_4 + ]; + + meta = { + description = ''Coinbase API for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/gregpardo/coinbase-elixir"; + }; + } + ) {}; + + coinbase = coinbase_0_0_1; + + colixir_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + colixir = colixir_0_0_1; + + color_stream_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + color_stream = color_stream_0_0_2; + + color_utils_0_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + color_utils = color_utils_0_2_0; + + colorful_0_6_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + colorful = colorful_0_6_0; + + colorize_0_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + colorize = colorize_0_2_0; + + colors_1_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + colors = colors_1_0_1; + + combination_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + combination = combination_0_0_2; + + combine_0_7_0 = callPackage + ( + { buildMix, 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; + }; + } + ) {}; + + combine = combine_0_7_0; + + comeonin_1_6_0 = callPackage + ( + { buildRebar3, fetchHex, comeonin_i18n_0_1_3 }: + buildRebar3 { + name = "comeonin"; + version = "1.6.0"; + src = fetchHex { + pkg = "comeonin"; + version = "1.6.0"; + sha256 = + "40dd0da2c33696d19515888fd86b9ffdcad92d49e9a6b3b13df98e824897a1b1"; + }; + compilePorts = true; + beamDeps = [ comeonin_i18n_0_1_3 ]; + + meta = { + description = ''Password hashing (bcrypt, pbkdf2_sha512) library + for Elixir.''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/elixircnx/comeonin"; + }; + } + ) {}; + + comeonin_2_0_3 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "comeonin"; + version = "2.0.3"; + src = fetchHex { + pkg = "comeonin"; + version = "2.0.3"; + sha256 = + "a9a6f87107ebf6898adeca7130adb1b9e421c1be7e8b30b13ac1e0354ea15198"; + }; + compilePorts = true; + + meta = { + description = ''Password hashing (bcrypt, pbkdf2_sha512) library + for Elixir.''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/elixircnx/comeonin"; + }; + } + ) {}; + + comeonin_2_1_1 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "comeonin"; + version = "2.1.1"; + src = fetchHex { + pkg = "comeonin"; + version = "2.1.1"; + sha256 = + "7f85774ae5d453f664d0e7809cc1ab32ff22855d16ff6a2edd68c6d36cb1a1aa"; + }; + compilePorts = true; + + meta = { + description = ''Password hashing (bcrypt, pbkdf2_sha512) library + for Elixir.''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/elixircnx/comeonin"; + }; + } + ) {}; + + comeonin = comeonin_2_1_1; + + comeonin_ecto_password_0_0_3 = callPackage + ( + { buildMix, fetchHex, ecto_1_1_3, comeonin_2_1_1 }: + buildMix { + name = "comeonin_ecto_password"; + version = "0.0.3"; + src = fetchHex { + pkg = "comeonin_ecto_password"; + version = "0.0.3"; + sha256 = + "44c8dbf5b81fca515b91422fddb240c5d714bc81bc0d59b3ca60300edb3f856b"; + }; + beamDeps = [ ecto_1_1_3 comeonin_2_1_1 ]; + + meta = { + description = ''Ecto custom type for storing encrypted password + using Comonin''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/vic/comeonin_ecto_password"; + }; + } + ) {}; + + comeonin_ecto_password = comeonin_ecto_password_0_0_3; + + comeonin_i18n_0_1_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + comeonin_i18n = comeonin_i18n_0_1_3; + + commerce_billing_0_0_2 = callPackage + ( + { + buildMix, + fetchHex, + mock_0_1_1, + jazz_0_2_1, + httpoison_0_8_1, + ex_doc_0_11_4 + }: + buildMix { + name = "commerce_billing"; + version = "0.0.2"; + src = fetchHex { + pkg = "commerce_billing"; + version = "0.0.2"; + sha256 = + "6bb751f496011b974cb8d536b079eb7dfaeee4be827e4cf2fe0585e10f26bd04"; + }; + beamDeps = [ mock_0_1_1 jazz_0_2_1 httpoison_0_8_1 ex_doc_0_11_4 + ]; + + meta = { + description = ''Credit card processing library''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/joshnuss/commerce_billing"; + }; + } + ) {}; + + commerce_billing = commerce_billing_0_0_2; + + complex_0_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + complex = complex_0_2_0; + + con_cache_0_11_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + con_cache = con_cache_0_11_0; + + con_cache_0_9_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + conferl_0_0_1 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "conferl"; + version = "0.0.1"; + src = fetchHex { + pkg = "conferl"; + version = "0.0.1"; + sha256 = + "402ff3b66ff98ada2b537e2d9d329f4f6f32230c39d7a3be150cf72b7525f801"; + }; + + meta = { + description = ''Auto-Conference Service in Erlang (similar to + Disqus)''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/inaka/conferl"; + }; + } + ) {}; + + conferl = conferl_0_0_1; + + configparser_ex_0_2_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "configparser_ex"; + version = "0.2.0"; + src = fetchHex { + pkg = "configparser_ex"; + version = "0.2.0"; + sha256 = + "acc487b8671b8fadba6bf5694115c23e04c9754cb226f371f17dc7588687d8ac"; + }; + + 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"; + }; + } + ) {}; + + configparser_ex = configparser_ex_0_2_0; + + conform_0_13_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "conform"; + version = "0.13.0"; + src = fetchHex { + pkg = "conform"; + version = "0.13.0"; + sha256 = + "72bc5f0e55d15f8387892b664c30e969e3584e8da15d6b5d45caac4d84ee1165"; + }; + + meta = { + description = ''Easy release configuration for Elixir apps.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bitwalker/conform"; + }; + } + ) {}; + + conform_0_16_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + conform_1_0_0_rc8 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + conform = conform_1_0_0_rc8; + + conform_exrm_0_3_0 = callPackage + ( + { buildMix, fetchHex, exrm_1_0_0_rc8, conform_1_0_0_rc8 }: + buildMix { + name = "conform_exrm"; + version = "0.3.0"; + src = fetchHex { + pkg = "conform_exrm"; + version = "0.3.0"; + sha256 = + "52baf48678b29b8986bc325877489679b597633457397d078782262ee444808e"; + }; + beamDeps = [ exrm_1_0_0_rc8 conform_1_0_0_rc8 ]; + + meta = { + description = ''Conform plugin for ExRM''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bitwalker/conform_exrm"; + }; + } + ) {}; + + conform_exrm = conform_exrm_0_3_0; + + connection_1_0_0_rc_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + connection_1_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + connection = connection_1_0_2; + + conqueuer_0_5_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + conqueuer = conqueuer_0_5_1; + + console_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "console"; + version = "0.0.1"; + src = fetchHex { + pkg = "console"; + version = "0.0.1"; + sha256 = + "55e0635d7fdde35a04694e646a01b161c142b4d814a97ed8a373fd42af35c955"; + }; + + meta = { + + homepage = "https://github.com/matteosister/console"; + }; + } + ) {}; + + console = console_0_0_1; + + consul_1_0_3 = callPackage + ( + { buildMix, fetchHex, httpoison_0_7_5, exjsx_3_2_0 }: + buildMix { + name = "consul"; + version = "1.0.3"; + src = fetchHex { + pkg = "consul"; + version = "1.0.3"; + sha256 = + "80d5836e4cbe686bff535634e719e0892455b03e77bcde149fb221c80fdb1a52"; + }; + beamDeps = [ httpoison_0_7_5 exjsx_3_2_0 ]; + + meta = { + description = ''An Elixir client for Consul`s HTTP API ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/undeadlabs/consul-ex"; + }; + } + ) {}; + + consul = consul_1_0_3; + + control_0_0_4 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + control = control_0_0_4; + + convertat_1_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + convertat = convertat_1_1_0; + + core_0_14_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "core"; + version = "0.14.1"; + src = fetchHex { + pkg = "core"; + version = "0.14.1"; + sha256 = + "142c14544ce688b4527abeadfb3bf249678caaec1a3f3d11cb4927695f19ff33"; + }; + + meta = { + description = ''Library for selective receive OTP processes''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/fishcakez/core"; + }; + } + ) {}; + + core = core_0_14_1; + + core_data_0_1_0 = callPackage + ( + { buildMix, fetchHex, floki_0_1_1 }: + buildMix { + name = "core_data"; + version = "0.1.0"; + src = fetchHex { + pkg = "core_data"; + version = "0.1.0"; + sha256 = + "09b308a42f0697053c68f253e7f687c0f6b5f96bb1b114a7b1852c5b6804122e"; + }; + beamDeps = [ floki_0_1_1 ]; + + meta = { + description = ''iOS Core Data parser''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/evolet-project/core_data"; + }; + } + ) {}; + + core_data = core_data_0_1_0; + + cors_plug_1_1_0 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1, cowboy_1_0_4 }: + buildMix { + name = "cors_plug"; + version = "1.1.0"; + src = fetchHex { + pkg = "cors_plug"; + version = "1.1.0"; + sha256 = + "b6ae0bf0c8a993d7f94f7061774e70403726b2ffe5d648964b72d6f42fd71979"; + }; + beamDeps = [ plug_1_1_1 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"; + }; + } + ) {}; + + cors_plug = cors_plug_1_1_0; + + corsica_0_4_0 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1, cowboy_1_0_4 }: + buildMix { + name = "corsica"; + version = "0.4.0"; + src = fetchHex { + pkg = "corsica"; + version = "0.4.0"; + sha256 = + "9f5e7c6b3e6b52f9b07d76f207fbe39273d9cb22099b6b3d83621ded29fb42d6"; + }; + beamDeps = [ plug_1_1_1 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"; + }; + } + ) {}; + + corsica = corsica_0_4_0; + + couch_factory_0_1_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + couch_factory = couch_factory_0_1_1; + + couchbeam_1_2_1 = callPackage + ( + { buildRebar3, fetchHex, jsx_2_8_0, hackney_1_4_4 }: + buildRebar3 { + name = "couchbeam"; + version = "1.2.1"; + src = fetchHex { + pkg = "couchbeam"; + version = "1.2.1"; + sha256 = + "ed19f0412aa0539ecf622ac8ade1ca0e316f424e3334ad015a3fb8db19e91194"; + }; + + beamDeps = [ jsx_2_8_0 hackney_1_4_4 ]; + + meta = { + description = ''Erlang CouchDB client''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/benoitc/couchbeam"; + }; + } + ) {}; + + couchbeam = couchbeam_1_2_1; + + couchdb_client_0_2_5 = callPackage + ( + { + buildMix, + fetchHex, + poison_1_5_2, + httpoison_0_7_5, + ex_doc_0_11_4, + earmark_0_2_1 + }: + buildMix { + name = "couchdb_client"; + version = "0.2.5"; + src = fetchHex { + pkg = "couchdb_client"; + version = "0.2.5"; + sha256 = + "243c2fde196762dd6b664d3a91d111ac70336b22d91ca9aafc7c778e61ccb496"; + }; + beamDeps = [ + poison_1_5_2 + httpoison_0_7_5 + ex_doc_0_11_4 + earmark_0_2_1 + ]; + + meta = { + description = ''A partial yet functional CouchDB client, with + attachment support.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/gutschilla/elixir-couchdb-client"; + }; + } + ) {}; + + couchdb_client = couchdb_client_0_2_5; + + couchdb_connector_0_2_0 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "couchdb_connector"; + version = "0.2.0"; + src = fetchHex { + pkg = "couchdb_connector"; + version = "0.2.0"; + sha256 = + "05ac95c3f08038c3f17c03be5f27922b919513dfd4582f2da150f70182dac01b"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + longDescription = ''A connector for CouchDB, the Erlang-based, + JSON document database. The connector does not + implement the protocols defined in Ecto. + Reasons: CouchDB does not support transactions + as known in the world of ACID compliant, + relational databases. The concept of migrations + also does not apply to CouchDB. And since + CouchDB does not implement an SQL dialect, the + decision was taken to not follow the standards + established by Ecto. The connector offers + `create`, `update` and `read` operations through + its Writer and Reader modules. Basic support for + view operations is provided by the View + module.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/locolupo/couchdb_connector"; + }; + } + ) {}; + + couchdb_connector = couchdb_connector_0_2_0; + + count_buffer_0_1_5 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + count_buffer = count_buffer_0_1_5; + + countries_1_1_2 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "countries"; + version = "1.1.2"; + src = fetchHex { + pkg = "countries"; + version = "1.1.2"; + sha256 = + "8420314185aed4152340dcab3f8643d9c312610e2c065ee8709d8a097285149c"; + }; + + meta = { + longDescription = ''Countries is a collection of all sorts of + useful information for every country in the [ISO + 3166](https://de.wikipedia.org/wiki/ISO_3166) + standard. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/SebastianSzturo/countries"; + }; + } + ) {}; + + countries = countries_1_1_2; + + coverex_1_4_8 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "coverex"; + version = "1.4.8"; + src = fetchHex { + pkg = "coverex"; + version = "1.4.8"; + sha256 = + "47f03bd9d00b22893fda81273c310d30d96e849026f5c1d0ad664089c875bac6"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + longDescription = ''Coverex is an Elixir Coverage tool used by + mix. It provides tables with overviews of module + and function coverage data, includings links to + annotated source code files and supports + coveralls.io.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/alfert/coverex"; + }; + } + ) {}; + + coverex = coverex_1_4_8; + + cowboy_1_0_4 = callPackage + ( + { buildRebar3, fetchHex, cowlib_1_0_2, ranch_1_2_1 }: + buildRebar3 { + 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"; + }; + } + ) {}; + + cowboy = cowboy_1_0_4; + + cowboy_oauth_0_2_14 = callPackage + ( + { + buildRebar3, + fetchHex, + oauth2_erlang_0_6_1, + libsnarl_0_3_40, + lager_2_1_1, + jsxd_0_1_10, + jsx_1_4_5, + erlydtl2_0_11_1, + cowboy_1_0_4 + }: + buildRebar3 { + name = "cowboy_oauth"; + version = "0.2.14"; + src = fetchHex { + pkg = "cowboy_oauth"; + version = "0.2.14"; + sha256 = + "fc6b3da2a53d8527a08f6427745c85eb3b2da1e90de1a3fe290d4193ac4e5b09"; + }; + + beamDeps = [ + oauth2_erlang_0_6_1 + libsnarl_0_3_40 + lager_2_1_1 + jsxd_0_1_10 + jsx_1_4_5 + erlydtl2_0_11_1 + cowboy_1_0_4 + ]; + + meta = { + description = ''OAuth2 endpoints for cowboy and snarl.''; + license = stdenv.lib.licenses.cddl; + homepage = "https://github.com/project-fifo/cowboy_oauth"; + }; + } + ) {}; + + cowboy_oauth = cowboy_oauth_0_2_14; + + cowgirl_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + cowgirl = cowgirl_0_0_1; + + cowlib_1_0_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + 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"; + }; + } + ) {}; + + cowlib_1_0_2 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + 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"; + }; + } + ) {}; + + cowlib_1_3_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + 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"; + }; + } + ) {}; + + cowlib = cowlib_1_3_0; + + cowsay_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + cowsay = cowsay_0_0_1; + + cpg_1_5_1 = callPackage + ( + { + buildRebar3, + fetchHex, + trie_1_5_1, + reltool_util_1_5_1, + quickrand_1_5_1 + }: + buildRebar3 { + name = "cpg"; + version = "1.5.1"; + src = fetchHex { + pkg = "cpg"; + version = "1.5.1"; + sha256 = + "3bd7b7c48a0f959985d7038d6c533ee5540d12b8adfa6693409f4f6f492f4b45"; + }; + + beamDeps = [ trie_1_5_1 reltool_util_1_5_1 quickrand_1_5_1 ]; + + meta = { + description = ''CloudI Process Groups''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/okeuday/cpg"; + }; + } + ) {}; + + cpg = cpg_1_5_1; + + cqex_0_1_4 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + cqex = cqex_0_1_4; + + craterl_0_2_3 = callPackage + ( + { buildRebar3, fetchHex, jsx_2_7_1, hackney_1_3_1 }: + buildRebar3 { + name = "craterl"; + version = "0.2.3"; + src = fetchHex { + pkg = "craterl"; + version = "0.2.3"; + sha256 = + "bbbfa254fa5834d144f9061fff03035eca9a50b5e7581ce342c495b91af02929"; + }; + + beamDeps = [ jsx_2_7_1 hackney_1_3_1 ]; + + meta = { + description = ''erlang client for crate''; + + }; + } + ) {}; + + craterl = craterl_0_2_3; + + crc_0_3_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "crc"; + version = "0.3.0"; + src = fetchHex { + pkg = "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; + + credit_card_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + credit_card = credit_card_1_0_0; + + credo_0_1_10 = callPackage + ( + { buildMix, fetchHex, bunt_0_1_5 }: + buildMix { + name = "credo"; + version = "0.1.10"; + src = fetchHex { + pkg = "credo"; + version = "0.1.10"; + sha256 = + "2a52a3fc144bc5c70899381a58de603eb14751f4965dfea1866b20324b9806c0"; + }; + 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"; + }; + } + ) {}; + + credo_0_3_3 = callPackage + ( + { buildMix, fetchHex, bunt_0_1_5 }: + buildMix { + name = "credo"; + version = "0.3.3"; + src = fetchHex { + pkg = "credo"; + version = "0.3.3"; + sha256 = + "9cf7816093412e31bad13f08f6713ed935312d3a0d489edc76187c21e01a6afe"; + }; + 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"; + }; + } + ) {}; + + credo = credo_0_3_3; + + croma_0_3_8 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "croma"; + version = "0.3.8"; + src = fetchHex { + pkg = "croma"; + version = "0.3.8"; + sha256 = + "48735ed0a450c2101a884f14fba5d5946d27601426de220e2327feffb5cc2cca"; + }; + + meta = { + description = ''Elixir macro utilities''; + license = stdenv.lib.licenses.mit; + }; + } + ) {}; + + croma = croma_0_3_8; + + crudex_0_0_2 = callPackage + ( + { buildMix, fetchHex, plug_auth_0_2_0 }: + buildMix { + name = "crudex"; + version = "0.0.2"; + src = fetchHex { + pkg = "crudex"; + version = "0.0.2"; + sha256 = + "2ccf07c728dbb328b9f869a87465c8ba647931ec68f563c4ddea99ec76fa4364"; + }; + beamDeps = [ plug_auth_0_2_0 ]; + + meta = { + description = ''A glue keeping Phoenix and Ecto together''; + license = stdenv.lib.licenses.isc; + homepage = "https://github.com/briksoftware/crudex"; + }; + } + ) {}; + + crudex = crudex_0_0_2; + + crutches_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + crutches = crutches_1_0_0; + + cryptex_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + cryptex = cryptex_0_0_1; + + crypto_ext_0_1_1 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "crypto_ext"; + version = "0.1.1"; + src = fetchHex { + pkg = "crypto_ext"; + version = "0.1.1"; + sha256 = + "19715a35b392c557cc9503e2aa1f8fbd1dcd3cdcb11a0d2f73a3fe75f4db76b8"; + }; + compilePorts = true; + + meta = { + description = ''Crypto lib extension to support AES 128 ECB + cipher''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/adrienmo/crypto_ext"; + }; + } + ) {}; + + crypto_ext = crypto_ext_0_1_1; + + crypto_rsassa_pss_1_0_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + crypto_rsassa_pss = crypto_rsassa_pss_1_0_0; + + cspex_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + cspex = cspex_1_0_0; + + csv_1_2_4 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "csv"; + version = "1.2.4"; + src = fetchHex { + pkg = "csv"; + version = "1.2.4"; + sha256 = + "66fee1eaf536347d493942cb5e085321c51e80de124ff00f4b2651870b919b99"; + }; + + meta = { + description = ''CSV Decoding and Encoding for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/beatrichartz/csv"; + }; + } + ) {}; + + csv = csv_1_2_4; + + csvlixir_2_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + csvlixir = csvlixir_2_0_2; + + cth_readable_1_2_1 = callPackage + ( + { buildRebar3, fetchHex, cf_0_2_1 }: + buildRebar3 { + name = "cth_readable"; + version = "1.2.1"; + src = fetchHex { + pkg = "cth_readable"; + version = "1.2.1"; + sha256 = + "923ae5bd8a044695a3223cc6539126e69f91aff89bb924ccf38da9ee615d6492"; + }; + + 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"; + }; + } + ) {}; + + cth_readable = cth_readable_1_2_1; + + cuckoo_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + cuckoo = cuckoo_1_0_0; + + cucumberl_0_0_6 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "cucumberl"; + version = "0.0.6"; + src = fetchHex { + pkg = "cucumberl"; + version = "0.0.6"; + sha256 = + "3b9ea813997fd8c1e3d2b004e89288496dc21d2e5027f432e5900569d2c61cf3"; + }; + + meta = { + description = ''A pure-erlang implementation of Cucumber.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ericbmerritt/cucumberl"; + }; + } + ) {}; + + cucumberl = cucumberl_0_0_6; + + cuid_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + cuid = cuid_0_1_0; + + cure_0_4_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "cure"; + version = "0.4.1"; + src = fetchHex { + pkg = "cure"; + version = "0.4.1"; + sha256 = + "92ac6e2dfed6a955cdfedc6860fb84ec968400902b27dfd068e49ff82277932b"; + }; + + meta = { + longDescription = ''Interfaces Elixir with C/C++ code in a + user-friendly way! Based on Erlang-ports. + Provides a few Mix-tasks to kickstart the + development process.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Primordus/Cure.git"; + }; + } + ) {}; + + cure = cure_0_4_1; + + current_streak_ex_0_1_0 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_1, floki_0_7_1 }: + buildMix { + name = "current_streak_ex"; + version = "0.1.0"; + src = fetchHex { + pkg = "current_streak_ex"; + version = "0.1.0"; + sha256 = + "08b846b7347fa134d845e0654b4775eba78e995675f18ec51533e7e42aa3abaa"; + }; + beamDeps = [ httpoison_0_8_1 floki_0_7_1 ]; + + meta = { + description = ''Get github current streak which support only + public repositories.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/KazuCocoa/current_streak_ex"; + }; + } + ) {}; + + current_streak_ex = current_streak_ex_0_1_0; + + current_user_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + current_user = current_user_0_0_1; + + currently_0_0_3 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "currently"; + version = "0.0.3"; + src = fetchHex { + pkg = "currently"; + version = "0.0.3"; + sha256 = + "50d7f8e0c6eb1dd4f434cd50c7447eb8f9e3d4c413161948df7363c41bf90ec1"; + }; + + meta = { + description = ''Currently is a tool to display cards currently + assigns on Trello ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/chatgris/currently"; + }; + } + ) {}; + + currently = currently_0_0_3; + + curry_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + curry = curry_0_0_1; + + curtail_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + curtail = curtail_0_1_0; + + curtains_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + curtains = curtains_0_0_1; + + cushion_0_0_3 = callPackage + ( + { buildMix, fetchHex, httpotion_2_1_0 }: + buildMix { + name = "cushion"; + version = "0.0.3"; + src = fetchHex { + pkg = "cushion"; + version = "0.0.3"; + sha256 = + "1371ab210bd3b7ef7381dbe3f53fedb8afbbb0c562f45d614e4849373919482b"; + }; + beamDeps = [ httpotion_2_1_0 ]; + + 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"; + }; + } + ) {}; + + cushion = cushion_0_0_3; + + custom_base_0_1_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "custom_base"; + version = "0.1.0"; + src = fetchHex { + pkg = "custom_base"; + version = "0.1.0"; + sha256 = + "3a75d9cabcad3936e9194d387966213cb13a4d14b7b69f2cea0fc22ff2f76726"; + }; + + meta = { + description = ''Allow you to make custom base conversion in + Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/igas/custom_base"; + }; + } + ) {}; + + custom_base_0_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + custom_base = custom_base_0_2_0; + + cuttlefish_2_0_7 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + cuttlefish = cuttlefish_2_0_7; + + cypher_query_0_0_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + cypher_query = cypher_query_0_0_1; + + database_url_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + database_url = database_url_0_1_0; + + datomex_0_0_5 = callPackage + ( + { + buildMix, + fetchHex, + poison_1_5_2, + httpoison_0_8_1, + ex_doc_0_6_2, + erldn_1_0_5 + }: + buildMix { + name = "datomex"; + version = "0.0.5"; + src = fetchHex { + pkg = "datomex"; + version = "0.0.5"; + sha256 = + "bb2a5171a5d7783e40776db7fe7a6bff73ff69a4da4205c83b39c26ff73488c0"; + }; + beamDeps = [ + poison_1_5_2 httpoison_0_8_1 ex_doc_0_6_2 erldn_1_0_5 + ]; + + meta = { + description = ''Low level Elixir driver for the Datomic Database. + ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/edubkendo/datomex"; + }; + } + ) {}; + + datomex = datomex_0_0_5; + + datomic_gen_server_1_1_0 = callPackage + ( + { buildMix, fetchHex, exdn_2_1_2 }: + buildMix { + name = "datomic_gen_server"; + version = "1.1.0"; + src = fetchHex { + pkg = "datomic_gen_server"; + version = "1.1.0"; + sha256 = + "c5369270fa9a21544efc359e80eff4b24d5dfbe869c211da0df6ebf216afa5a3"; + }; + beamDeps = [ exdn_2_1_2 ]; + + meta = { + longDescription = ''An Elixir GenServer that communicates with a + Clojure Datomic peer running in the JVM, using + clojure-erlastic.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/psfblair/datomic_gen_server"; + }; + } + ) {}; + + datomic_gen_server = datomic_gen_server_1_1_0; + + db_0_9_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "db"; + version = "0.9.0"; + src = fetchHex { + pkg = "db"; + version = "0.9.0"; + sha256 = + "23d0307bc227782b1c0c86bb5b66130312cf3eb4363f3f39d5b1fc84140b3a91"; + }; + + meta = { + description = ''Banking Database''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/spawnproc/db"; + }; + } + ) {}; + + db = db_0_9_0; + + db_connection_0_2_3 = callPackage + ( + { + buildMix, + fetchHex, + sbroker_0_7_0, + poolboy_1_5_1, + connection_1_0_2 + }: + buildMix { + name = "db_connection"; + version = "0.2.3"; + src = fetchHex { + pkg = "db_connection"; + version = "0.2.3"; + sha256 = + "16a1e0a968b3610fd482f64266411bde554515572c2b184af493d749ef206fca"; + }; + 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"; + }; + } + ) {}; + + db_connection = db_connection_0_2_3; + + dbg_1_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + dbg = dbg_1_0_1; + + dbus_0_4_0 = callPackage + ( + { buildMix, fetchHex, poolboy_1_5_1, eredis_1_0_8 }: + buildMix { + name = "dbus"; + version = "0.4.0"; + src = fetchHex { + pkg = "dbus"; + version = "0.4.0"; + sha256 = + "d743b06a73286622af4a9390c4a16dcc5bce6be184ed660cfd76bd2f0b8ebedb"; + }; + beamDeps = [ poolboy_1_5_1 eredis_1_0_8 ]; + + meta = { + description = ''A native erlang implementation of D-Bus''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/lizenn/erlang-dbus"; + }; + } + ) {}; + + dbus = dbus_0_4_0; + + ddb_client_0_1_17 = callPackage + ( + { buildRebar3, fetchHex, mmath_0_1_15, dproto_0_1_12 }: + buildRebar3 { + name = "ddb_client"; + version = "0.1.17"; + src = fetchHex { + pkg = "ddb_client"; + version = "0.1.17"; + sha256 = + "8a65ef0f4e1edb2c575f8c8b38b4fed51ea94fd6c6ec39cc464a66dab45e0892"; + }; + + beamDeps = [ mmath_0_1_15 dproto_0_1_12 ]; + + meta = { + description = ''DalmatinerDB client''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/dalmatinerdb/ddb_client"; + }; + } + ) {}; + + ddb_client = ddb_client_0_1_17; + + dealer_0_8_0 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "dealer"; + version = "0.8.0"; + src = fetchHex { + pkg = "dealer"; + version = "0.8.0"; + sha256 = + "c8c72d38e1cff6a181a6b6f627fb6fd5998279827519e598eb28bcef2be721ee"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''An API Client for Stockfighter.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/larrylv/dealer"; + }; + } + ) {}; + + dealer = dealer_0_8_0; + + decimal_0_2_5 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "decimal"; + version = "0.2.5"; + src = fetchHex { + pkg = "decimal"; + version = "0.2.5"; + sha256 = + "2e2d871c68fea7cc86eb20826cdb6fccec1b6b242bae46d958806e598dc3c947"; + }; + + meta = { + description = ''Arbitrary precision decimal arithmetic for + Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/ericmj/decimal"; + }; + } + ) {}; + + decimal_1_1_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + decimal = decimal_1_1_1; + + decks_0_0_1 = callPackage + ( + { buildMix, 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.''; + + }; + } + ) {}; + + decks = decks_0_0_1; + + decoction_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + decoction = decoction_0_0_1; + + defmemo_0_1_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + defmemo = defmemo_0_1_1; + + delayed_otp_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + delayed_otp = delayed_otp_0_0_2; + + delegate_behaviour_0_1_3 = callPackage + ( + { buildMix, 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; + }; + } + ) {}; + + delegate_behaviour = delegate_behaviour_0_1_3; + + demacro_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "demacro"; + version = "0.0.1"; + src = fetchHex { + pkg = "demacro"; + version = "0.0.1"; + sha256 = + "e2a83d48f6b3e03764baf2e149dd5420e632d0d4daa77c5226697a3755a89d16"; + }; + meta = { }; + } + ) {}; + + demacro = demacro_0_0_1; + + denrei_0_2_3 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "denrei"; + version = "0.2.3"; + src = fetchHex { + pkg = "denrei"; + version = "0.2.3"; + sha256 = + "bc0e8cf7e085dda6027df83ef5d63c41b93988bcd7f3db7c68e4dad3cd599744"; + }; + + meta = { + description = ''Denrei - a lightweight Erlang messaging + system.''; + license = stdenv.lib.licenses.mit; + }; + } + ) {}; + + denrei = denrei_0_2_3; + + descriptive_statistics_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "descriptive_statistics"; + version = "0.0.1"; + src = fetchHex { + pkg = "descriptive_statistics"; + version = "0.0.1"; + sha256 = + "52004394a60aa8b7df57dda43591de6187a34a31ef64b0a4eecd140a647e2050"; + }; + + meta = { + longDescription = ''Descriptive Statistics is a library that + allows you to compute simple descriptive + statistics in Elixir. Inspired by + https://github.com/thirtysixthspan/descriptive_statistics.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/pusewicz/descriptive_statistics"; + }; + } + ) {}; + + descriptive_statistics = descriptive_statistics_0_0_1; + + detergent_0_3_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + detergent = detergent_0_3_0; + + detergentex_0_0_7 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + detergentex = detergentex_0_0_7; + + dexts_0_2_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "dexts"; + version = "0.2.1"; + src = fetchHex { + pkg = "dexts"; + version = "0.2.1"; + sha256 = + "9e5cfb3c4546b2f40713b7176556dfd5a839d77b6953ddaf9f06054a5c827ca4"; + }; + + meta = { + description = ''dets wrapper for Elixir''; + license = stdenv.lib.licenses.wtfpl; + homepage = "https://github.com/meh/dexts"; + }; + } + ) {}; + + dexts = dexts_0_2_1; + + dflow_0_1_5 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + dflow = dflow_0_1_5; + + di_0_1_0 = callPackage + ( + { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_1 }: + buildMix { + name = "di"; + version = "0.1.0"; + src = fetchHex { + pkg = "di"; + version = "0.1.0"; + sha256 = + "d7a89568c986c98399667faeb618d5cc42a89965717e758323aa5370d1547260"; + }; + beamDeps = [ poison_2_1_0 httpoison_0_8_1 ]; + + meta = { + description = ''Elixir wrapper for DI.FM''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/JoshuaThompson/di"; + }; + } + ) {}; + + di = di_0_1_0; + + dialyxir_0_3_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + dialyxir = dialyxir_0_3_3; + + dialyze_0_1_4 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "dialyze"; + version = "0.1.4"; + src = fetchHex { + pkg = "dialyze"; + version = "0.1.4"; + sha256 = + "af9d6c37d8c067aaee959d4e1701e045e011906217c9f772218a3abaa92e4505"; + }; + + meta = { + description = ''Dialyzer Mix task''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/fishcakez/dialyze"; + }; + } + ) {}; + + dialyze_0_2_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "dialyze"; + version = "0.2.0"; + src = fetchHex { + pkg = "dialyze"; + version = "0.2.0"; + sha256 = + "05efe534da3b6d0a89cb655f3dc7cf3a99088b0832c5a75a9898a6241ff01cd2"; + }; + + meta = { + description = ''Dialyzer Mix task''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/fishcakez/dialyze"; + }; + } + ) {}; + + dialyze = dialyze_0_2_0; + + diane_0_0_1 = callPackage + ( + { buildMix, fetchHex, sweet_xml_0_4_0 }: + buildMix { + name = "diane"; + version = "0.0.1"; + src = fetchHex { + pkg = "diane"; + version = "0.0.1"; + sha256 = + "cb4a9984aab545f376d32f13b4ab612ba32a603781ddd743658d9c3991a4a89d"; + }; + beamDeps = [ sweet_xml_0_4_0 ]; + + meta = { + description = ''RSS/Atom parser for Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/ptrckbrwn/diane"; + }; + } + ) {}; + + diane = diane_0_0_1; + + dice_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + dice = dice_0_0_1; + + dice_roller_1_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + dice_roller = dice_roller_1_0_1; + + dicer_0_8_0 = callPackage + ( + { buildMix, fetchHex, sfmt_0_12_2 }: + buildMix { + name = "dicer"; + version = "0.8.0"; + src = fetchHex { + pkg = "dicer"; + version = "0.8.0"; + sha256 = + "834e5d3f4cd9afac655e0f27869ecfdf6fa4ea061ad9ededdc6f295f71325960"; + }; + beamDeps = [ sfmt_0_12_2 ]; + + meta = { + description = ''Elixir library to calculate dice rolls. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/olhado/dicer"; + }; + } + ) {}; + + dicer = dicer_0_8_0; + + dicks_0_1_0 = callPackage + ( + { buildMix, fetchHex, httpoison_0_7_5, exjsx_3_1_0 }: + buildMix { + name = "dicks"; + version = "0.1.0"; + src = fetchHex { + pkg = "dicks"; + version = "0.1.0"; + sha256 = + "66d1a93ad1753361f2fc82033805a5f4c03ff295c78123e497f1ec56b9815be3"; + }; + beamDeps = [ httpoison_0_7_5 exjsx_3_1_0 ]; + + meta = { + longDescription = ''An Elixir client for the Dick As A Service + platform http://dicks-api.herokuapp.com ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Annwenn/DicksEx"; + }; + } + ) {}; + + dicks = dicks_0_1_0; + + dicon_0_2_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "dicon"; + version = "0.2.0"; + src = fetchHex { + pkg = "dicon"; + version = "0.2.0"; + sha256 = + "7da0fb146e81f34a6112594c88682c89b8cdf0ab9ccdaa92547399c283f2f98f"; + }; + + meta = { + description = ''Simple release deliverer for Elixir''; + license = stdenv.lib.licenses.isc; + homepage = "https://github.com/lexmag/dicon"; + }; + } + ) {}; + + dicon = dicon_0_2_0; + + difficult_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + difficult = difficult_0_0_2; + + digoc_0_3_3 = callPackage + ( + { buildMix, fetchHex, poison_1_3_1, httpoison_0_8_1 }: + buildMix { + name = "digoc"; + version = "0.3.3"; + src = fetchHex { + pkg = "digoc"; + version = "0.3.3"; + sha256 = + "23d5c2f1b977b1f3e12567879a20bc211898efdfcac9a0b6802324bc42ea0605"; + }; + beamDeps = [ poison_1_3_1 httpoison_0_8_1 ]; + + meta = { + description = ''An Elixir client for the Digital Ocean API v2.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/kevinmontuori/digoc"; + }; + } + ) {}; + + digoc = digoc_0_3_3; + + dir_walker_0_0_6 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + dir_walker = dir_walker_0_0_6; + + discount_0_7_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "discount"; + version = "0.7.0"; + src = fetchHex { + pkg = "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; + + discovery_0_5_7 = callPackage + ( + { buildMix, fetchHex, hash_ring_ex_1_1_2, consul_1_0_3 }: + buildMix { + name = "discovery"; + version = "0.5.7"; + src = fetchHex { + pkg = "discovery"; + version = "0.5.7"; + sha256 = + "e252044547397e53c52809d5b76070f302e243992c4cbfa233fc4fa44927ccc8"; + }; + beamDeps = [ hash_ring_ex_1_1_2 consul_1_0_3 ]; + + meta = { + description = ''An OTP application for auto-discovering services + with Consul ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/undeadlabs/discovery"; + }; + } + ) {}; + + discovery = discovery_0_5_7; + + dismake_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + dismake = dismake_1_0_0; + + distance_api_matrix_1_0_3 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "distance_api_matrix"; + version = "1.0.3"; + src = fetchHex { + pkg = "distance_api_matrix"; + version = "1.0.3"; + sha256 = + "e4b6848481f4c8f5f15ad1c9f116816a3941f7c96df37fbad350faffc7887a6a"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''Google Distance Matrix API Library for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/C404/distance-api-matrix"; + }; + } + ) {}; + + distance_api_matrix = distance_api_matrix_1_0_3; + + distancex_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + distancex = distancex_0_1_0; + + diver_0_1_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + diver = diver_0_1_1; + + dlist_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + dlist = dlist_0_0_1; + + dns_0_0_3 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "dns"; + version = "0.0.3"; + src = fetchHex { + pkg = "dns"; + version = "0.0.3"; + sha256 = + "60f4ff5a01cf95bbeb7b407712bcf833092280f6cc0c34ab09d2c0415fcb842e"; + }; + + meta = { + longDescription = ''DNS library for Elixir. Currently, the + package provides: - Elixir structs to interface + with `inet_dns` module. - DNS.Server behavior - + DNS.Client Note: the `inet_dns` module is + considered internal to Erlang and subject to + change. If this happened this library will be + updated to accommodate for that, but for now + `inet_dns` is simple and worked for me.''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/tungd/elixir-dns"; + }; + } + ) {}; + + dns = dns_0_0_3; + + dnsimple_0_0_1 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_7_5 }: + buildMix { + name = "dnsimple"; + version = "0.0.1"; + src = fetchHex { + pkg = "dnsimple"; + version = "0.0.1"; + sha256 = + "37acb9b7a35f9383ed98754e5bee5c479b91ac739ec566befa32d9baccdb4105"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_7_5 ]; + + meta = { + description = ''An (experimental) Elixir client for the DNSimple + API v2.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/weppos/dnsimple-elixir"; + }; + } + ) {}; + + dnsimple = dnsimple_0_0_1; + + doc_plug_1_0_2 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1 }: + buildMix { + name = "doc_plug"; + version = "1.0.2"; + src = fetchHex { + pkg = "doc_plug"; + version = "1.0.2"; + sha256 = + "2813f85dcd4f7228d54c277898d3d7483d03ef27ed4f9abc9eae6f57b00e79b8"; + }; + beamDeps = [ plug_1_1_1 ]; + + meta = { + description = ''Plug to automatically generate and serve project + documentation.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/hild/doc_plug"; + }; + } + ) {}; + + doc_plug = doc_plug_1_0_2; + + docker_0_3_0 = callPackage + ( + { buildRebar3, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildRebar3 { + name = "docker"; + version = "0.3.0"; + src = fetchHex { + pkg = "docker"; + version = "0.3.0"; + sha256 = + "ad97dbaa51a615a7694018d95b0b09403b6d552a03ddb3ba50f121c814cc624a"; + }; + + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''Elixir client for the Docker Remote API using + HTTPoison. ''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/hexedpackets/docker-elixir"; + }; + } + ) {}; + + docker = docker_0_3_0; + + dogma_0_1_0 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2 }: + buildMix { + name = "dogma"; + version = "0.1.0"; + src = fetchHex { + pkg = "dogma"; + version = "0.1.0"; + sha256 = + "cd261c67d712ce4e9d8020d9cb6627c756db8dc5466c169611d81b79c5a261d0"; + }; + beamDeps = [ poison_1_5_2 ]; + + meta = { + description = ''A code style linter for Elixir, powered by + shame.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/lpil/dogma"; + }; + } + ) {}; + + dogma = dogma_0_1_0; + + dogstatsd_0_0_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + dogstatsd = dogstatsd_0_0_3; + + dot_0_0_3 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "dot"; + version = "0.0.3"; + src = fetchHex { + pkg = "dot"; + version = "0.0.3"; + sha256 = + "3411bf1f70bb8ea0caa64515054a4a161b711667a5cdb0e7c14e766ce04b06ae"; + }; + meta = { }; + } + ) {}; + + dot = dot_0_0_3; + + dotenv_0_0_4 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "dotenv"; + version = "0.0.4"; + src = fetchHex { + pkg = "dotenv"; + version = "0.0.4"; + sha256 = + "e5243714a0fa0fbb6b5f466b1302db3a5fdb28363460fd4d282167e476cf703d"; + }; + + meta = { + description = ''A port of dotenv to Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/avdi/dotenv_elixir"; + }; + } + ) {}; + + dotenv_2_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + dotenv = dotenv_2_0_0; + + dotenv_elixir_0_0_2 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "dotenv_elixir"; + version = "0.0.2"; + src = fetchHex { + pkg = "dotenv_elixir"; + version = "0.0.2"; + sha256 = + "b7b95bff53df3bee1f500a24543bfb4c5c90b69c741454a86509b5a26c0355b7"; + }; + + meta = { + description = ''A port of dotenv to Elixir ''; + + homepage = "https://github.com/avdi/dotenv_elixir"; + }; + } + ) {}; + + dotenv_elixir = dotenv_elixir_0_0_2; + + dovetail_0_0_3 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "dovetail"; + version = "0.0.3"; + src = fetchHex { + pkg = "dovetail"; + version = "0.0.3"; + sha256 = + "01b6c3085ebb9cb7d43115c7a2d9780a840017e521daeb7d0a2233f61f8b0306"; + }; + + meta = { + description = ''Dovetail provides a harness for running test + dovecot servers.''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/thusfresh/dovetail"; + }; + } + ) {}; + + dovetail = dovetail_0_0_3; + + dpd_client_0_0_6 = callPackage + ( + { buildMix, fetchHex, hackney_1_0_6, poison_1_0_3 }: + buildMix { + name = "dpd_client"; + version = "0.0.6"; + src = fetchHex { + pkg = "dpd_client"; + version = "0.0.6"; + sha256 = + "080d8e9e4c68db87e42ead3fa3ffbc8cde2cadac441dbe81fa7a1b903486cc2d"; + }; + beamDeps = [ hackney_1_0_6 poison_1_0_3 ]; + + meta = { + longDescription = ''`dpd_client` is an API client for the DPD + service. It only supports a few of the API`s + endpoints at present. ''; + license = stdenv.lib.licenses.mit; + }; + } + ) {}; + + dpd_client = dpd_client_0_0_6; + + dproto_0_1_12 = callPackage + ( + { buildRebar3, fetchHex, mmath_0_1_15 }: + buildRebar3 { + name = "dproto"; + version = "0.1.12"; + src = fetchHex { + pkg = "dproto"; + version = "0.1.12"; + sha256 = + "49e2a048293a6c6213b69b5e983c581f81de0536e9acb5c47cd113ef410abbcf"; + }; + + beamDeps = [ mmath_0_1_15 ]; + + meta = { + description = ''Protocols for dalmatinerdb''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/dalmatinerdb/dproto"; + }; + } + ) {}; + + dproto = dproto_0_1_12; + + dqe_0_1_33 = callPackage + ( + { + buildRebar3, + fetchHex, + qdate_0_4_2, + poolboy_1_5_1, + mmath_0_1_16, + lager_3_0_2, + dproto_0_1_12, + dflow_0_1_5, + ddb_client_0_1_17 + }: + buildRebar3 { + name = "dqe"; + version = "0.1.33"; + src = fetchHex { + pkg = "dqe"; + version = "0.1.33"; + sha256 = + "b3c4eded2953afff00df0e33534b36e8bcceccafa9c11fd3438e1a88d570bb41"; + }; + + beamDeps = [ + qdate_0_4_2 + poolboy_1_5_1 + mmath_0_1_16 + lager_3_0_2 + dproto_0_1_12 + dflow_0_1_5 + ddb_client_0_1_17 + ]; + + meta = { + description = ''DalmatinerDB query engine''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/dalmatinerdb/dqe"; + }; + } + ) {}; + + dqe = dqe_0_1_33; + + drawille_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + drawille = drawille_0_0_1; + + dropbox_0_0_7 = callPackage + ( + { buildMix, fetchHex, hackney_1_0_6, jazz_0_2_1 }: + buildMix { + name = "dropbox"; + version = "0.0.7"; + src = fetchHex { + pkg = "dropbox"; + version = "0.0.7"; + sha256 = + "d881be0c042856e0b2ff446dfac0b64337f5cbbb18479f4c81080d3d2cd7e4af"; + }; + beamDeps = [ hackney_1_0_6 jazz_0_2_1 ]; + + meta = { + description = ''A Dropbox Core API client for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ammmir/elixir-dropbox"; + }; + } + ) {}; + + dropbox = dropbox_0_0_7; + + dublin_bus_api_0_1_5 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_1, floki_0_7_1 }: + buildMix { + name = "dublin_bus_api"; + version = "0.1.5"; + src = fetchHex { + pkg = "dublin_bus_api"; + version = "0.1.5"; + sha256 = + "54fb2c72fa682481970b126f53a45f2a38cc8d7fdff132483534f4ff04407bc1"; + }; + beamDeps = [ httpoison_0_8_1 floki_0_7_1 ]; + + meta = { + description = ''Access to the Real Time Passenger Information + (RTPI) for Dublin Bus services.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/carlo-colombo/dublin-bus-api"; + }; + } + ) {}; + + dublin_bus_api = dublin_bus_api_0_1_5; + + durga_transport_1_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "durga_transport"; + version = "1.0.1"; + src = fetchHex { + pkg = "durga_transport"; + version = "1.0.1"; + sha256 = + "42db857eba0e78c4eb15823b5137e8ccad13711cc2c873b6f1b469c4c0771009"; + }; + meta = { }; + } + ) {}; + + durga_transport = durga_transport_1_0_1; + + dye_0_4_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + dye = dye_0_4_0; + + dynamic_compile_1_0_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + dynamic_compile = dynamic_compile_1_0_0; + + e2qc_0_1_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "e2qc"; + version = "0.1.0"; + src = fetchHex { + pkg = "e2qc"; + version = "0.1.0"; + sha256 = + "3a97f9b3c60ec723002a816c041ac224dc5aba3360bd922c5e38cfd40f59c65b"; + }; + compilePorts = true; + + meta = { + description = ''2q cache''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/project-fifo/e2qc"; + }; + } + ) {}; + + e2qc = e2qc_0_1_0; + + e_queue_1_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + e_queue = e_queue_1_0_1; + + earmark_0_1_14 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "earmark"; + version = "0.1.14"; + src = fetchHex { + pkg = "earmark"; + version = "0.1.14"; + sha256 = + "5e44505d71df50a839bde48c922357f9340168340dfc7502f581f68b6a0a29f9"; + }; + + 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"; + }; + } + ) {}; + + earmark_0_1_19 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + earmark_0_2_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + earmark = earmark_0_2_1; + + eastar_0_3_8 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + eastar = eastar_0_3_8; + + easy_server_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + easy_server = easy_server_0_0_1; + + easypost_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + easypost = easypost_0_0_1; + + ecc_0_1_3 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "ecc"; + version = "0.1.3"; + src = fetchHex { + pkg = "ecc"; + version = "0.1.3"; + sha256 = + "0255ffe6e2b2cbbc2445ec7de6d29e16b6b6d8eaf0a6ae99a299cc79162541db"; + }; + + meta = { + longDescription = ''An elixir module for elliptic curve + cryptography. It can be used either as a library + or as a GenServer-Task for signing messages and + verifying signatures with a public key. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/farao/elixir-ecc"; + }; + } + ) {}; + + ecc = ecc_0_1_3; + + ecdo_0_1_4 = callPackage + ( + { + buildMix, fetchHex, postgrex_0_11_1, mariaex_0_6_2, 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_6_2 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"; + }; + } + ) {}; + + ecdo = ecdo_0_1_4; + + echo_0_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + echo = echo_0_2_0; + + econfig_0_7_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + econfig = econfig_0_7_1; + + ecto_0_16_0 = callPackage + ( + { + buildMix, + 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"; + }; + } + ) {}; + + ecto_0_2_4 = callPackage + ( + { + buildMix, fetchHex, postgrex_0_6_0, poolboy_1_2_1, decimal_0_2_5 + }: + buildMix { + name = "ecto"; + version = "0.2.4"; + src = fetchHex { + pkg = "ecto"; + version = "0.2.4"; + sha256 = + "b6918fb8a0b72220238832616c42937ac04d2f8016d687b53e3a241234cae4f3"; + }; + beamDeps = [ postgrex_0_6_0 poolboy_1_2_1 decimal_0_2_5 ]; + + 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"; + }; + } + ) {}; + + ecto_0_2_6 = callPackage + ( + { + buildMix, fetchHex, postgrex_0_6_0, poolboy_1_5_1, decimal_0_2_5 + }: + buildMix { + name = "ecto"; + version = "0.2.6"; + src = fetchHex { + pkg = "ecto"; + version = "0.2.6"; + sha256 = + "746fd42fa1a9fae304d9bb280782d9456a1f092ea71ead3a876876753c936dc8"; + }; + beamDeps = [ postgrex_0_6_0 poolboy_1_5_1 decimal_0_2_5 ]; + + 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"; + }; + } + ) {}; + + ecto_0_5_1 = callPackage + ( + { + buildMix, fetchHex, postgrex_0_6_0, poolboy_1_4_2, decimal_0_2_5 + }: + buildMix { + name = "ecto"; + version = "0.5.1"; + src = fetchHex { + pkg = "ecto"; + version = "0.5.1"; + sha256 = + "a7f1f8022f6b8c53edc91076bcc885e1124fdf14cdc2c4a11d3b9b4c26cf34a8"; + }; + beamDeps = [ postgrex_0_6_0 poolboy_1_4_2 decimal_0_2_5 ]; + + 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"; + }; + } + ) {}; + + ecto_1_0_7 = callPackage + ( + { + buildMix, + 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"; + }; + } + ) {}; + + ecto_1_1_3 = callPackage + ( + { + buildMix, + fetchHex, + sbroker_0_7_0, + postgrex_0_11_1, + poolboy_1_5_1, + poison_1_5_2, + mariaex_0_5_0, + decimal_1_1_1 + }: + buildMix { + name = "ecto"; + version = "1.1.3"; + src = fetchHex { + pkg = "ecto"; + version = "1.1.3"; + sha256 = + "0db9486edf2bc98cca77e5c22f7cb7e5a2d56fdb0268e4bb2e67353cc058b060"; + }; + beamDeps = [ + sbroker_0_7_0 + postgrex_0_11_1 + poolboy_1_5_1 + poison_1_5_2 + mariaex_0_5_0 + 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"; + }; + } + ) {}; + + ecto_2_0_0_beta_0 = callPackage + ( + { + buildMix, + fetchHex, + sbroker_0_7_0, + postgrex_0_11_1, + poolboy_1_5_1, + poison_1_0_3, + mariaex_0_6_2, + decimal_1_1_1 + }: + buildMix { + name = "ecto"; + version = "2.0.0-beta.0"; + src = fetchHex { + pkg = "ecto"; + version = "2.0.0-beta.0"; + sha256 = + "9c281d7de07610cc1025d2d5d2910aace0b0618c60fcbd6fd6f4b720c2f4e996"; + }; + beamDeps = [ + sbroker_0_7_0 + postgrex_0_11_1 + poolboy_1_5_1 + poison_1_0_3 + mariaex_0_6_2 + 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"; + }; + } + ) {}; + + ecto = ecto_2_0_0_beta_0; + + ecto_audit_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ecto_audit = ecto_audit_0_0_1; + + ecto_enum_0_3_0 = callPackage + ( + { + buildMix, + fetchHex, + postgrex_0_11_1, + mariaex_0_6_2, + ecto_2_0_0_beta_0 + }: + buildMix { + name = "ecto_enum"; + version = "0.3.0"; + src = fetchHex { + pkg = "ecto_enum"; + version = "0.3.0"; + sha256 = + "2aabbeeee17c67b8336890cc1888b1104b71e29852d464a77efca4257b02a8d9"; + }; + beamDeps = [ postgrex_0_11_1 mariaex_0_6_2 ecto_2_0_0_beta_0 ]; + + meta = { + description = ''Ecto extension to support enums in models''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/gjaldon/ecto_enum"; + }; + } + ) {}; + + ecto_enum = ecto_enum_0_3_0; + + ecto_fixtures_0_0_2 = callPackage + ( + { buildMix, fetchHex, uuid_1_1_3 }: + buildMix { + name = "ecto_fixtures"; + version = "0.0.2"; + src = fetchHex { + pkg = "ecto_fixtures"; + version = "0.0.2"; + sha256 = + "64e7ea208763fbcfb089ae8693fddcbe45c70ce2879614ad4edf883ca33ce061"; + }; + beamDeps = [ uuid_1_1_3 ]; + + meta = { + longDescription = ''Ecto Fixtures provides a simple DSL for + quickly creating fixture data for your test + suite.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/dockyard/ecto_fixtures"; + }; + } + ) {}; + + ecto_fixtures = ecto_fixtures_0_0_2; + + ecto_gettext_0_1_4 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ecto_gettext = ecto_gettext_0_1_4; + + ecto_hstore_0_0_1 = callPackage + ( + { buildMix, fetchHex, ecto_2_0_0_beta_0 }: + buildMix { + name = "ecto_hstore"; + version = "0.0.1"; + src = fetchHex { + pkg = "ecto_hstore"; + version = "0.0.1"; + sha256 = + "0dca7ad14d0fa42038594e00a6f1e1fb3476644f71299f9e4ca10f1b9d6098cb"; + }; + beamDeps = [ ecto_2_0_0_beta_0 ]; + + meta = { + description = ''Ecto.Hstore adds Postgres Hstore compatibility to + Ecto. ''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/stavro/ecto_hstore"; + }; + } + ) {}; + + ecto_hstore = ecto_hstore_0_0_1; + + ecto_it_0_2_0 = callPackage + ( + { + buildMix, + fetchHex, + postgrex_0_11_1, + mariaex_0_6_2, + ecto_2_0_0_beta_0 + }: + buildMix { + name = "ecto_it"; + version = "0.2.0"; + src = fetchHex { + pkg = "ecto_it"; + version = "0.2.0"; + sha256 = + "ddbf27e85547b9812d7b49bc2252b4667468582b174045ba2bb1a804d209a860"; + }; + beamDeps = [ postgrex_0_11_1 mariaex_0_6_2 ecto_2_0_0_beta_0 ]; + + meta = { + longDescription = ''Ecto IT is library for writing integration + tests(with database backend) for ecto-based + applications.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/xerions/ecto_it"; + }; + } + ) {}; + + ecto_it = ecto_it_0_2_0; + + ecto_lazy_float_0_1_2 = callPackage + ( + { buildMix, fetchHex, ecto_2_0_0_beta_0 }: + buildMix { + name = "ecto_lazy_float"; + version = "0.1.2"; + src = fetchHex { + pkg = "ecto_lazy_float"; + version = "0.1.2"; + sha256 = + "76f14bf8d2bf52e3143c79fdf0e9d9bbb2fb1b087e847b13347e52e5b0c5da94"; + }; + beamDeps = [ ecto_2_0_0_beta_0 ]; + + meta = { + description = ''Ecto.LazyFloat takes integer, strings, and floats + and casts them to floats. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/joshdholtz/ecto-lazy-float"; + }; + } + ) {}; + + ecto_lazy_float = ecto_lazy_float_0_1_2; + + ecto_ldap_0_2_0 = callPackage + ( + { buildMix, fetchHex, ecto_2_0_0_beta_0 }: + buildMix { + name = "ecto_ldap"; + version = "0.2.0"; + src = fetchHex { + pkg = "ecto_ldap"; + version = "0.2.0"; + sha256 = + "9228e091811d699c530a717633f0be8f3468d80f81f721c5f4ce2bd9b401de13"; + }; + beamDeps = [ ecto_2_0_0_beta_0 ]; + + meta = { + description = ''An Ecto adapter for LDAP''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jeffweiss/ecto_ldap"; + }; + } + ) {}; + + ecto_ldap = ecto_ldap_0_2_0; + + ecto_migrate_0_6_3 = callPackage + ( + { + buildMix, + fetchHex, + postgrex_0_11_1, + mariaex_0_6_2, + ecto_it_0_2_0, + ecto_1_0_7 + }: + buildMix { + name = "ecto_migrate"; + version = "0.6.3"; + src = fetchHex { + pkg = "ecto_migrate"; + version = "0.6.3"; + sha256 = + "a604f2fe7874c674bd42fc70f3e89776d3738571d252ec8b785a107a6fa12b5c"; + }; + beamDeps = [ + postgrex_0_11_1 mariaex_0_6_2 ecto_it_0_2_0 ecto_1_0_7 + ]; + + meta = { + longDescription = ''Ecto auto migration library. It allows to + generate and run migrations for initial and + update migrations.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/xerions/ecto_migrate"; + }; + } + ) {}; + + ecto_migrate = ecto_migrate_0_6_3; + + ecto_ordered_0_0_2 = callPackage + ( + { buildMix, fetchHex, ecto_0_5_1 }: + buildMix { + name = "ecto_ordered"; + version = "0.0.2"; + src = fetchHex { + pkg = "ecto_ordered"; + version = "0.0.2"; + sha256 = + "315ccd497576d800e3962874da19dae8938eb36ca4dc14193ed95ef7c9c12c1e"; + }; + beamDeps = [ ecto_0_5_1 ]; + + meta = { + description = ''Ecto extension to support ordered list models''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/trustatom-oss/ecto-ordered"; + }; + } + ) {}; + + ecto_ordered = ecto_ordered_0_0_2; + + ecto_validation_case_0_1_1 = callPackage + ( + { buildMix, fetchHex, ex_doc_0_11_4, ecto_2_0_0_beta_0 }: + buildMix { + name = "ecto_validation_case"; + version = "0.1.1"; + src = fetchHex { + pkg = "ecto_validation_case"; + version = "0.1.1"; + sha256 = + "0bec902247929e66cb0687f09d458633385843d18ca6ec1ac2557e6754b55cbd"; + }; + beamDeps = [ ex_doc_0_11_4 ecto_2_0_0_beta_0 ]; + + meta = { + description = ''Ecto.ValidationCase simplifies writing validation + tests for Ecto models. ''; + license = with stdenv.lib.licenses; [ mit asl20 ]; + homepage = + "https://github.com/danielberkompas/ecto_validation_case"; + }; + } + ) {}; + + ecto_validation_case = ecto_validation_case_0_1_1; + + ectograph_0_0_1 = callPackage + ( + { buildMix, fetchHex, graphql_0_1_2, ecto_1_1_3 }: + buildMix { + name = "ectograph"; + version = "0.0.1"; + src = fetchHex { + pkg = "ectograph"; + version = "0.0.1"; + sha256 = + "1fe701999ff1648cdac64ed6500793f8534fe7771ed5b533c21bc42a648d3484"; + }; + beamDeps = [ graphql_0_1_2 ecto_1_1_3 ]; + + 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"; + }; + } + ) {}; + + ectograph = ectograph_0_0_1; + + ectoo_0_0_4 = callPackage + ( + { buildMix, fetchHex, postgrex_0_11_1, ecto_2_0_0_beta_0 }: + buildMix { + name = "ectoo"; + version = "0.0.4"; + src = fetchHex { + pkg = "ectoo"; + version = "0.0.4"; + sha256 = + "bf5852e97e64666ebd57df710e4cb1239d3fcf135d7ae9d5d666fc53aa0e0b46"; + }; + beamDeps = [ postgrex_0_11_1 ecto_2_0_0_beta_0 ]; + + meta = { + longDescription = ''Make simple things easy in Ecto, e.g. + Ectoo.max(MyModel, :age). Also .count, .min, + .max, .avg.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/henrik/ectoo"; + }; + } + ) {}; + + ectoo = ectoo_0_0_4; + + ectophile_0_3_0 = callPackage + ( + { + buildMix, + fetchHex, + postgrex_0_9_1, + poison_1_5_2, + mariaex_0_4_3, + ecto_2_0_0_beta_0 + }: + buildMix { + name = "ectophile"; + version = "0.3.0"; + src = fetchHex { + pkg = "ectophile"; + version = "0.3.0"; + sha256 = + "376c7c838bc602bc64d7ae3dfa4079717f6ed5e0117113652fc281e3e17227d2"; + }; + beamDeps = [ + postgrex_0_9_1 + poison_1_5_2 + mariaex_0_4_3 + ecto_2_0_0_beta_0 + ]; + + meta = { + description = ''File upload extension for Ecto''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/gjaldon/ectophile"; + }; + } + ) {}; + + ectophile = ectophile_0_3_0; + + edeliver_1_1_4 = callPackage + ( + { buildMix, fetchHex, exrm_1_0_0_rc8 }: + buildMix { + name = "edeliver"; + version = "1.1.4"; + src = fetchHex { + pkg = "edeliver"; + version = "1.1.4"; + sha256 = + "b7c95a499efb0fc9baf681dfaba3c09c64d9cde5c4cf4faafd44d6de9cba8928"; + }; + beamDeps = [ exrm_1_0_0_rc8 ]; + + 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"; + }; + } + ) {}; + + edeliver = edeliver_1_1_4; + + eden_0_1_3 = callPackage + ( + { buildMix, fetchHex, timex_0_13_5, array_1_0_1 }: + buildMix { + name = "eden"; + version = "0.1.3"; + src = fetchHex { + pkg = "eden"; + version = "0.1.3"; + sha256 = + "cbada564b3beb28c350a3f01da7398329e39c24dc9780002ab842d14604ca67b"; + }; + beamDeps = [ timex_0_13_5 array_1_0_1 ]; + + meta = { + description = ''edn (extensible data notation) encoder/decoder + implemented in Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/jfacorro/Eden/"; + }; + } + ) {}; + + eden = eden_0_1_3; + + edgarex_0_0_2 = callPackage + ( + { buildMix, fetchHex, httpotion_2_0_0, exquery_0_0_11 }: + buildMix { + name = "edgarex"; + version = "0.0.2"; + src = fetchHex { + pkg = "edgarex"; + version = "0.0.2"; + sha256 = + "99e25e685bc44a1f804729779e77d5e3d1920f42c99478cd9b712d724b4f6af4"; + }; + beamDeps = [ httpotion_2_0_0 exquery_0_0_11 ]; + + meta = { + longDescription = '' A set of utilities for fetching documents + from the SEC EDGAR data portal, as well as + parsing them into simpler structures. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rozap/edgarex"; + }; + } + ) {}; + + edgarex = edgarex_0_0_2; + + edib_0_5_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + edib = edib_0_5_1; + + edip_0_4_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + edip = edip_0_4_3; + + edown_0_7_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "edown"; + version = "0.7.0"; + src = fetchHex { + pkg = "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; + + eeb_0_1_3 = callPackage + ( + { + buildMix, + fetchHex, + tzdata_0_1_8, + timex_1_0_1, + 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_8 + timex_1_0_1 + 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"; + }; + } + ) {}; + + eeb = eeb_0_1_3; + + egithub_0_2_2 = callPackage + ( + { + buildRebar3, + fetchHex, + shotgun_0_2_2, + jiffy_0_14_7, + lager_3_0_2, + goldrush_0_1_7 + }: + buildRebar3 { + 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"; + }; + } + ) {}; + + egithub = egithub_0_2_2; + + eh_0_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + eh = eh_0_2_0; + + eight_ball_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + eight_ball = eight_ball_0_0_1; + + eight_ball_dj_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + eight_ball_dj = eight_ball_dj_0_0_2; + + eio_0_1_0 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, plug_1_1_1, 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_1 cowboy_1_0_4 ]; + + meta = { + description = ''Engine.io server for Elixir.''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/falood/eio"; + }; + } + ) {}; + + eio = eio_0_1_0; + + ejabberd_16_1_0_beta1 = callPackage + ( + { + buildMix, + fetchHex, + stun_1_0_1, + stringprep_1_0_2, + sqlite3_1_1_5, + p1_xmlrpc_1_15_1, + p1_utils_1_0_3, + p1_pgsql_1_0_1, + p1_oauth2_0_6_1, + p1_mysql_1_0_1, + lager_3_0_2, + jiffy_0_14_7, + iconv_1_0_0, + fast_yaml_1_0_2, + fast_xml_1_1_3, + fast_tls_1_0_1, + ezlib_1_0_1, + esip_1_0_2, + eredis_1_0_8, + cache_tab_1_0_2 + }: + buildMix { + name = "ejabberd"; + version = "16.1.0-beta1"; + src = fetchHex { + pkg = "ejabberd"; + version = "16.1.0-beta1"; + sha256 = + "c1f6b702ab0e75866979c62edeab4dcc01a2cd9d375a73799b7288dbdc77d743"; + }; + beamDeps = [ + stun_1_0_1 + stringprep_1_0_2 + sqlite3_1_1_5 + p1_xmlrpc_1_15_1 + p1_utils_1_0_3 + p1_pgsql_1_0_1 + p1_oauth2_0_6_1 + p1_mysql_1_0_1 + lager_3_0_2 + jiffy_0_14_7 + iconv_1_0_0 + fast_yaml_1_0_2 + fast_xml_1_1_3 + fast_tls_1_0_1 + ezlib_1_0_1 + esip_1_0_2 + eredis_1_0_8 + cache_tab_1_0_2 + ]; + + meta = { + longDescription = ''Robust, ubiquitous and massively scalable + Jabber / XMPP Instant Messaging platform.''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/processone/ejabberd"; + }; + } + ) {}; + + ejabberd = ejabberd_16_1_0_beta1; + + ejabberd_dev_15_9_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ejabberd_dev = ejabberd_dev_15_9_0; + + ekstat_0_2_2 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "ekstat"; + version = "0.2.2"; + src = fetchHex { + pkg = "ekstat"; + version = "0.2.2"; + sha256 = + "fdd30052433bf7ceb453397c4cabee2d9b0a2a716842a29a1121d3474c5b9fa7"; + }; + compilePorts = true; + + meta = { + description = ''libkstat interface for erlang''; + license = stdenv.lib.licenses.cddl; + homepage = "https://github.com/Licenser/ekstat"; + }; + } + ) {}; + + ekstat = ekstat_0_2_2; + + elastex_0_1_1 = callPackage + ( + { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_1 }: + buildMix { + name = "elastex"; + version = "0.1.1"; + src = fetchHex { + pkg = "elastex"; + version = "0.1.1"; + sha256 = + "e08e9640f0d68250dfbe3a6d54855f75742db647ace24a42667d88e234c5849c"; + }; + beamDeps = [ poison_2_1_0 httpoison_0_8_1 ]; + + meta = { + description = ''Data driven elixir client for Elasticsearch.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/michaeldoaty/elastex"; + }; + } + ) {}; + + elastex = elastex_0_1_1; + + elastix_0_1_0 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_7_5 }: + buildMix { + name = "elastix"; + version = "0.1.0"; + src = fetchHex { + pkg = "elastix"; + version = "0.1.0"; + sha256 = + "3e24e2287bbd733e913d16092ea3fdff6b7f8f74f9eae73b07699fcf62bb5b06"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_7_5 ]; + + meta = { + description = ''A simple Elastic REST client written in + Elixir.''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/werbitzky/elastix"; + }; + } + ) {}; + + elastix = elastix_0_1_0; + + elaxtic_0_0_1 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_1 }: + buildMix { + name = "elaxtic"; + version = "0.0.1"; + src = fetchHex { + pkg = "elaxtic"; + version = "0.0.1"; + sha256 = + "a912a0327bfe1c6443cec47a03d11450fed2e649bfdcd4e77bdb9176baa8cd45"; + }; + beamDeps = [ httpoison_0_8_1 ]; + + meta = { + description = ''ElasticSearch client for Elixir and Ecto + driver.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/vic/elaxtic"; + }; + } + ) {}; + + elaxtic = elaxtic_0_0_1; + + eleveldb_2_1_3 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "eleveldb"; + version = "2.1.3"; + src = fetchHex { + pkg = "eleveldb"; + version = "2.1.3"; + sha256 = + "91f4caccc3d0a40a6135b9a647a52c7ec5fefdd41883e1a0f32745838d7cfd3c"; + }; + compilePorts = true; + + meta = { + description = ''Erlang LevelDB API''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/basho/eleveldb"; + }; + } + ) {}; + + eleveldb = eleveldb_2_1_3; + + elibphonenumber_0_1_1 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "elibphonenumber"; + version = "0.1.1"; + src = fetchHex { + pkg = "elibphonenumber"; + version = "0.1.1"; + sha256 = + "6dcbcd49fe7c969873a3431eaa3939298b2564308d2a8fbcc22b7d9b4bc65f27"; + }; + compilePorts = true; + + meta = { + description = ''A port driver for libphonenumber''; + + homepage = "https://github.com/johnhamelink/elibphonenumber"; + }; + } + ) {}; + + elibphonenumber = elibphonenumber_0_1_1; + + elistrix_0_0_5 = callPackage + ( + { buildMix, fetchHex, timex_0_13_5 }: + buildMix { + name = "elistrix"; + version = "0.0.5"; + src = fetchHex { + pkg = "elistrix"; + version = "0.0.5"; + sha256 = + "63888c589e9ec116f4cb6f8b6ef18aec478d48563965da94594408d3c86450d3"; + }; + beamDeps = [ timex_0_13_5 ]; + + meta = { + longDescription = ''A latency / fault tolerance library to help + isolate your applications from an uncertain + world of slow or failed services.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/tobz/elistrix"; + }; + } + ) {}; + + elistrix = elistrix_0_0_5; + + elixilorem_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "elixilorem"; + version = "0.0.1"; + src = fetchHex { + pkg = "elixilorem"; + version = "0.0.1"; + sha256 = + "fbe0f40bed9e3e3db687e88d3afb24e1a81ae274582170d1ca0545e13638cbea"; + }; + + meta = { + description = ''A Lorem Ipsum generator for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mgamini/elixilorem"; + }; + } + ) {}; + + elixilorem = elixilorem_0_0_1; + + elixir_ale_0_4_1 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "elixir_ale"; + version = "0.4.1"; + src = fetchHex { + pkg = "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; + + elixir_ami_0_0_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + elixir_ami = elixir_ami_0_0_3; + + elixir_authorizenet_0_2_1 = callPackage + ( + { buildMix, fetchHex, xml_builder_0_0_8, exmerl_0_1_1 }: + buildMix { + name = "elixir_authorizenet"; + version = "0.2.1"; + src = fetchHex { + pkg = "elixir_authorizenet"; + version = "0.2.1"; + sha256 = + "ac690facc36206982a7bc1eca4cf3d50a68194e05c2cf927e0e3f166c71e9f0f"; + }; + 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"; + }; + } + ) {}; + + elixir_authorizenet = elixir_authorizenet_0_2_1; + + elixir_bencode_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + elixir_bencode = elixir_bencode_1_0_0; + + elixir_drawille_0_0_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + elixir_drawille = elixir_drawille_0_0_3; + + elixir_exif_0_1_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "elixir_exif"; + version = "0.1.0"; + src = fetchHex { + pkg = "elixir_exif"; + version = "0.1.0"; + sha256 = + "9d8e79d247495347c15d89172e86b49b3c9592b8df8d70ec0a4db126c3cd599b"; + }; + + meta = { + description = ''Parse exif and thumbnail data from jpeg/tiff + images.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/sschneider1207/ElixirExif"; + }; + } + ) {}; + + elixir_exif = elixir_exif_0_1_0; + + elixir_feed_parser_0_9_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + elixir_feed_parser = elixir_feed_parser_0_9_0; + + elixir_freshbooks_0_0_2 = callPackage + ( + { buildMix, fetchHex, xml_builder_0_0_8, exmerl_0_1_1 }: + buildMix { + name = "elixir_freshbooks"; + version = "0.0.2"; + src = fetchHex { + pkg = "elixir_freshbooks"; + version = "0.0.2"; + sha256 = + "a40deaaf4400c0de95b7bf4b19fc9216a063e44854113301914b7b893e8c66d4"; + }; + 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"; + }; + } + ) {}; + + elixir_freshbooks = elixir_freshbooks_0_0_2; + + elixir_ipfs_api_0_1_0 = callPackage + ( + { + buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1, ex_doc_0_10_0 + }: + buildMix { + name = "elixir_ipfs_api"; + version = "0.1.0"; + src = fetchHex { + pkg = "elixir_ipfs_api"; + version = "0.1.0"; + sha256 = + "b8b6656ce18ff070b2328436cfa3d55f08b3e0a2f98bee49d4b3cb49c144684b"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ex_doc_0_10_0 ]; + + meta = { + description = ''An elixir client library for the IPFS API''; + + }; + } + ) {}; + + elixir_ipfs_api = elixir_ipfs_api_0_1_0; + + elixir_locker_0_1_4 = callPackage + ( + { buildMix, fetchHex, locker_1_0_8 }: + buildMix { + name = "elixir_locker"; + version = "0.1.4"; + src = fetchHex { + pkg = "elixir_locker"; + version = "0.1.4"; + sha256 = + "cca190b5846f37dfaaa495981b92e34015ca0dd0a879d200be90333f3866ceb2"; + }; + beamDeps = [ locker_1_0_8 ]; + + meta = { + description = ''Elixir wrapper for the locker Erlang library.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/tsharju/elixir_locker"; + }; + } + ) {}; + + elixir_locker = elixir_locker_0_1_4; + + elixir_mbcs_0_1_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + elixir_mbcs = elixir_mbcs_0_1_2; + + elixir_mod_event_0_0_5 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + elixir_mod_event = elixir_mod_event_0_0_5; + + elixir_nsq_1_0_3 = callPackage + ( + { + buildMix, + fetchHex, + uuid_1_1_3, + socket_0_3_1, + poison_1_5_2, + httpotion_2_1_0 + }: + buildMix { + name = "elixir_nsq"; + version = "1.0.3"; + src = fetchHex { + pkg = "elixir_nsq"; + version = "1.0.3"; + sha256 = + "6d30c3754dfdd988f927b9c6ae51d3e0ec4b0d2477b99047baf7a52c96bf9494"; + }; + beamDeps = [ + uuid_1_1_3 socket_0_3_1 poison_1_5_2 httpotion_2_1_0 + ]; + + meta = { + longDescription = ''A client library for NSQ, `elixir_nsq` aims + to be complete, easy to use, and well tested. + Developed at Wistia (http://wistia.com).''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/wistia/elixir_nsq"; + }; + } + ) {}; + + elixir_nsq = elixir_nsq_1_0_3; + + elixir_radius_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + elixir_radius = elixir_radius_0_1_0; + + elixir_script_0_15_2 = callPackage + ( + { buildMix, fetchHex, estree_2_2_0 }: + buildMix { + name = "elixir_script"; + version = "0.15.2"; + src = fetchHex { + pkg = "elixir_script"; + version = "0.15.2"; + sha256 = + "daa98f9f065576450843e9f867c7c8afe38edb29345aec276c112e4786ff2f5c"; + }; + beamDeps = [ estree_2_2_0 ]; + + meta = { + description = ''ElixirScript: compiles Elixir code to + JavaScript''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bryanjos/elixirscript"; + }; + } + ) {}; + + elixir_script = elixir_script_0_15_2; + + elixir_talk_1_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "elixir_talk"; + version = "1.0.1"; + src = fetchHex { + pkg = "elixir_talk"; + version = "1.0.1"; + sha256 = + "846a7a66fbc11ed09aec93130da1fc034d28b8e5241b585ebeaaca5b38e0e0d2"; + }; + + meta = { + description = ''ElixirTalk is an Elixir client for beanstalkd. + ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jsvisa/elixir_talk"; + }; + } + ) {}; + + elixir_talk = elixir_talk_1_0_1; + + elixir_tea_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + elixir_tea = elixir_tea_1_0_0; + + elixlsx_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + elixlsx = elixlsx_0_0_2; + + elixtagram_0_2_5 = callPackage + ( + { + buildMix, fetchHex, poison_1_5_2, oauth2_0_5_0, httpoison_0_7_5 + }: + buildMix { + name = "elixtagram"; + version = "0.2.5"; + src = fetchHex { + pkg = "elixtagram"; + version = "0.2.5"; + sha256 = + "71503f2bfec0d4728449321e4e1aaae7c8ae24974d53b904327bcef5b16e6900"; + }; + beamDeps = [ poison_1_5_2 oauth2_0_5_0 httpoison_0_7_5 ]; + + meta = { + description = ''Instagram client library for Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/zensavona/elixtagram"; + }; + } + ) {}; + + elixtagram = elixtagram_0_2_5; + + elli_1_0_4 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "elli"; + version = "1.0.4"; + src = fetchHex { + pkg = "elli"; + version = "1.0.4"; + sha256 = + "87641b9c069b1372dac4e1bdda795076ea3142af78aac0d63896a38079e89e8e"; + }; + + 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"; + }; + } + ) {}; + + elli = elli_1_0_4; + + elmit_0_0_1 = callPackage + ( + { buildMix, fetchHex, httpotion_2_1_0 }: + buildMix { + name = "elmit"; + version = "0.0.1"; + src = fetchHex { + pkg = "elmit"; + version = "0.0.1"; + sha256 = + "90e5df811553733dd7505f9cc81397c3bdaf9c336eb3542c7e44f3c2012ef96e"; + }; + beamDeps = [ httpotion_2_1_0 ]; + + meta = { + description = ''Google Translate with speech synthesis in your + terminal as Hex package.''; + + }; + } + ) {}; + + elmit = elmit_0_0_1; + + email_checker_0_0_3 = callPackage + ( + { buildMix, fetchHex, socket_0_3_1 }: + buildMix { + name = "email_checker"; + version = "0.0.3"; + src = fetchHex { + pkg = "email_checker"; + version = "0.0.3"; + sha256 = + "feac6fa5cc1343b437221ace18fa8fa7251dfa777e986063e13f435d6aff990c"; + }; + beamDeps = [ socket_0_3_1 ]; + + meta = { + longDescription = ''Simple library checking the validity of an + email. Checks are performed in the following + order: - REGEX: validate the emails has a good + looking format - MX: validate the domain sever + contains MX records - SMTP: validate the SMTP + behind the MX records knows this email address + (no email sent)''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/kdisneur/email_checker"; + }; + } + ) {}; + + email_checker = email_checker_0_0_3; + + eministat_0_10_1 = callPackage + ( + { buildRebar3, 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''; + + }; + } + ) {}; + + eministat = eministat_0_10_1; + + eml_0_7_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + eml = eml_0_7_1; + + emodel_1_3_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + emodel = emodel_1_3_1; + + enotify_0_1_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "enotify"; + version = "0.1.0"; + src = fetchHex { + pkg = "enotify"; + version = "0.1.0"; + sha256 = + "8e48da763ce15bfd75cc857ddfe5011b03189d597f47bcdd8acc6fbbe8e6b6f4"; + }; + compilePorts = true; + + meta = { + description = ''Filesystem listener''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/tsloughter/enotify"; + }; + } + ) {}; + + enotify = enotify_0_1_0; + + ensq_0_1_6 = callPackage + ( + { buildRebar3, fetchHex, lager_2_1_1, jsxd_0_1_10, jsx_1_4_5 }: + buildRebar3 { + name = "ensq"; + version = "0.1.6"; + src = fetchHex { + pkg = "ensq"; + version = "0.1.6"; + sha256 = + "dd8c167eef061bb80384b34a81dc9a2079d42b254bd4ecbb0aa586937182a466"; + }; + + beamDeps = [ lager_2_1_1 jsxd_0_1_10 jsx_1_4_5 ]; + + meta = { + description = ''Erlang client for NSQ''; + license = stdenv.lib.licenses.cddl; + homepage = "https://github.com/project-fifo/ensq"; + }; + } + ) {}; + + ensq = ensq_0_1_6; + + env_conf_0_3_0 = callPackage + ( + { buildMix, fetchHex, earmark_0_1_19 }: + buildMix { + name = "env_conf"; + version = "0.3.0"; + src = fetchHex { + pkg = "env_conf"; + version = "0.3.0"; + sha256 = + "b1d9732ed635d2dea5bcd74a512e7274350361bc3de12080a03e985d7df3d900"; + }; + beamDeps = [ earmark_0_1_19 ]; + + meta = { + description = '' A simple 12-Factor configuration service for + Elixir. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/leakybucket/env_conf.git"; + }; + } + ) {}; + + env_conf = env_conf_0_3_0; + + envy_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + envy = envy_0_0_2; + + eper_0_94_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + eper = eper_0_94_0; + + epgsql_3_1_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + epgsql = epgsql_3_1_1; + + episcina_1_1_0 = callPackage + ( + { buildRebar3, 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''; + + }; + } + ) {}; + + episcina = episcina_1_1_0; + + eplugin_0_1_4 = callPackage + ( + { buildRebar3, fetchHex, lager_2_1_1 }: + buildRebar3 { + name = "eplugin"; + version = "0.1.4"; + src = fetchHex { + pkg = "eplugin"; + version = "0.1.4"; + sha256 = + "5103579323fb71e2c245fb5886c53e9ff4115282c09ecb5368b0ae293f0b20fe"; + }; + + beamDeps = [ lager_2_1_1 ]; + + meta = { + description = ''plugin provider for erlang''; + license = stdenv.lib.licenses.cddl; + homepage = "https://github.com/Licenser/eplugin"; + }; + } + ) {}; + + eplugin = eplugin_0_1_4; + + epubnub_0_1_0 = callPackage + ( + { buildRebar3, fetchHex, jsx_2_7_1, hackney_1_3_2 }: + buildRebar3 { + name = "epubnub"; + version = "0.1.0"; + src = fetchHex { + pkg = "epubnub"; + version = "0.1.0"; + sha256 = + "5a3b21ea035b1a7d89eeaf062da946fb17682a72fb9ae12d313677552f63fa69"; + }; + + beamDeps = [ jsx_2_7_1 hackney_1_3_2 ]; + + meta = { + description = ''Erlang PubNub API''; + + }; + } + ) {}; + + epubnub = epubnub_0_1_0; + + eqc_ex_1_2_4 = callPackage + ( + { buildRebar3, 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; + }; + } + ) {}; + + eqc_ex = eqc_ex_1_2_4; + + eql_0_1_2 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + eql = eql_0_1_2; + + eredis_1_0_8 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + eredis = eredis_1_0_8; + + eredis_cluster_0_5_4 = callPackage + ( + { buildRebar3, fetchHex, poolboy_1_5_1, eredis_1_0_8 }: + buildRebar3 { + name = "eredis_cluster"; + version = "0.5.4"; + src = fetchHex { + pkg = "eredis_cluster"; + version = "0.5.4"; + sha256 = + "09320fe4fb737923e254d6d7ff4da421c1515fc74be9d2d9482ee4a576367681"; + }; + + beamDeps = [ poolboy_1_5_1 eredis_1_0_8 ]; + + meta = { + description = ''An erlang wrapper for eredis library to support + cluster mode''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/adrienmo/eredis_cluster"; + }; + } + ) {}; + + eredis_cluster = eredis_cluster_0_5_4; + + erl2ex_0_0_7 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "erl2ex"; + version = "0.0.7"; + src = fetchHex { + pkg = "erl2ex"; + version = "0.0.7"; + sha256 = + "2df3a8441cb059784523f7e2da15e897cf211a6cfec942c63032a4e5798805f1"; + }; + + 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"; + }; + } + ) {}; + + erl2ex = erl2ex_0_0_7; + + erlang_localtime_1_0_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + erlang_localtime = erlang_localtime_1_0_0; + + erlang_lua_0_1_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "erlang_lua"; + version = "0.1.0"; + src = fetchHex { + pkg = "erlang_lua"; + version = "0.1.0"; + sha256 = + "4376a57f86e43ae1d687dca8b6c7c7f692b95d30091a9550636328358026e6eb"; + }; + compilePorts = true; + + meta = { + longDescription = ''Erlang-lua hex package, using Erlang`s Port + and C Node to run Lua VM as an external Node''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rtraschke/erlang-lua"; + }; + } + ) {}; + + erlang_lua = erlang_lua_0_1_0; + + erlang_term_1_5_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + erlang_term = erlang_term_1_5_1; + + erlang_version_0_2_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + erlang_version = erlang_version_0_2_0; + + erlastic_search_1_1_1 = callPackage + ( + { buildRebar3, fetchHex, jsx_2_6_2, hackney_1_1_0 }: + buildRebar3 { + name = "erlastic_search"; + version = "1.1.1"; + src = fetchHex { + pkg = "erlastic_search"; + version = "1.1.1"; + sha256 = + "ac15a64db1397b616e1308b997d5de5372a3f67bd2bbdbf32b22d635befcc55a"; + }; + + beamDeps = [ jsx_2_6_2 hackney_1_1_0 ]; + + meta = { + description = ''An Erlang app for communicating with Elastic + Search`s rest interface.''; + license = stdenv.lib.licenses.lpgl3; + homepage = "https://github.com/tsloughter/erlastic_search"; + }; + } + ) {}; + + erlastic_search = erlastic_search_1_1_1; + + erlaudio_0_2_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + erlaudio = erlaudio_0_2_3; + + erlcloud_0_13_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + erlcloud = erlcloud_0_13_0; + + erlcloud_0_9_2 = callPackage + ( + { buildRebar3, fetchHex, meck_0_8_4, lhttpc_1_3_0, jsx_2_4_0 }: + buildRebar3 { + name = "erlcloud"; + version = "0.9.2"; + src = fetchHex { + pkg = "erlcloud"; + version = "0.9.2"; + sha256 = + "739ab77c3f007b3c8466e093726fb3e62b19691d70dbff4defc4beac61e48f12"; + }; + + beamDeps = [ meck_0_8_4 lhttpc_1_3_0 jsx_2_4_0 ]; + + meta = { + description = ''Erlang cloud computing library''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/erlcloud/erlcloud"; + }; + } + ) {}; + + erldn_1_0_5 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "erldn"; + version = "1.0.5"; + src = fetchHex { + pkg = "erldn"; + version = "1.0.5"; + sha256 = + "b7fdafda24884ab52dc453a18a99ad3d31fa690770d2d50f8e5bdbc3fff0f166"; + }; + + meta = { + description = ''An edn parser for the Erlang platform.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/marianoguerra/erldn"; + }; + } + ) {}; + + erldn = erldn_1_0_5; + + erlexec_1_1_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "erlexec"; + version = "1.1.0"; + src = fetchHex { + pkg = "erlexec"; + version = "1.1.0"; + sha256 = + "772162f0f0349f89ea11b9f27401cb437ccaabf480320284a13f2259bb63cb87"; + }; + compilePorts = true; + + meta = { + description = ''OS Process Manager''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/saleyn/erlexec"; + }; + } + ) {}; + + erlexec = erlexec_1_1_0; + + erlsh_0_1_0 = callPackage + ( + { buildRebar3, 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.''; + + }; + } + ) {}; + + erlsh = erlsh_0_1_0; + + erlsom_1_2_1 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "erlsom"; + version = "1.2.1"; + src = fetchHex { + pkg = "erlsom"; + version = "1.2.1"; + sha256 = + "e8f4d1d83583df7d1db8346aa30b82a6599b93fcc4b2d9165007e02ed40e7cae"; + }; + + meta = { + description = ''erlsom XSD parser''; + + }; + } + ) {}; + + erlsom = erlsom_1_2_1; + + erltrace_0_1_4 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "erltrace"; + version = "0.1.4"; + src = fetchHex { + pkg = "erltrace"; + version = "0.1.4"; + sha256 = + "821452cb6d470cfe22cd1793c94c4e499957c72944a5d8781253aeb5b610acb0"; + }; + compilePorts = true; + + meta = { + description = ''erlang dtrace consumer.''; + license = stdenv.lib.licenses.cddl; + homepage = "https://github.com/project-fifo/erltrace"; + }; + } + ) {}; + + erltrace = erltrace_0_1_4; + + erlware_commons_0_14_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "erlware_commons"; + version = "0.14.0"; + src = fetchHex { + pkg = "erlware_commons"; + version = "0.14.0"; + sha256 = + "ec36ca48ce0d4e64a7b0e00771260257e91162816254dc2d8d3cc9f83285dafe"; + }; + + meta = { + description = ''Additional standard library for Erlang''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/erlware/erlware_commons"; + }; + } + ) {}; + + erlware_commons_0_15_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + erlware_commons_0_18_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + erlware_commons_0_19_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + erlware_commons = erlware_commons_0_19_0; + + erlydtl_0_11_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + erlydtl = erlydtl_0_11_1; + + erlydtl2_0_11_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + erlydtl2 = erlydtl2_0_11_1; + + erlzk_0_6_1 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "erlzk"; + version = "0.6.1"; + src = fetchHex { + pkg = "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; + + es_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "es"; + version = "0.0.1"; + src = fetchHex { + pkg = "es"; + version = "0.0.1"; + sha256 = + "88a8f096177d111f82e8c05b611a3ec067abecb2612f44abb9a12eff06218d48"; + }; + + meta = { + description = ''A shell. With stuff.''; + + }; + } + ) {}; + + es = es_0_0_1; + + escalus_2_6_4 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "escalus"; + version = "2.6.4"; + src = fetchHex { + pkg = "escalus"; + version = "2.6.4"; + sha256 = + "f5227c39ddbdeb1056fd69eef1c8a80364fb8b690b98d662b126bb95f4108d66"; + }; + + meta = { + description = ''Escalus is an Erlang XMPP client library''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/esl/escalus"; + }; + } + ) {}; + + escalus = escalus_2_6_4; + + esel_0_1_2 = callPackage + ( + { buildRebar3, 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; + }; + } + ) {}; + + esel = esel_0_1_2; + + esip_1_0_2 = callPackage + ( + { + buildRebar3, fetchHex, stun_1_0_1, p1_utils_1_0_3, fast_tls_1_0_1 + }: + buildRebar3 { + name = "esip"; + version = "1.0.2"; + src = fetchHex { + pkg = "esip"; + version = "1.0.2"; + sha256 = + "659b684d2573a52dfe411f20a36b704c41183b4c8206261229bfad12404d1cf7"; + }; + compilePorts = true; + beamDeps = [ stun_1_0_1 p1_utils_1_0_3 fast_tls_1_0_1 ]; + + meta = { + description = ''ProcessOne SIP server component in Erlang''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/processone/esip"; + }; + } + ) {}; + + esip = esip_1_0_2; + + espec_0_8_11 = callPackage + ( + { buildMix, fetchHex, meck_0_8_4 }: + buildMix { + name = "espec"; + version = "0.8.11"; + src = fetchHex { + pkg = "espec"; + version = "0.8.11"; + sha256 = + "a30b084605a8a4eaf41004e9c25036eb493d98cbc2118f18a0e648011a5c3bd1"; + }; + beamDeps = [ meck_0_8_4 ]; + + meta = { + description = ''BDD test framework for Elixir inspired by + RSpec.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/antonmi/espec"; + }; + } + ) {}; + + espec = espec_0_8_11; + + espec_phoenix_0_2_0 = callPackage + ( + { + buildMix, fetchHex, phoenix_1_1_4, floki_0_7_1, espec_0_8_11 + }: + buildMix { + name = "espec_phoenix"; + version = "0.2.0"; + src = fetchHex { + pkg = "espec_phoenix"; + version = "0.2.0"; + sha256 = + "069e7df74370905cdce3c87144e707174c13e13c6541ecc4ac114465292bf08e"; + }; + beamDeps = [ phoenix_1_1_4 floki_0_7_1 espec_0_8_11 ]; + + meta = { + description = ''ESpec for Phoenix web framework.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/antonmi/espec_phoenix"; + }; + } + ) {}; + + espec_phoenix = espec_phoenix_0_2_0; + + esqlite_0_2_2 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "esqlite"; + version = "0.2.2"; + src = fetchHex { + pkg = "esqlite"; + version = "0.2.2"; + sha256 = + "5f15f8014baa9d31ee83817afe9164b3ecd76f77b2de7515f2cca2ca75b642e0"; + }; + compilePorts = true; + + meta = { + description = ''A Sqlite3 NIF''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/mmzeeman/esqlite"; + }; + } + ) {}; + + esqlite = esqlite_0_2_2; + + estree_2_2_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "estree"; + version = "2.2.0"; + src = fetchHex { + pkg = "estree"; + version = "2.2.0"; + sha256 = + "0adb199b79b31f05f2f01ab87f099ea84684ffffb1571fb33cde05500f9367f2"; + }; + + 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"; + }; + } + ) {}; + + estree = estree_2_2_0; + + esync_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + esync = esync_0_0_1; + + etcd_0_0_2 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_1, exjsx_3_2_0 }: + buildMix { + name = "etcd"; + version = "0.0.2"; + src = fetchHex { + pkg = "etcd"; + version = "0.0.2"; + sha256 = + "c1b559bc37812b9ab488f90f322dc0b826c94ac9809d9044b42b4fb420710848"; + }; + beamDeps = [ httpoison_0_8_1 exjsx_3_2_0 ]; + + meta = { + description = ''Etcd APIv2 Client for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bearice/elixir-etcd"; + }; + } + ) {}; + + etcd = etcd_0_0_2; + + ether_0_0_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + ether = ether_0_0_1; + + ets_map_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ets_map = ets_map_0_0_1; + + etude_0_3_7 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + etude_0_4_0 = callPackage + ( + { + buildMix, fetchHex, rebind_0_1_3, parse_trans_2_9_0, lineo_0_1_0 + }: + buildMix { + name = "etude"; + version = "0.4.0"; + src = fetchHex { + pkg = "etude"; + version = "0.4.0"; + sha256 = + "602db062916cfe50b82257f1fdce039b08584d7ff285183c3a51060f197b4f01"; + }; + beamDeps = [ rebind_0_1_3 parse_trans_2_9_0 lineo_0_1_0 ]; + + meta = { + description = ''parallel computation coordination utilities for + erlang/elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/camshaft/etude"; + }; + } + ) {}; + + etude = etude_0_4_0; + + euler_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "euler"; + version = "0.0.1"; + src = fetchHex { + pkg = "euler"; + version = "0.0.1"; + sha256 = + "ab12770dd81fbb20524c751f71a31b8cc16553404665a336212d20bf351eb0fc"; + }; + + meta = { + longDescription = ''euler is a library that provides math + functions. ## Features * Working with integers: + * Greatest common divisor of two numbers (gcd) + ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/magicienap/euler"; + }; + } + ) {}; + + euler = euler_0_0_1; + + eunit_formatters_0_3_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + eunit_formatters = eunit_formatters_0_3_1; + + event_source_encoder_0_0_3 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "event_source_encoder"; + version = "0.0.3"; + src = fetchHex { + pkg = "event_source_encoder"; + version = "0.0.3"; + sha256 = + "b930b7a8cf52e32913ba9bd333472253e2c100c91216c54dde043e5106d601df"; + }; + + meta = { + longDescription = ''EventSourceEncoder is a Elixir library to + encode data into EventSource compliant data. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/chatgris/event_source_encoder"; + }; + } + ) {}; + + event_source_encoder = event_source_encoder_0_0_3; + + everex_0_1_1 = callPackage + ( + { + buildMix, + fetchHex, + plug_0_11_3, + oauther_1_0_2, + httpoison_0_7_5, + cowboy_1_0_4 + }: + buildMix { + name = "everex"; + version = "0.1.1"; + src = fetchHex { + pkg = "everex"; + version = "0.1.1"; + sha256 = + "3a85fc8d749b58c5fe87dc224cb7066cf1a45ac06d87c3661cd7a555076a901e"; + }; + beamDeps = [ + plug_0_11_3 oauther_1_0_2 httpoison_0_7_5 cowboy_1_0_4 + ]; + + meta = { + longDescription = ''Evernote API client for Elixir NOTE: Everex + is UNDER DEVELOPMENT, and is NOT ready for + production use. Feedback and contributions (via + pull requests) are very welcome, of course! + UPDATE: There is now an example showing how to + get access using the OAuth authentication + process. See `examples/oauth.exs`. ''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/jwarlander/everex"; + }; + } + ) {}; + + everex = everex_0_1_1; + + everyoneapi_0_0_1 = callPackage + ( + { buildMix, fetchHex, poison_1_3_1, httpoison_0_7_5 }: + buildMix { + name = "everyoneapi"; + version = "0.0.1"; + src = fetchHex { + pkg = "everyoneapi"; + version = "0.0.1"; + sha256 = + "8214fa434a10716f252bcbcb5660faddbc20909d1058d1b491c95132eb4b3182"; + }; + beamDeps = [ poison_1_3_1 httpoison_0_7_5 ]; + + meta = { + description = ''API Client for EveryoneAPI.com.''; + license = stdenv.lib.licenses.mit; + homepage = "http://github.com/knewter/everyoneapi"; + }; + } + ) {}; + + everyoneapi = everyoneapi_0_0_1; + + ewebmachine_2_0_12 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1, 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_1 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"; + }; + } + ) {}; + + ewebmachine = ewebmachine_2_0_12; + + ex2ms_1_3_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "ex2ms"; + version = "1.3.0"; + src = fetchHex { + pkg = "ex2ms"; + version = "1.3.0"; + sha256 = + "ff2bfb0adb93830705cd73f2860891fd44a8f22cc2fdaf9f23bfcf2e4bdcfa79"; + }; + + meta = { + description = ''Translates Elixir functions to match + specifications for use with `ets`.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/ericmj/ex2ms"; + }; + } + ) {}; + + ex2ms_1_4_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ex2ms = ex2ms_1_4_0; + + ex_abnf_0_2_7 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ex_abnf = ex_abnf_0_2_7; + + ex_aerospike_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "ex_aerospike"; + version = "0.0.1"; + src = fetchHex { + pkg = "ex_aerospike"; + version = "0.0.1"; + sha256 = + "3420ba4b94c25aca08106d58ce4bdc941767e588bf8092747a611e38a7b5e03f"; + }; + meta = { }; + } + ) {}; + + ex_aerospike = ex_aerospike_0_0_1; + + ex_aws_0_4_17 = callPackage + ( + { + buildMix, + fetchHex, + sweet_xml_0_6_1, + poison_1_5_2, + jsx_2_8_0, + httpotion_2_2_0, + httpoison_0_8_1 + }: + buildMix { + name = "ex_aws"; + version = "0.4.17"; + src = fetchHex { + pkg = "ex_aws"; + version = "0.4.17"; + sha256 = + "e0b28688f9409eb3132efc0d01e02854dd1a22fa7df8940ef88a75ba1448a01c"; + }; + beamDeps = [ + sweet_xml_0_6_1 + poison_1_5_2 + jsx_2_8_0 + httpotion_2_2_0 + httpoison_0_8_1 + ]; + + meta = { + description = ''AWS client. Currently supports Dynamo, Kinesis, + Lambda, S3''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/CargoSense/ex_aws"; + }; + } + ) {}; + + ex_aws = ex_aws_0_4_17; + + ex_bitcask_0_1_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "ex_bitcask"; + version = "0.1.0"; + src = fetchHex { + pkg = "ex_bitcask"; + version = "0.1.0"; + sha256 = + "dc771229aae3c07c31a5523303f0c4dbe3c700d5025a09dfcca9cc357222c463"; + }; + + meta = { + longDescription = ''Elixir wrapper of Basho`s Bitcask Key/Value + store. Bitcask as a Log-Structured Hash Table + for Fast Key/Value Data. ''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/JonGretar/ExBitcask"; + }; + } + ) {}; + + ex_bitcask = ex_bitcask_0_1_0; + + ex_brace_expansion_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ex_brace_expansion = ex_brace_expansion_0_0_2; + + ex_chimp_0_0_1 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "ex_chimp"; + version = "0.0.1"; + src = fetchHex { + pkg = "ex_chimp"; + version = "0.0.1"; + sha256 = + "1a4e97e2a4b7bf7401660acd61d7e35b9c758638c305324971eddc5bd1bb0bee"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''Basic/minimal Mailchimp API client.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/twined/ex_chimp"; + }; + } + ) {}; + + ex_chimp = ex_chimp_0_0_1; + + ex_clacks_0_1_1 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1 }: + buildMix { + name = "ex_clacks"; + version = "0.1.1"; + src = fetchHex { + pkg = "ex_clacks"; + version = "0.1.1"; + sha256 = + "524f966b03b1a1ac4ab3f6beeef6ce5030cf3b16927c466d42a8b08c5355b231"; + }; + beamDeps = [ plug_1_1_1 ]; + + meta = { + description = ''A Plug that pays homage to Terry Pratchett''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/polymetis/ex_clacks"; + }; + } + ) {}; + + ex_clacks = ex_clacks_0_1_1; + + ex_closeio_0_0_7 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "ex_closeio"; + version = "0.0.7"; + src = fetchHex { + pkg = "ex_closeio"; + version = "0.0.7"; + sha256 = + "8873b4c80e610ebed7a43245aaeb182a56ad6709ca318cf4ee0bf9870fd4b0b4"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''Close.io client library for Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/taylorbrooks/ex_closeio"; + }; + } + ) {}; + + ex_closeio = ex_closeio_0_0_7; + + ex_cloudinary_0_1_1 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "ex_cloudinary"; + version = "0.1.1"; + src = fetchHex { + pkg = "ex_cloudinary"; + version = "0.1.1"; + sha256 = + "1473ab409152d7d61062224ae5402c6ec677c10da63e29b1332c6fd35cf91381"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''A wrapper around the HTTPoison.Base module for + Cloudinary.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/sschneider1207/ExCloudinary"; + }; + } + ) {}; + + ex_cloudinary = ex_cloudinary_0_1_1; + + ex_conf_0_1_2 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "ex_conf"; + version = "0.1.2"; + src = fetchHex { + pkg = "ex_conf"; + version = "0.1.2"; + sha256 = + "0156e2b0d35a2ea9eeebe55e301035bfeb2187412a07d573cc1bc4a163b85de5"; + }; + + meta = { + description = ''Simple Elixir Configuration Management ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/phoenixframework/ex_conf"; + }; + } + ) {}; + + ex_conf_0_1_3 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "ex_conf"; + version = "0.1.3"; + src = fetchHex { + pkg = "ex_conf"; + version = "0.1.3"; + sha256 = + "140dfae39127354f6efa6c295ca5407a20cf2802be199ecdc77aa38e2915ca42"; + }; + + meta = { + description = ''Simple Elixir Configuration Management ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/phoenixframework/ex_conf"; + }; + } + ) {}; + + ex_conf = ex_conf_0_1_3; + + ex_crypto_0_0_1 = callPackage + ( + { buildMix, fetchHex, timex_1_0_1, poison_2_1_0, pipe_0_0_2 }: + buildMix { + name = "ex_crypto"; + version = "0.0.1"; + src = fetchHex { + pkg = "ex_crypto"; + version = "0.0.1"; + sha256 = + "f9c47326435e52154a6db97359356a44c1fe21a0d26fda24a46367ba33ccb85f"; + }; + beamDeps = [ timex_1_0_1 poison_2_1_0 pipe_0_0_2 ]; + + meta = { + longDescription = ''A wrapper around the Erlang Crypto module + with sensible defaults for common tasks.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ntrepid8/ex_crypto"; + }; + } + ) {}; + + ex_crypto = ex_crypto_0_0_1; + + ex_csv_0_1_4 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ex_csv = ex_csv_0_1_4; + + ex_doc_0_10_0 = callPackage + ( + { buildMix, fetchHex, earmark_0_1_14 }: + buildMix { + name = "ex_doc"; + version = "0.10.0"; + src = fetchHex { + pkg = "ex_doc"; + version = "0.10.0"; + sha256 = + "3d9f15777aa3fb62700d5984eb09ceeb6c1574d61be0f70801e3390e36942b35"; + }; + beamDeps = [ earmark_0_1_14 ]; + + meta = { + description = ''ExDoc is a documentation generation tool for + Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/elixir-lang/ex_doc"; + }; + } + ) {}; + + ex_doc_0_11_4 = callPackage + ( + { buildMix, fetchHex, earmark_0_1_14 }: + buildMix { + name = "ex_doc"; + version = "0.11.4"; + src = fetchHex { + pkg = "ex_doc"; + version = "0.11.4"; + sha256 = + "639e97b24c1c6c172f557163b830673646983417de9ac0da2c25c7063deed293"; + }; + beamDeps = [ earmark_0_1_14 ]; + + meta = { + description = ''ExDoc is a documentation generation tool for + Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/elixir-lang/ex_doc"; + }; + } + ) {}; + + ex_doc = ex_doc_0_11_4; + + ex_doc_0_6_2 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "ex_doc"; + version = "0.6.2"; + src = fetchHex { + pkg = "ex_doc"; + version = "0.6.2"; + sha256 = + "fdd21c651fbe96f39697c3acd9ee6b849348cafb4000b92a130e2df8a0a3e2b6"; + }; + + meta = { + description = ''ExDoc is a documentation generation tool for + Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/elixir-lang/ex_doc"; + }; + } + ) {}; + + ex_doc_dash_0_3_0 = callPackage + ( + { buildMix, fetchHex, ex_doc_0_11_4, earmark_0_1_14 }: + 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_14 ]; + + 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"; + }; + } + ) {}; + + ex_doc_dash = ex_doc_dash_0_3_0; + + ex_doc_epub_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ex_doc_epub = ex_doc_epub_0_0_2; + + ex_dockerapi_0_0_1 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_7_5 }: + buildMix { + name = "ex_dockerapi"; + version = "0.0.1"; + src = fetchHex { + pkg = "ex_dockerapi"; + version = "0.0.1"; + sha256 = + "337481d27cb65f7d607e28f0bc129f2197c1b04fdc357446f5a07f2296b9604b"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_7_5 ]; + + meta = { + description = ''Docker API client.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/JonGretar/DockerAPI.ex"; + }; + } + ) {}; + + ex_dockerapi = ex_dockerapi_0_0_1; + + ex_edn_0_1_2 = callPackage + ( + { buildMix, fetchHex, timex_0_13_5, array_1_0_1 }: + buildMix { + name = "ex_edn"; + version = "0.1.2"; + src = fetchHex { + pkg = "ex_edn"; + version = "0.1.2"; + sha256 = + "9568e79cb96bd61f26389b96ab1ac4fee57762fba6c166ddc745c521ccf2c5ca"; + }; + beamDeps = [ timex_0_13_5 array_1_0_1 ]; + + meta = { + longDescription = ''[edn](https://github.com/edn-format/edn) + (extensible data notation) encoder/decoder + implemented in Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/jfacorro/ExEdn/"; + }; + } + ) {}; + + ex_edn = ex_edn_0_1_2; + + ex_fabricators_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ex_fabricators = ex_fabricators_0_1_0; + + ex_hl7_0_1_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ex_hl7 = ex_hl7_0_1_3; + + ex_iss_1_0_0 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "ex_iss"; + version = "1.0.0"; + src = fetchHex { + pkg = "ex_iss"; + version = "1.0.0"; + sha256 = + "8b2b2eebbd75593e814e712555c7f69138864317cf2f0093a82ca305138baa83"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + longDescription = ''This package is for interfacing with the Open + Notify API to information such as the ISS`s + current location, crew, and when it will pass + over a location.''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/cryptobird/ex_iss"; + }; + } + ) {}; + + ex_iss = ex_iss_1_0_0; + + ex_json_schema_0_3_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ex_json_schema = ex_json_schema_0_3_1; + + ex_link_header_0_0_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ex_link_header = ex_link_header_0_0_3; + + ex_machina_0_6_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ex_machina = ex_machina_0_6_1; + + ex_mark2pdf_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ex_mark2pdf = ex_mark2pdf_0_1_0; + + ex_marshal_0_0_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ex_marshal = ex_marshal_0_0_3; + + ex_minimatch_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ex_minimatch = ex_minimatch_0_0_1; + + ex_modbus_0_0_2 = callPackage + ( + { buildMix, fetchHex, ex_doc_0_11_4, earmark_0_1_19 }: + buildMix { + name = "ex_modbus"; + version = "0.0.2"; + src = fetchHex { + pkg = "ex_modbus"; + version = "0.0.2"; + sha256 = + "8930d2bdd867ebc649f285689723499f39af181ee84cb4e7856eaa3f9cc21d30"; + }; + beamDeps = [ ex_doc_0_11_4 earmark_0_1_19 ]; + + meta = { + description = ''An Elixir ModbusTCP client implementation.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/hirschenberger/ex_modbus"; + }; + } + ) {}; + + ex_modbus = ex_modbus_0_0_2; + + ex_omegle_0_1_1 = callPackage + ( + { buildMix, fetchHex, jsex_2_0_0, httpoison_0_8_1 }: + buildMix { + name = "ex_omegle"; + version = "0.1.1"; + src = fetchHex { + pkg = "ex_omegle"; + version = "0.1.1"; + sha256 = + "8166d1125a2670f55fce2030367d9da381e577ad122dcf1d03784e536c78cc65"; + }; + beamDeps = [ jsex_2_0_0 httpoison_0_8_1 ]; + + meta = { + description = ''A minimal Omegle chat client library for + Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/xtagon/ex_omegle"; + }; + } + ) {}; + + ex_omegle = ex_omegle_0_1_1; + + ex_orient_1_0_2 = callPackage + ( + { + buildMix, fetchHex, poolboy_1_2_1, poison_1_0_3, marco_polo_0_2_1 + }: + buildMix { + name = "ex_orient"; + version = "1.0.2"; + src = fetchHex { + pkg = "ex_orient"; + version = "1.0.2"; + sha256 = + "36296ba45e6d321c8c023ab110a1c80bac9e48afe0c6df00aa44223870d74796"; + }; + beamDeps = [ poolboy_1_2_1 poison_1_0_3 marco_polo_0_2_1 ]; + + meta = { + longDescription = ''OrientDB query builder that provides nice + syntax and connection pooling. Uses MarcoPolo + under the hood to run commands.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Remesh/ex_orient/"; + }; + } + ) {}; + + ex_orient = ex_orient_1_0_2; + + ex_parametarized_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ex_parametarized = ex_parametarized_1_0_0; + + ex_parameterized_1_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ex_parameterized = ex_parameterized_1_0_2; + + ex_parsec_0_2_1 = callPackage + ( + { buildMix, fetchHex, monad_1_0_5 }: + buildMix { + name = "ex_parsec"; + version = "0.2.1"; + src = fetchHex { + pkg = "ex_parsec"; + version = "0.2.1"; + sha256 = + "1564d820e0b8b265a1525454aa9914edc15b6165ae74ffa31008686cbbad67da"; + }; + beamDeps = [ monad_1_0_5 ]; + + meta = { + description = ''A parser combinator library inspired by + Parsec.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/alexrp/ex_parsec"; + }; + } + ) {}; + + ex_parsec = ex_parsec_0_2_1; + + ex_pool_0_1_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ex_pool = ex_pool_0_1_1; + + ex_rated_1_2_1 = callPackage + ( + { buildMix, fetchHex, ex2ms_1_3_0 }: + buildMix { + name = "ex_rated"; + version = "1.2.1"; + src = fetchHex { + pkg = "ex_rated"; + version = "1.2.1"; + sha256 = + "868282cdf5b8a6698382182411ec46965204a0fbe83e65368004e944a5c608ac"; + }; + beamDeps = [ ex2ms_1_3_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"; + }; + } + ) {}; + + ex_rated = ex_rated_1_2_1; + + ex_rfc3966_0_2_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ex_rfc3966 = ex_rfc3966_0_2_3; + + ex_rfc3986_0_2_6 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ex_rfc3986 = ex_rfc3986_0_2_6; + + ex_spec_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ex_spec = ex_spec_1_0_0; + + ex_statsd_0_5_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ex_statsd = ex_statsd_0_5_3; + + ex_sync_0_0_1 = callPackage + ( + { buildMix, fetchHex, connection_1_0_2 }: + buildMix { + name = "ex_sync"; + version = "0.0.1"; + src = fetchHex { + pkg = "ex_sync"; + version = "0.0.1"; + sha256 = + "82261cf62a567b8eb0eba35dfbf0d9b546110825e8c64bb4ebc2ac8e37458499"; + }; + 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"; + }; + } + ) {}; + + ex_sync = ex_sync_0_0_1; + + ex_test_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "ex_test"; + version = "0.0.1"; + src = fetchHex { + pkg = "ex_test"; + version = "0.0.1"; + sha256 = + "c283542766be3f9044068a6a91c22a8270987334151db7bd10f12c8db1ebfbe3"; + }; + + meta = { + description = ''Wrapper around ExUnit to support BBD (rspec) like + syntax''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mcb/ex_test"; + }; + } + ) {}; + + ex_test = ex_test_0_0_1; + + ex_twilio_0_1_3 = callPackage + ( + { + buildMix, fetchHex, poison_1_5_2, inflex_1_0_0, httpotion_2_1_0 + }: + buildMix { + name = "ex_twilio"; + version = "0.1.3"; + src = fetchHex { + pkg = "ex_twilio"; + version = "0.1.3"; + sha256 = + "50b949beed606a3e5dceb63c07db7f79cb0806901ea23bc109a9969429d8a2bf"; + }; + beamDeps = [ poison_1_5_2 inflex_1_0_0 httpotion_2_1_0 ]; + + meta = { + description = ''Twilio API library for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/danielberkompas/ex_twilio"; + }; + } + ) {}; + + ex_twilio = ex_twilio_0_1_3; + + ex_twiml_2_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ex_twiml = ex_twiml_2_1_0; + + ex_unit_emacs_0_1_2 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "ex_unit_emacs"; + version = "0.1.2"; + src = fetchHex { + pkg = "ex_unit_emacs"; + version = "0.1.2"; + sha256 = + "f22a3c987b39b2ebedd9652a2fab07d7efd43baf376d9854398095bd220bd462"; + }; + + meta = { + description = ''Emacs integration for ExUnit''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bruce/ex_unit_emacs"; + }; + } + ) {}; + + ex_unit_emacs = ex_unit_emacs_0_1_2; + + ex_unit_fixtures_0_3_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ex_unit_fixtures = ex_unit_fixtures_0_3_1; + + ex_vmstats_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ex_vmstats = ex_vmstats_0_0_1; + + exactor_2_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exactor = exactor_2_2_0; + + example_files_0_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + example_files = example_files_0_2_0; + + exauth_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "exauth"; + version = "0.0.1"; + src = fetchHex { + pkg = "exauth"; + version = "0.0.1"; + sha256 = + "40a6bbea6f6b2d524cc4a4107aa9a6a5dc725171968ce8b4aa43599f8835d3cc"; + }; + + meta = { + description = ''Wrapper for erlang-oauth''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mschae/exauth"; + }; + } + ) {}; + + exauth = exauth_0_0_1; + + exbouncer_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exbouncer = exbouncer_0_0_1; + + excaliper_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + excaliper = excaliper_0_0_1; + + excellent_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + excellent = excellent_0_0_1; + + excheck_0_3_2 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "excheck"; + version = "0.3.2"; + src = fetchHex { + pkg = "excheck"; + version = "0.3.2"; + sha256 = + "138cf65d5ca716b94ff3368e6f089c855e59d95e503612399a231e68fc855484"; + }; + + meta = { + description = ''Property-based testing library for Elixir + (QuickCheck style).''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/parroty/excheck"; + }; + } + ) {}; + + excheck = excheck_0_3_2; + + excoap_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + excoap = excoap_0_0_1; + + exconstructor_0_9_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "exconstructor"; + version = "0.9.0"; + src = fetchHex { + pkg = "exconstructor"; + version = "0.9.0"; + sha256 = + "14af965ba0370d7808e16f8b2781b8a5ea3e42cf6c34012efe75e60b56b2dbbc"; + }; + + 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"; + }; + } + ) {}; + + exconstructor = exconstructor_0_9_0; + + excountries_0_0_3 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_7_5 }: + buildMix { + name = "excountries"; + version = "0.0.3"; + src = fetchHex { + pkg = "excountries"; + version = "0.0.3"; + sha256 = + "ec0bbb4147b54817e7d17a7ed91e1b88046769a26020c591ed5fde336b4fb8d3"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_7_5 ]; + + meta = { + description = ''Elixir wrapper for REST Countries API + (http://restcountries.eu/)''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/fteem/excountries"; + }; + } + ) {}; + + excountries = excountries_0_0_3; + + excoveralls_0_5_1 = callPackage + ( + { buildMix, fetchHex, hackney_1_4_8, exjsx_3_2_0 }: + buildMix { + name = "excoveralls"; + version = "0.5.1"; + src = fetchHex { + pkg = "excoveralls"; + version = "0.5.1"; + sha256 = + "26c8bb6dadc8436c1e0155f50327e90c91d6efab88468c09ac10f12be7070324"; + }; + beamDeps = [ hackney_1_4_8 exjsx_3_2_0 ]; + + meta = { + description = ''Coverage report tool for Elixir with coveralls.io + integration.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/parroty/excoveralls"; + }; + } + ) {}; + + excoveralls = excoveralls_0_5_1; + + exdatauri_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exdatauri = exdatauri_0_1_0; + + exddb_0_1_3 = callPackage + ( + { buildMix, fetchHex, erlcloud_0_9_2 }: + buildMix { + name = "exddb"; + version = "0.1.3"; + src = fetchHex { + pkg = "exddb"; + version = "0.1.3"; + sha256 = + "e57bd285110585476a457a843fdcff3cce6923c9472b6bec95ac9bf986dd27e4"; + }; + beamDeps = [ erlcloud_0_9_2 ]; + + meta = { + description = ''Simple library for working with data in + DynamoDB.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/muhmi/exddb"; + }; + } + ) {}; + + exddb = exddb_0_1_3; + + exdesk_0_2_0 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "exdesk"; + version = "0.2.0"; + src = fetchHex { + pkg = "exdesk"; + version = "0.2.0"; + sha256 = + "0c1e02bb4aef9075ff4affb3354c0e318dc3be1817faae8b450ef590c7d67688"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''Desk.com client library for elixir.''; + + homepage = "https://github.com/deadkarma/exdesk"; + }; + } + ) {}; + + exdesk = exdesk_0_2_0; + + exdisque_0_0_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + exdisque = exdisque_0_0_1; + + exdjango_0_3_0 = callPackage + ( + { + buildMix, + fetchHex, + redix_0_3_4, + poolboy_1_5_1, + poison_1_0_3, + plug_1_1_1, + comeonin_2_1_1 + }: + buildMix { + name = "exdjango"; + version = "0.3.0"; + src = fetchHex { + pkg = "exdjango"; + version = "0.3.0"; + sha256 = + "62cf5e5870b28b4cdf25b0056897bb92ba3ed7b92d87c8083ebf820c35213ef6"; + }; + beamDeps = [ + redix_0_3_4 + poolboy_1_5_1 + poison_1_0_3 + plug_1_1_1 + comeonin_2_1_1 + ]; + + meta = { + description = ''An elixir library for working with django''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/nicksanders/exdjango"; + }; + } + ) {}; + + exdjango = exdjango_0_3_0; + + exdm_0_0_4 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exdm = exdm_0_0_4; + + exdn_2_1_2 = callPackage + ( + { buildMix, fetchHex, erldn_1_0_5, calendar_0_12_4 }: + buildMix { + name = "exdn"; + version = "2.1.2"; + src = fetchHex { + pkg = "exdn"; + version = "2.1.2"; + sha256 = + "a4414d397ccf0c86413ad18d307879f5c6c19183b430276cfb31a026dda1350c"; + }; + beamDeps = [ erldn_1_0_5 calendar_0_12_4 ]; + + meta = { + longDescription = ''a two-way translator between Elixir data + structures and strings of data following the edn + specification.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/psfblair/exdn"; + }; + } + ) {}; + + exdn = exdn_2_1_2; + + exdweet_0_0_1 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_7_5 }: + buildMix { + name = "exdweet"; + version = "0.0.1"; + src = fetchHex { + pkg = "exdweet"; + version = "0.0.1"; + sha256 = + "2b263d5d73c7af5bd824a02b56df671a609698a96ea78cb0660dbd753118f376"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_7_5 ]; + + meta = { + description = ''Elixir/Erlang Client for Dweet''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/amit-saxena/exdweet"; + }; + } + ) {}; + + exdweet = exdweet_0_0_1; + + exec_1_0_1 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "exec"; + version = "1.0.1"; + src = fetchHex { + pkg = "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; + + execjs_1_1_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + execjs = execjs_1_1_3; + + exelli_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exelli = exelli_0_1_0; + + exeque_0_1_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "exeque"; + version = "0.1.0"; + src = fetchHex { + pkg = "exeque"; + version = "0.1.0"; + sha256 = + "d860208c3a651c97cacd95e842e4dceffc84f518026c5737e93b46444f000dfa"; + }; + + meta = { + longDescription = ''Exeque allows you to queue up a list of + functions and specify how many workers should be + used to run those functions. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/duff/exeque"; + }; + } + ) {}; + + exeque = exeque_0_1_0; + + exexif_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exexif = exexif_0_0_1; + + exfavicon_0_3_2 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_1, floki_0_7_1 }: + buildMix { + name = "exfavicon"; + version = "0.3.2"; + src = fetchHex { + pkg = "exfavicon"; + version = "0.3.2"; + sha256 = + "95503035ea2b6768c7d3fb8af9769830b9933b2579c7fdcfdd6b775e830213c2"; + }; + beamDeps = [ httpoison_0_8_1 floki_0_7_1 ]; + + meta = { + description = ''A exfavicon to detect a site`s favicon.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ikeikeikeike/exfavicon"; + }; + } + ) {}; + + exfavicon = exfavicon_0_3_2; + + exfile_0_1_2 = callPackage + ( + { + buildMix, + fetchHex, + plug_1_0_3, + phoenix_html_2_5_0, + ecto_2_0_0_beta_0 + }: + buildMix { + name = "exfile"; + version = "0.1.2"; + src = fetchHex { + pkg = "exfile"; + version = "0.1.2"; + sha256 = + "bb0e2e1ef86017b3d6cbf6d6818abea153f194a50cc84f359146a348bcc61664"; + }; + beamDeps = [ plug_1_0_3 phoenix_html_2_5_0 ecto_2_0_0_beta_0 ]; + + meta = { + longDescription = ''File upload handling in Elixir and Plug. + Supports pluggable processors and storage + backends.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/keichan34/exfile"; + }; + } + ) {}; + + exfile = exfile_0_1_2; + + exfile_b2_0_1_0 = callPackage + ( + { + buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1, exfile_0_1_2 + }: + buildMix { + name = "exfile_b2"; + version = "0.1.0"; + src = fetchHex { + pkg = "exfile_b2"; + version = "0.1.0"; + sha256 = + "62a58a3347387b00fdf666984b02b6b0c28fda0b60395eea08de3c7a21af61f5"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 exfile_0_1_2 ]; + + meta = { + description = ''A Backblaze B2 storage backend adapter for + Exfile.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/keichan34/exfile-b2"; + }; + } + ) {}; + + exfile_b2 = exfile_b2_0_1_0; + + exfile_imagemagick_0_1_0 = callPackage + ( + { buildMix, fetchHex, exfile_0_1_2 }: + buildMix { + name = "exfile_imagemagick"; + version = "0.1.0"; + src = fetchHex { + pkg = "exfile_imagemagick"; + version = "0.1.0"; + sha256 = + "ab290f8a7e43678dc2289cf38558562cc433c59d1ddf8859525e22f5e4033c49"; + }; + beamDeps = [ exfile_0_1_2 ]; + + meta = { + description = ''An ImageMagick file processor suite for + Exfile.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/keichan34/exfile-imagemagick"; + }; + } + ) {}; + + exfile_imagemagick = exfile_imagemagick_0_1_0; + + exfile_memory_0_1_0 = callPackage + ( + { buildMix, fetchHex, exfile_0_1_2 }: + buildMix { + name = "exfile_memory"; + version = "0.1.0"; + src = fetchHex { + pkg = "exfile_memory"; + version = "0.1.0"; + sha256 = + "66330c408a73094d115227d0e16b936229721e16703197559a828bfb7795f9d7"; + }; + beamDeps = [ exfile_0_1_2 ]; + + meta = { + description = ''In-memory (ets) storage backend for Exfile.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/keichan34/exfile-memory"; + }; + } + ) {}; + + exfile_memory = exfile_memory_0_1_0; + + exfirebase_0_4_0 = callPackage + ( + { buildMix, fetchHex, httpotion_2_2_0, 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_0 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"; + }; + } + ) {}; + + exfirebase = exfirebase_0_4_0; + + exfoaas_0_0_1 = callPackage + ( + { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_1 }: + buildMix { + name = "exfoaas"; + version = "0.0.1"; + src = fetchHex { + pkg = "exfoaas"; + version = "0.0.1"; + sha256 = + "ccfd3da421505d131a126d05d0def3ca99cdae6fec397956e4a5f1ee2bfae256"; + }; + beamDeps = [ poison_2_1_0 httpoison_0_8_1 ]; + + meta = { + description = ''brings the utility of FOAAS to elixir.''; + license = stdenv.lib.licenses.wtfpl; + homepage = "https://github.com/cryptobird/ExFOAAS.git"; + }; + } + ) {}; + + exfoaas = exfoaas_0_0_1; + + exfsm_0_0_3 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "exfsm"; + version = "0.0.3"; + src = fetchHex { + pkg = "exfsm"; + version = "0.0.3"; + sha256 = + "2da7b2b25f9603fc3142da3090abe85425f9852b89c230316fb6d29691ede6eb"; + }; + + 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"; + }; + } + ) {}; + + exfsm = exfsm_0_0_3; + + exfswatch_0_1_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exfswatch = exfswatch_0_1_1; + + exfuck_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exfuck = exfuck_0_1_0; + + exgenius_0_0_5 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_1, exjsx_3_2_0 }: + buildMix { + name = "exgenius"; + version = "0.0.5"; + src = fetchHex { + pkg = "exgenius"; + version = "0.0.5"; + sha256 = + "f0f4463ac9ad79a102a1bf0ded91d77ed87ce262da6045990be51450ef240fd5"; + }; + beamDeps = [ httpoison_0_8_1 exjsx_3_2_0 ]; + + meta = { + longDescription = '' Elixir library for the (undocumented) Rap + Genius (and also Rock, Tech, Pop, Country, etc) + API ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jeffweiss/exgenius"; + }; + } + ) {}; + + exgenius = exgenius_0_0_5; + + exgpg_0_0_3 = callPackage + ( + { buildMix, fetchHex, uuid_0_1_5, porcelain_2_0_1 }: + buildMix { + name = "exgpg"; + version = "0.0.3"; + src = fetchHex { + pkg = "exgpg"; + version = "0.0.3"; + sha256 = + "13499da2a59567f87f5293cc874ab1256e88089784645d997406d8f95978319a"; + }; + beamDeps = [ uuid_0_1_5 porcelain_2_0_1 ]; + + meta = { }; + } + ) {}; + + exgpg = exgpg_0_0_3; + + exgravatar_2_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exgravatar = exgravatar_2_0_0; + + exgrid_0_3_0 = callPackage + ( + { + buildMix, fetchHex, timex_0_13_5, json_0_3_3, httpotion_1_0_0 + }: + buildMix { + name = "exgrid"; + version = "0.3.0"; + src = fetchHex { + pkg = "exgrid"; + version = "0.3.0"; + sha256 = + "96676dfc20b2e8c7caf5f68c202eada246f192d3246922be7214a0da0d219506"; + }; + beamDeps = [ timex_0_13_5 json_0_3_3 httpotion_1_0_0 ]; + + meta = { + description = ''Elixir bindings for SendGrid`s REST API''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bradleyd/exgrid"; + }; + } + ) {}; + + exgrid = exgrid_0_3_0; + + exhal_4_0_0 = callPackage + ( + { + buildMix, + fetchHex, + uri_template_1_2_0, + poison_2_1_0, + httpoison_0_8_1 + }: + buildMix { + name = "exhal"; + version = "4.0.0"; + src = fetchHex { + pkg = "exhal"; + version = "4.0.0"; + sha256 = + "94a10116449d0c5dce43bddd0a96ed2dbefa032883841752a48129227ae4b426"; + }; + beamDeps = [ uri_template_1_2_0 poison_2_1_0 httpoison_0_8_1 ]; + + meta = { + description = ''Use HAL APIs with ease''; + license = stdenv.lib.licenses.free; + }; + } + ) {}; + + exhal = exhal_4_0_0; + + exhcl_0_2_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exhcl = exhcl_0_2_1; + + exiban_0_0_3 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "exiban"; + version = "0.0.3"; + src = fetchHex { + pkg = "exiban"; + version = "0.0.3"; + sha256 = + "98c2656de7ce4c27090f482704e7e915d9046c0a3c4545d7ae4b68986de776a8"; + }; + + meta = { + description = ''Library for manipulating and validating IBAN + account numbers.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/kkempin/exiban"; + }; + } + ) {}; + + exiban = exiban_0_0_3; + + exirc_0_9_2 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "exirc"; + version = "0.9.2"; + src = fetchHex { + pkg = "exirc"; + version = "0.9.2"; + sha256 = + "5b534e0a1bb3d54b57df9c8265d861e4dc3f3078c5483d7520b398458a1c6367"; + }; + + meta = { + description = ''An IRC client library for Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bitwalker/exirc"; + }; + } + ) {}; + + exirc = exirc_0_9_2; + + exjira_0_0_1 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, dotenv_0_0_4 }: + buildMix { + name = "exjira"; + version = "0.0.1"; + src = fetchHex { + pkg = "exjira"; + version = "0.0.1"; + sha256 = + "da992f593939629300ddf90c0aafbcafb05c4c7e5f817c3a76dd7c0ac43f8575"; + }; + beamDeps = [ poison_1_5_2 dotenv_0_0_4 ]; + + meta = { + description = ''JIRA client library for Elixir ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mattweldon/exjira"; + }; + } + ) {}; + + exjira = exjira_0_0_1; + + exjprop_0_0_5 = callPackage + ( + { + buildMix, + fetchHex, + sweet_xml_0_6_1, + httpoison_0_8_1, + ex_aws_0_4_17 + }: + buildMix { + name = "exjprop"; + version = "0.0.5"; + src = fetchHex { + pkg = "exjprop"; + version = "0.0.5"; + sha256 = + "9fcc1e2e3e12f9f49b1b42cb97df917b5021933d962370dbe67557718a5adee0"; + }; + beamDeps = [ sweet_xml_0_6_1 httpoison_0_8_1 ex_aws_0_4_17 ]; + + meta = { + description = ''Elixir library for reading Java properties files + from various sources''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/stocks29/exjprop.git"; + }; + } + ) {}; + + exjprop = exjprop_0_0_5; + + exjson_0_5_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exjson = exjson_0_5_0; + + exjsx_3_0_2 = callPackage + ( + { buildMix, fetchHex, jsx_2_4_0 }: + buildMix { + name = "exjsx"; + version = "3.0.2"; + src = fetchHex { + pkg = "exjsx"; + version = "3.0.2"; + sha256 = + "2cd67240a54e9cd2616bc83c0c352d47f87bccd2ec599eceedc00bcbe9063f07"; + }; + beamDeps = [ jsx_2_4_0 ]; + + meta = { + description = ''json for elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/talentdeficit/exjsx"; + }; + } + ) {}; + + exjsx_3_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exjsx_3_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exjsx = exjsx_3_2_0; + + exkad_0_0_2 = callPackage + ( + { + buildMix, + fetchHex, + socket_0_2_8, + poison_1_2_1, + plug_0_8_4, + httpotion_1_0_0, + cowboy_1_0_4 + }: + buildMix { + name = "exkad"; + version = "0.0.2"; + src = fetchHex { + pkg = "exkad"; + version = "0.0.2"; + sha256 = + "b12f4e48ed460521ae3b79895d1e8c43ed24df54260e5519e58708ff76468afb"; + }; + beamDeps = [ + socket_0_2_8 + poison_1_2_1 + plug_0_8_4 + httpotion_1_0_0 + cowboy_1_0_4 + ]; + + meta = { + description = ''A simple kademlia implementation''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rozap/exkad"; + }; + } + ) {}; + + exkad = exkad_0_0_2; + + exkanji_0_2_5 = callPackage + ( + { buildMix, fetchHex, exromaji_0_2_8 }: + buildMix { + name = "exkanji"; + version = "0.2.5"; + src = fetchHex { + pkg = "exkanji"; + version = "0.2.5"; + sha256 = + "f88383523a4b01dbb534eb2f9f95b87cf75402b7a28962170e19919eb07f86a6"; + }; + beamDeps = [ exromaji_0_2_8 ]; + + 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"; + }; + } + ) {}; + + exkanji = exkanji_0_2_5; + + exkismet_0_0_2 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "exkismet"; + version = "0.0.2"; + src = fetchHex { + pkg = "exkismet"; + version = "0.0.2"; + sha256 = + "3648f010eb80891b0195f9ced0e02a5a08860a9d96e8f7bbe328c68f27b85b64"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''A client (completely unofficial) for the + Akismet.com comment-spam detection API.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/cameronp/exkismet"; + }; + } + ) {}; + + exkismet = exkismet_0_0_2; + + exldap_0_1_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exldap = exldap_0_1_1; + + exleveldb_0_7_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exleveldb = exleveldb_0_7_0; + + exlibris_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exlibris = exlibris_0_0_1; + + exlingr_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exlingr = exlingr_0_0_1; + + exmatrix_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exmatrix = exmatrix_0_0_1; + + exmerl_0_1_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exmerl = exmerl_0_1_1; + + exmetrics_1_1_0 = callPackage + ( + { buildMix, 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; + }; + } + ) {}; + + exmetrics = exmetrics_1_1_0; + + exml_0_1_0 = callPackage + ( + { buildMix, 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''; + + }; + } + ) {}; + + exml = exml_0_1_0; + + exmoji_0_2_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exmoji = exmoji_0_2_2; + + exns_0_3_1_beta = callPackage + ( + { + buildMix, + fetchHex, + uuid_1_1_3, + poolboy_1_5_1, + poison_1_5_2, + msgpax_0_8_2 + }: + buildMix { + name = "exns"; + version = "0.3.1-beta"; + src = fetchHex { + pkg = "exns"; + version = "0.3.1-beta"; + sha256 = + "ac2042252d873f0449358628a83c49b80587017ed2962960bca0082809e74398"; + }; + 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"; + }; + } + ) {}; + + exns = exns_0_3_1_beta; + + exnumerable_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exnumerable = exnumerable_0_0_1; + + exnumerator_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exnumerator = exnumerator_1_0_0; + + exnumterator_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exnumterator = exnumterator_1_0_0; + + exoddic_1_2_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "exoddic"; + version = "1.2.0"; + src = fetchHex { + pkg = "exoddic"; + version = "1.2.0"; + sha256 = + "84d79ad8365f9efb5de30afbe074d5360828b3780ff21dfd06d865a3d7773d2e"; + }; + + meta = { + description = ''Odds and probability handling and conversions''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mwmiller/exoddic"; + }; + } + ) {}; + + exoddic = exoddic_1_2_0; + + exometer_core_1_0_0 = callPackage + ( + { + buildRebar3, + fetchHex, + setup_1_7_0, + parse_trans_2_9_0, + lager_3_0_2, + folsom_0_8_3 + }: + buildRebar3 { + name = "exometer_core"; + version = "1.0.0"; + src = fetchHex { + pkg = "exometer_core"; + version = "1.0.0"; + sha256 = + "6fe43b22439dd89b7b307214cf18084d26fd82e024d8855bdecccf923f93d852"; + }; + + beamDeps = [ + setup_1_7_0 parse_trans_2_9_0 lager_3_0_2 folsom_0_8_3 + ]; + + meta = { + description = ''Code instrumentation and metrics collection + package.''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/basho/exometer_core"; + }; + } + ) {}; + + exometer_core = exometer_core_1_0_0; + + exos_1_0_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "exos"; + version = "1.0.0"; + src = fetchHex { + pkg = "exos"; + version = "1.0.0"; + sha256 = + "3659fca730360d11d90db8ccb0206e978c838af48bc46ac096d47ea807b9d324"; + }; + + meta = { + longDescription = ''Create a GenServer in any language. Exos + contains a very simple GenServer which proxy + calls and casts to a given port command, + encoding and decoding the message to the port + using erlang external binary term format. (see + related projects : clojure|python|node_erlastic + on https://github.com/awetzel) ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/awetzel/exos"; + }; + } + ) {}; + + exos = exos_1_0_0; + + expand_0_0_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + expand = expand_0_0_3; + + exparticle_0_0_2 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "exparticle"; + version = "0.0.2"; + src = fetchHex { + pkg = "exparticle"; + version = "0.0.2"; + sha256 = + "ce70b77da48e84307791af00143ad4b9677d39765459865976d459d3b1bdcaf2"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''ExParticle is an elixir client to communicate + with Particle Cloud API''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mtanzi/exparticle"; + }; + } + ) {}; + + exparticle = exparticle_0_0_2; + + expcap_0_1_0 = callPackage + ( + { buildMix, fetchHex, timex_0_13_5 }: + buildMix { + name = "expcap"; + version = "0.1.0"; + src = fetchHex { + pkg = "expcap"; + version = "0.1.0"; + sha256 = + "d9d62f7cb7a3acfdb13668668c6cd4e317a125519a5b24830e4184474e8fe274"; + }; + beamDeps = [ timex_0_13_5 ]; + + meta = { + longDescription = ''A PCAP library written in Elixir. This does + not wrap a C or Erlang PCAP library, rather it + attempts to be an idiomatic Elixir library. This + library parses pcap files, however it does not + yet support most protocols that can be contained + within a pcap file. The only supported protocols + at the moment are: * Ethernet * IPv4 * UDP * DNS + ''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/cobenian/expcap"; + }; + } + ) {}; + + expcap = expcap_0_1_0; + + experiment_0_0_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + experiment = experiment_0_0_3; + + expinboard_0_0_1 = callPackage + ( + { + buildMix, fetchHex, ibrowse_4_2_2, httpotion_2_1_0, 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_1_0 exjsx_3_2_0 ]; + + meta = { + description = ''A simple elixir pinboard client.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/thilko/expinboard"; + }; + } + ) {}; + + expinboard = expinboard_0_0_1; + + expletive_0_1_4 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + expletive = expletive_0_1_4; + + expool_0_1_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "expool"; + version = "0.1.0"; + src = fetchHex { + pkg = "expool"; + version = "0.1.0"; + sha256 = + "dfb6e81957a94080f33e8469c497102a36831d7fba4a902d895c3f82f5232060"; + }; + + meta = { + description = ''Simple process pooling and task submission''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/zackehh/expool"; + }; + } + ) {}; + + expool = expool_0_1_0; + + expr_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + expr = expr_0_1_0; + + exprintf_0_1_6 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exprintf = exprintf_0_1_6; + + exprof_0_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exprof = exprof_0_2_0; + + exprotobuf_0_10_2 = callPackage + ( + { buildMix, fetchHex, gpb_3_18_10 }: + buildMix { + name = "exprotobuf"; + version = "0.10.2"; + src = fetchHex { + pkg = "exprotobuf"; + version = "0.10.2"; + sha256 = + "dc71af3a83a51376de72de160123408cd38adfed2ad2f419465b4d1e3f87d244"; + }; + beamDeps = [ gpb_3_18_10 ]; + + meta = { + longDescription = ''exprotobuf provides native encoding/decoding + of protobuf messages via generated + modules/structs.''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/bitwalker/exprotobuf"; + }; + } + ) {}; + + exprotobuf_0_13_0 = callPackage + ( + { buildMix, fetchHex, gpb_3_18_10 }: + buildMix { + name = "exprotobuf"; + version = "0.13.0"; + src = fetchHex { + pkg = "exprotobuf"; + version = "0.13.0"; + sha256 = + "25921ae192f22eca89d543134a7b12bd2db617bb77992f1d4957b8b28bccbc8e"; + }; + beamDeps = [ gpb_3_18_10 ]; + + meta = { + longDescription = ''exprotobuf provides native encoding/decoding + of protobuf messages via generated + modules/structs.''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/bitwalker/exprotobuf"; + }; + } + ) {}; + + exprotobuf_1_0_0_rc1 = callPackage + ( + { buildMix, fetchHex, gpb_3_18_10 }: + buildMix { + name = "exprotobuf"; + version = "1.0.0-rc1"; + src = fetchHex { + pkg = "exprotobuf"; + version = "1.0.0-rc1"; + sha256 = + "e4cbf0bc2672e0d9fa3afe5acac8617a4e94443256d5fc19e5e7721681dd3eff"; + }; + beamDeps = [ gpb_3_18_10 ]; + + meta = { + longDescription = ''exprotobuf provides native encoding/decoding + of protobuf messages via generated + modules/structs.''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/bitwalker/exprotobuf"; + }; + } + ) {}; + + exprotobuf = exprotobuf_1_0_0_rc1; + + exq_0_6_4 = callPackage + ( + { + buildMix, + fetchHex, + uuid_1_1_3, + timex_1_0_1, + redix_0_3_4, + poison_2_1_0 + }: + buildMix { + name = "exq"; + version = "0.6.4"; + src = fetchHex { + pkg = "exq"; + version = "0.6.4"; + sha256 = + "24b75a33da51ea3f3561a127237dbefa5b82d2ff478eb9591314644d89bc8c95"; + }; + beamDeps = [ uuid_1_1_3 timex_1_0_1 redix_0_3_4 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"; + }; + } + ) {}; + + exq = exq_0_6_4; + + exq_ui_0_6_4 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1, exq_0_6_4, cowboy_1_0_4 }: + buildMix { + name = "exq_ui"; + version = "0.6.4"; + src = fetchHex { + pkg = "exq_ui"; + version = "0.6.4"; + sha256 = + "6072838b9161e8b036466dd8fb21ea99fd93beb2488d76f3d6561211eac36b71"; + }; + beamDeps = [ plug_1_1_1 exq_0_6_4 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"; + }; + } + ) {}; + + exq_ui = exq_ui_0_6_4; + + exql_0_0_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exql = exql_0_0_3; + + exquery_0_0_11 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + exquery = exquery_0_0_11; + + exquisite_0_1_6 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exquisite = exquisite_0_1_6; + + exrabbit_0_0_2 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "exrabbit"; + version = "0.0.2"; + src = fetchHex { + pkg = "exrabbit"; + version = "0.0.2"; + sha256 = + "8dda89e78a8918eddcf28200e4474127151a8e20a2b54447b817732344b4e55a"; + }; + + meta = { + description = ''RabbitMQ bindings and DSL for Elixir''; + + homepage = "https://github.com/d0rc/exrabbit"; + }; + } + ) {}; + + exrabbit = exrabbit_0_0_2; + + exrecaptcha_0_0_3 = callPackage + ( + { buildMix, fetchHex, httpotion_1_0_0 }: + buildMix { + name = "exrecaptcha"; + version = "0.0.3"; + src = fetchHex { + pkg = "exrecaptcha"; + version = "0.0.3"; + sha256 = + "2df1a9e868d3adc31a657755df04fabc9c9e7d12f56cbcc86b27f670dcd962b5"; + }; + beamDeps = [ httpotion_1_0_0 ]; + + meta = { + longDescription = ''Simple ReCaptcha display/verify code for + Elixir applications. Designed to be used with a + CMS such as Phoenix. ''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/adanselm/exrecaptcha"; + }; + } + ) {}; + + exrecaptcha = exrecaptcha_0_0_3; + + exredis_0_2_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exredis = exredis_0_2_3; + + exrethinkdb_0_0_3 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + exrethinkdb = exrethinkdb_0_0_3; + + exrm_0_15_1 = callPackage + ( + { buildMix, fetchHex, conform_0_13_0 }: + buildMix { + name = "exrm"; + version = "0.15.1"; + src = fetchHex { + pkg = "exrm"; + version = "0.15.1"; + sha256 = + "ed2227e8b189af4deca0f1b637fdfe9514b817128f6c2b007ccb05c65d49f132"; + }; + beamDeps = [ conform_0_13_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"; + }; + } + ) {}; + + exrm_0_18_8 = callPackage + ( + { buildMix, fetchHex, relx_3_3_1, conform_0_16_0 }: + buildMix { + name = "exrm"; + version = "0.18.8"; + src = fetchHex { + pkg = "exrm"; + version = "0.18.8"; + sha256 = + "a8aa031d824f882a762404bc19b6fbe6c10703941097a6ef8bb93a62cc987e22"; + }; + beamDeps = [ relx_3_3_1 conform_0_16_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"; + }; + } + ) {}; + + exrm_0_19_9 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exrm_1_0_0_rc8 = callPackage + ( + { buildMix, fetchHex, relx_3_17_0 }: + buildMix { + name = "exrm"; + version = "1.0.0-rc8"; + src = fetchHex { + pkg = "exrm"; + version = "1.0.0-rc8"; + sha256 = + "f4bc906713eb57e9ac7c4bf16aa218cbb437b3392f2183eb3057e8f6921fa8fa"; + }; + beamDeps = [ relx_3_17_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"; + }; + } + ) {}; + + exrm = exrm_1_0_0_rc8; + + exrm_heroku_0_1_1 = callPackage + ( + { buildMix, fetchHex, exrm_1_0_0_rc8 }: + buildMix { + name = "exrm_heroku"; + version = "0.1.1"; + src = fetchHex { + pkg = "exrm_heroku"; + version = "0.1.1"; + sha256 = + "19fc16f1cfcc1c86bc64796a287028b8a8d951f7737024893c1772ba658da76d"; + }; + beamDeps = [ exrm_1_0_0_rc8 ]; + + meta = { + description = ''Publish Elixir releases created with exrm release + manager to Heroku. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ride/exrm-heroku"; + }; + } + ) {}; + + exrm_heroku = exrm_heroku_0_1_1; + + exrm_rpm_0_3_0 = callPackage + ( + { buildMix, fetchHex, exrm_0_15_1 }: + buildMix { + name = "exrm_rpm"; + version = "0.3.0"; + src = fetchHex { + pkg = "exrm_rpm"; + version = "0.3.0"; + sha256 = + "28c2339fac5073d615fb4a52816dd4fc56c9da2db9e71846b0affdf171643044"; + }; + beamDeps = [ exrm_0_15_1 ]; + + meta = { + longDescription = ''Adds simple Red Hat Package Manager (RPM) + generation to the exrm package manager. The + generated RPM file includes the Elixir release + and an init.d script to manage the project`s + service. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/smpallen99/exrm-rpm"; + }; + } + ) {}; + + exrm_rpm = exrm_rpm_0_3_0; + + exromaji_0_2_8 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "exromaji"; + version = "0.2.8"; + src = fetchHex { + pkg = "exromaji"; + version = "0.2.8"; + sha256 = + "c402dc57b246ba09a93612e2ac715e013d063eada3f1a88bfe89ad59ecff23db"; + }; + + meta = { + description = ''A Elixir library for translating between + hiragana, katakana, and romaji.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ikeikeikeike/exromaji"; + }; + } + ) {}; + + exromaji = exromaji_0_2_8; + + exrun_0_1_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exrun = exrun_0_1_1; + + exsamples_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exsamples = exsamples_0_1_0; + + exscript_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exscript = exscript_0_0_1; + + exseed_0_0_3 = callPackage + ( + { buildMix, fetchHex, ecto_2_0_0_beta_0 }: + buildMix { + name = "exseed"; + version = "0.0.3"; + src = fetchHex { + pkg = "exseed"; + version = "0.0.3"; + sha256 = + "d5f42ed419c9f1d5d179dc93fdf6a58344b07055764498f222f07f95cb82dd98"; + }; + beamDeps = [ ecto_2_0_0_beta_0 ]; + + meta = { + description = ''A library that provides a simple DSL for seeding + databases through Ecto.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/seaneshbaugh/exseed"; + }; + } + ) {}; + + exseed = exseed_0_0_3; + + exsentry_0_2_1 = callPackage + ( + { + buildMix, + fetchHex, + uuid_1_1_3, + timex_1_0_1, + poison_1_5_2, + plug_1_1_1, + ibrowse_4_2_2, + httpotion_2_2_0, + fuzzyurl_0_8_1 + }: + buildMix { + name = "exsentry"; + version = "0.2.1"; + src = fetchHex { + pkg = "exsentry"; + version = "0.2.1"; + sha256 = + "3feebb7a00f9fac19c989214bf15131d540e1e88c27286c46b3083c4f85972fb"; + }; + beamDeps = [ + uuid_1_1_3 + timex_1_0_1 + poison_1_5_2 + plug_1_1_1 + ibrowse_4_2_2 + httpotion_2_2_0 + fuzzyurl_0_8_1 + ]; + + meta = { + description = ''ExSentry is a client for the Sentry error + reporting platform.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/appcues/exsentry"; + }; + } + ) {}; + + exsentry = exsentry_0_2_1; + + exstatic_0_1_0 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1 }: + buildMix { + name = "exstatic"; + version = "0.1.0"; + src = fetchHex { + pkg = "exstatic"; + version = "0.1.0"; + sha256 = + "e063b91c0b2995e4a1a2c1aa56cdd578374320a8755844cc6471b58fa3874d0d"; + }; + beamDeps = [ plug_1_1_1 ]; + + 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"; + }; + } + ) {}; + + exstatic = exstatic_0_1_0; + + exstatsd_0_1_5 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exstatsd = exstatsd_0_1_5; + + exsync_0_1_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exsync = exsync_0_1_2; + + exsyslog_1_0_1 = callPackage + ( + { buildMix, fetchHex, syslog_1_0_2, poison_1_5_2 }: + buildMix { + name = "exsyslog"; + version = "1.0.1"; + src = fetchHex { + pkg = "exsyslog"; + version = "1.0.1"; + sha256 = + "a3972cf2c70bcf8fedcd702109ed6a2213d1905c6eabb0e42e600b34bc9f0fbe"; + }; + beamDeps = [ syslog_1_0_2 poison_1_5_2 ]; + + meta = { + description = ''ExSyslog is a Elixir Logger custom backend to + syslog.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/22cans/exsyslog"; + }; + } + ) {}; + + exsyslog = exsyslog_1_0_1; + + extreme_0_4_3 = callPackage + ( + { + buildMix, + fetchHex, + uuid_1_1_3, + poison_1_5_2, + httpoison_0_8_1, + exprotobuf_0_10_2 + }: + buildMix { + name = "extreme"; + version = "0.4.3"; + src = fetchHex { + pkg = "extreme"; + version = "0.4.3"; + sha256 = + "db08580b4b839be7bf3f6198efc7de02c22a3688f46ce32deca983db74f1e330"; + }; + beamDeps = [ + uuid_1_1_3 + poison_1_5_2 + httpoison_0_8_1 + exprotobuf_0_10_2 + ]; + + meta = { + description = ''Elixir TCP adapter for EventStore.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/exponentially/extreme"; + }; + } + ) {}; + + extreme = extreme_0_4_3; + + extripe_0_2_0 = callPackage + ( + { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_1 }: + buildMix { + name = "extripe"; + version = "0.2.0"; + src = fetchHex { + pkg = "extripe"; + version = "0.2.0"; + sha256 = + "70cccdf79565d34ab4df68d89e22cfe574b2fe64b631303c496e27f83e798491"; + }; + beamDeps = [ poison_2_1_0 httpoison_0_8_1 ]; + + meta = { + description = ''Stripe API wrapper''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/princemaple/extripe"; + }; + } + ) {}; + + extripe = extripe_0_2_0; + + exts_0_2_2 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "exts"; + version = "0.2.2"; + src = fetchHex { + pkg = "exts"; + version = "0.2.2"; + sha256 = + "0c3fa7e429912a4af48dd94975535e6db0557297d675b9d9105645d05d3a3089"; + }; + + meta = { + description = ''ets wrapper for Elixir''; + license = stdenv.lib.licenses.wtfpl; + homepage = "https://github.com/meh/exts"; + }; + } + ) {}; + + exts = exts_0_2_2; + + extwitter_0_6_2 = callPackage + ( + { buildMix, fetchHex, timex_1_0_1, poison_1_5_2 }: + buildMix { + name = "extwitter"; + version = "0.6.2"; + src = fetchHex { + pkg = "extwitter"; + version = "0.6.2"; + sha256 = + "dd5ea2b6c9f99e167024b3ec6fb97f4803f39521229771ae001f7b44ed572f76"; + }; + beamDeps = [ timex_1_0_1 poison_1_5_2 ]; + + meta = { + description = ''Twitter client library for elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/parroty/extwitter"; + }; + } + ) {}; + + extwitter = extwitter_0_6_2; + + exurban_0_0_1 = callPackage + ( + { buildMix, fetchHex, jazz_0_2_1, httpoison_0_7_5 }: + buildMix { + name = "exurban"; + version = "0.0.1"; + src = fetchHex { + pkg = "exurban"; + version = "0.0.1"; + sha256 = + "612b3136b144edfbad658acca6961a3c9a1afe5d343acacb5ce5b358a67bd797"; + }; + beamDeps = [ jazz_0_2_1 httpoison_0_7_5 ]; + + meta = { + description = ''Elixir wrapper for UrbanAirship API.''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/tappsi/exurban"; + }; + } + ) {}; + + exurban = exurban_0_0_1; + + exvcr_0_3_9 = callPackage + ( + { + buildMix, + fetchHex, + meck_0_8_4, + httpotion_1_0_0, + httpoison_0_8_1, + exjsx_3_2_0, + exactor_2_2_0 + }: + buildMix { + name = "exvcr"; + version = "0.3.9"; + src = fetchHex { + pkg = "exvcr"; + version = "0.3.9"; + sha256 = + "25645f6598111ba76ed30b4a2079169ae1aed0795ef87bf74d70a3a7ca8f2112"; + }; + beamDeps = [ + meck_0_8_4 + httpotion_1_0_0 + httpoison_0_8_1 + exjsx_3_2_0 + exactor_2_2_0 + ]; + + meta = { + description = ''HTTP request/response recording library for + elixir, inspired by VCR.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/parroty/exvcr"; + }; + } + ) {}; + + exvcr_0_7_1 = callPackage + ( + { + buildMix, + fetchHex, + meck_0_8_4, + httpotion_2_2_0, + httpoison_0_8_1, + exjsx_3_2_0, + exactor_2_2_0 + }: + buildMix { + name = "exvcr"; + version = "0.7.1"; + src = fetchHex { + pkg = "exvcr"; + version = "0.7.1"; + sha256 = + "e894995695be15a546c1acf09d87967b078e0f6bc0a2be540d226c8ae40b161d"; + }; + beamDeps = [ + meck_0_8_4 + httpotion_2_2_0 + httpoison_0_8_1 + exjsx_3_2_0 + exactor_2_2_0 + ]; + + meta = { + description = ''HTTP request/response recording library for + elixir, inspired by VCR.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/parroty/exvcr"; + }; + } + ) {}; + + exvcr = exvcr_0_7_1; + + exyelp_0_0_2 = callPackage + ( + { + buildMix, fetchHex, poison_2_1_0, oauther_1_0_2, httpoison_0_8_1 + }: + buildMix { + name = "exyelp"; + version = "0.0.2"; + src = fetchHex { + pkg = "exyelp"; + version = "0.0.2"; + sha256 = + "1be8553ea0369a092eac1b6a0b47652b7c0570911483aa3ca454bef05ddd4d5d"; + }; + beamDeps = [ poison_2_1_0 oauther_1_0_2 httpoison_0_8_1 ]; + + meta = { + description = ''An Elixir Yelp API client''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/gaslight/exyelp"; + }; + } + ) {}; + + exyelp = exyelp_0_0_2; + + exyz_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exyz = exyz_1_0_0; + + eye_drops_1_1_0 = callPackage + ( + { buildMix, fetchHex, fs_0_9_2 }: + buildMix { + name = "eye_drops"; + version = "1.1.0"; + src = fetchHex { + pkg = "eye_drops"; + version = "1.1.0"; + sha256 = + "e1ed246cd35d0b58798fdec5cca8066d9251cc37251f298e531d8163dbc11332"; + }; + 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"; + }; + } + ) {}; + + eye_drops = eye_drops_1_1_0; + + ezcryptex_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ezcryptex = ezcryptex_0_0_1; + + ezlib_1_0_1 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "ezlib"; + version = "1.0.1"; + src = fetchHex { + pkg = "ezlib"; + version = "1.0.1"; + sha256 = + "fea58a6ab557888dbfc91a8d20c55755614c123277a57dea2e91711c630465e1"; + }; + compilePorts = true; + + meta = { + description = ''Native zlib driver for Erlang / Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/processone/ezlib"; + }; + } + ) {}; + + ezlib = ezlib_1_0_1; + + ezmq_0_2_0 = callPackage + ( + { buildRebar3, fetchHex, lager_3_0_1, gen_listener_tcp_0_3_2 }: + buildRebar3 { + name = "ezmq"; + version = "0.2.0"; + src = fetchHex { + pkg = "ezmq"; + version = "0.2.0"; + sha256 = + "bc804ffded0b0d0f684d4313ad3fa676479df962c584daaf5aa14ada5b86a52b"; + }; + + beamDeps = [ lager_3_0_1 gen_listener_tcp_0_3_2 ]; + + meta = { + description = ''Native Erlang 0MQ implementation''; + license = stdenv.lib.licenses.mpl20; + homepage = "https://github.com/zeromq/ezmq"; + }; + } + ) {}; + + ezmq = ezmq_0_2_0; + + facebook_0_4_1 = callPackage + ( + { + buildMix, fetchHex, libex_config_0_2_0, json_0_3_3, hackney_1_4_8 + }: + buildMix { + name = "facebook"; + version = "0.4.1"; + src = fetchHex { + pkg = "facebook"; + version = "0.4.1"; + sha256 = + "f5583fe383f8a2b421f91ddbc9beccc9626527e96ec3502c723cc99e1c47e863"; + }; + beamDeps = [ libex_config_0_2_0 json_0_3_3 hackney_1_4_8 ]; + + meta = { + longDescription = ''Facebook Graph API Wrapper written in Elixir. + Please note, this is very much a work in + progress. Feel free to contribute using pull + requests.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mweibel/facebook.ex"; + }; + } + ) {}; + + facebook = facebook_0_4_1; + + factory_girl_elixir_0_1_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + factory_girl_elixir = factory_girl_elixir_0_1_1; + + faker_0_6_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + faker = faker_0_6_0; + + fast_tls_1_0_1 = callPackage + ( + { buildRebar3, fetchHex, p1_utils_1_0_3 }: + buildRebar3 { + name = "fast_tls"; + version = "1.0.1"; + src = fetchHex { + pkg = "fast_tls"; + version = "1.0.1"; + sha256 = + "479d1e53a14b749b96581df7320440da1ff56df9dde91d327b3ecc1bc60fcb0d"; + }; + compilePorts = true; + beamDeps = [ p1_utils_1_0_3 ]; + + meta = { + description = ''TLS / SSL OpenSSL-based native driver for Erlang + / Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/processone/fast_tls"; + }; + } + ) {}; + + fast_tls = fast_tls_1_0_1; + + fast_xml_1_1_3 = callPackage + ( + { buildRebar3, fetchHex, p1_utils_1_0_3 }: + buildRebar3 { + name = "fast_xml"; + version = "1.1.3"; + src = fetchHex { + pkg = "fast_xml"; + version = "1.1.3"; + sha256 = + "ea1abe9cdfa0df67178378ba5ec11e746023b66bc1ed0f980ae69d2aa1f732c3"; + }; + compilePorts = true; + beamDeps = [ p1_utils_1_0_3 ]; + + meta = { + description = ''Fast Expat-based Erlang / Elixir XML parsing + library''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/processone/fast_xml"; + }; + } + ) {}; + + fast_xml = fast_xml_1_1_3; + + fast_yaml_1_0_2 = callPackage + ( + { buildRebar3, fetchHex, p1_utils_1_0_3 }: + buildRebar3 { + name = "fast_yaml"; + version = "1.0.2"; + src = fetchHex { + pkg = "fast_yaml"; + version = "1.0.2"; + sha256 = + "2f2034d6003425b02619ba15658665134cfd81e3d1c9379c268f802a5775086d"; + }; + compilePorts = true; + beamDeps = [ p1_utils_1_0_3 ]; + + meta = { + description = ''Fast YAML native library for Erlang / Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/processone/fast_yaml"; + }; + } + ) {}; + + fast_yaml = fast_yaml_1_0_2; + + favicon_0_0_7 = callPackage + ( + { buildMix, fetchHex, httpoison_0_7_5, floki_0_7_1 }: + buildMix { + name = "favicon"; + version = "0.0.7"; + src = fetchHex { + pkg = "favicon"; + version = "0.0.7"; + sha256 = + "b9a577d3d22a6e51843eb334b87de512f48a548d7a7edf56e178e0dde420ba0e"; + }; + beamDeps = [ httpoison_0_7_5 floki_0_7_1 ]; + + meta = { + description = ''A library that fetches the favicon url for a + specified url''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ricn/favicon"; + }; + } + ) {}; + + favicon = favicon_0_0_7; + + fdg_0_0_4 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + fdg = fdg_0_0_4; + + feeder_1_4_7 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + feeder_2_0_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + feeder = feeder_2_0_0; + + feeder_ex_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + feeder_ex = feeder_ex_0_0_2; + + feedistiller_2_0_2 = callPackage + ( + { + buildMix, + fetchHex, + timex_0_19_5, + httpoison_0_7_5, + feeder_2_0_0, + alambic_0_1_0 + }: + buildMix { + name = "feedistiller"; + version = "2.0.2"; + src = fetchHex { + pkg = "feedistiller"; + version = "2.0.2"; + sha256 = + "453244b3a41fbde7e13ccd675928f41f155799c218b47cbead9e67066efc8276"; + }; + beamDeps = [ + timex_0_19_5 + httpoison_0_7_5 + feeder_2_0_0 + alambic_0_1_0 + ]; + + meta = { + description = ''Download RSS/Atom feeds enclosures.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/sdanzan/feedistiller"; + }; + } + ) {}; + + feedistiller = feedistiller_2_0_2; + + feedlex_0_0_1 = callPackage + ( + { buildMix, fetchHex, poison_1_3_1, httpoison_0_8_1 }: + buildMix { + name = "feedlex"; + version = "0.0.1"; + src = fetchHex { + pkg = "feedlex"; + version = "0.0.1"; + sha256 = + "1f20033824f816d6904837601c14bdffcf1a56a53b8ed7d7916a67e48e53b4a5"; + }; + beamDeps = [ poison_1_3_1 httpoison_0_8_1 ]; + + meta = { + longDescription = ''Feedly RSS reader client for Elixir + (elixir-lang). Partial but functional + implementation. For now it covers the following + Feedly APIs: * authentication; * feed; * stream; + * subscription.''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/essenciary/feedlex"; + }; + } + ) {}; + + feedlex = feedlex_0_0_1; + + feedme_0_0_1 = callPackage + ( + { buildMix, fetchHex, timex_0_19_5 }: + buildMix { + name = "feedme"; + version = "0.0.1"; + src = fetchHex { + pkg = "feedme"; + version = "0.0.1"; + sha256 = + "021621981bbb03b317e4a948a39d269ab1a2dc6d9ec6ee1c744e565000da680d"; + }; + beamDeps = [ timex_0_19_5 ]; + + meta = { + description = ''Elixir RSS/Atom parser built on erlang`s xmerl + xml parser''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/umurgdk/elixir-feedme"; + }; + } + ) {}; + + feedme = feedme_0_0_1; + + feedparser_0_0_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + feedparser = feedparser_0_0_3; + + fernet_ecto_0_0_4 = callPackage + ( + { buildMix, fetchHex, ecto_1_1_3 }: + buildMix { + name = "fernet_ecto"; + version = "0.0.4"; + src = fetchHex { + pkg = "fernet_ecto"; + version = "0.0.4"; + sha256 = + "22a9ab7a7fd1347620ba5dd9e128eae1e97d6403b0ee90a289580c2cb386e1c0"; + }; + beamDeps = [ ecto_1_1_3 ]; + + meta = { + description = ''Fernet-encrypted fields for Ecto''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/jkakar/fernet-ecto"; + }; + } + ) {}; + + fernet_ecto = fernet_ecto_0_0_4; + + fernetex_0_0_1 = callPackage + ( + { buildMix, fetchHex, timex_0_19_5, json_0_3_3 }: + buildMix { + name = "fernetex"; + version = "0.0.1"; + src = fetchHex { + pkg = "fernetex"; + version = "0.0.1"; + sha256 = + "0e386a7d783329a2742398e987b0584ca448b22b27ccfc857eab1b0752178714"; + }; + beamDeps = [ timex_0_19_5 json_0_3_3 ]; + + 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"; + }; + } + ) {}; + + fernetex = fernetex_0_0_1; + + fifo_dt_0_1_66 = callPackage + ( + { + buildRebar3, + fetchHex, + riak_dt_2_1_1, + libsnarlmatch_0_1_7, + lager_2_1_1, + jsxd_0_1_10, + jsx_1_4_5, + fifo_utils_0_1_20 + }: + buildRebar3 { + name = "fifo_dt"; + version = "0.1.66"; + src = fetchHex { + pkg = "fifo_dt"; + version = "0.1.66"; + sha256 = + "a72df25753a0dad32b22b02356f2979b8e3556f0333449f476d581332f02da6b"; + }; + + beamDeps = [ + riak_dt_2_1_1 + libsnarlmatch_0_1_7 + lager_2_1_1 + jsxd_0_1_10 + jsx_1_4_5 + fifo_utils_0_1_20 + ]; + + meta = { + description = ''FiFo datatype collection''; + license = stdenv.lib.licenses.cddl; + homepage = "https://github.com/project-fifo/fifo_dt"; + }; + } + ) {}; + + fifo_dt = fifo_dt_0_1_66; + + fifo_lager_0_1_3 = callPackage + ( + { + buildRebar3, + 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''; + + }; + } + ) {}; + + fifo_lager = fifo_lager_0_1_3; + + fifo_s3_0_1_16 = callPackage + ( + { + buildRebar3, + 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''; + + }; + } + ) {}; + + fifo_s3 = fifo_s3_0_1_16; + + fifo_spec_0_1_27 = callPackage + ( + { buildRebar3, fetchHex, fifo_dt_0_1_66 }: + buildRebar3 { + name = "fifo_spec"; + version = "0.1.27"; + src = fetchHex { + pkg = "fifo_spec"; + version = "0.1.27"; + sha256 = + "2ef9662a7423da74b7f4517e9470e44e03383c1116ee6da3944021ff3cd44ef6"; + }; + + beamDeps = [ fifo_dt_0_1_66 ]; + + meta = { + description = ''Specs for FiFo APIs''; + license = stdenv.lib.licenses.cddl; + homepage = "https://github.com/project-fifo/fifo_spec"; + }; + } + ) {}; + + fifo_spec = fifo_spec_0_1_27; + + fifo_utils_0_1_20 = callPackage + ( + { buildRebar3, fetchHex, uuid_erl_1_5_1, lager_2_1_1 }: + buildRebar3 { + name = "fifo_utils"; + version = "0.1.20"; + src = fetchHex { + pkg = "fifo_utils"; + version = "0.1.20"; + sha256 = + "01ec5ae5e8a8c3d8e9dc658de1c00818ac807195b4a5c47f98aa2c9af4d54663"; + }; + + beamDeps = [ uuid_erl_1_5_1 lager_2_1_1 ]; + + meta = { + description = ''FiFo utility library''; + license = stdenv.lib.licenses.cddl; + homepage = "https://github.com/project-fifo/fifo_utils"; + }; + } + ) {}; + + fifo_utils_0_1_21 = callPackage + ( + { buildRebar3, fetchHex, uuid_erl_1_5_1, lager_2_1_1 }: + buildRebar3 { + name = "fifo_utils"; + version = "0.1.21"; + src = fetchHex { + pkg = "fifo_utils"; + version = "0.1.21"; + sha256 = + "8a9298fd7486f56b74b4ffc1d6a3ff3713ffde44b248371f7f673a9bd76add60"; + }; + + beamDeps = [ uuid_erl_1_5_1 lager_2_1_1 ]; + + meta = { + description = ''FiFo utility library''; + license = stdenv.lib.licenses.cddl; + homepage = "https://github.com/project-fifo/fifo_utils"; + }; + } + ) {}; + + fifo_utils = fifo_utils_0_1_21; + + figaro_0_1_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "figaro"; + version = "0.1.0"; + src = fetchHex { + pkg = "figaro"; + version = "0.1.0"; + sha256 = + "3342018ab0135211b85d00f34567ca3a2d6d66289840c9eb0096ec97fad8a201"; + }; + + meta = { + description = ''Simple Elixir project configuration''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/trestrantham/ex_figaro"; + }; + } + ) {}; + + figaro = figaro_0_1_0; + + figaro_elixir_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + figaro_elixir = figaro_elixir_1_0_0; + + filepreviews_1_0_1 = callPackage + ( + { buildMix, fetchHex, poison_1_4_0, httpoison_0_7_5 }: + buildMix { + name = "filepreviews"; + version = "1.0.1"; + src = fetchHex { + pkg = "filepreviews"; + version = "1.0.1"; + sha256 = + "bdb67cd960dd98a4a1d6d0d4944721bf98a506dbfb2b361ca473dbaf40cc9470"; + }; + beamDeps = [ poison_1_4_0 httpoison_0_7_5 ]; + + meta = { + description = ''FilePreviews.io API client library for Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/GetBlimp/filepreviews-elixir"; + }; + } + ) {}; + + filepreviews = filepreviews_1_0_1; + + filtrex_0_1_0 = callPackage + ( + { buildMix, fetchHex, timex_0_19_5 }: + buildMix { + name = "filtrex"; + version = "0.1.0"; + src = fetchHex { + pkg = "filtrex"; + version = "0.1.0"; + sha256 = + "475187169e70534b3ba2db6f47656538deb2ff447744e4112cc1008414162e9c"; + }; + beamDeps = [ timex_0_19_5 ]; + + meta = { + longDescription = ''A library for performing and validating + complex filters from a client (e.g. smart + filters)''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rcdilorenzo/filtrex"; + }; + } + ) {}; + + filtrex = filtrex_0_1_0; + + finance_0_0_1 = callPackage + ( + { buildMix, fetchHex, timex_1_0_1 }: + buildMix { + name = "finance"; + version = "0.0.1"; + src = fetchHex { + pkg = "finance"; + version = "0.0.1"; + sha256 = + "fe08fc521e65605d54fd8b68fbdfdbd233b408e8330cf8038337214b553c2c17"; + }; + beamDeps = [ timex_1_0_1 ]; + + meta = { + longDescription = ''A library to calculate Xirr through the + bisection method using parallel processes.''; + + }; + } + ) {}; + + finance = finance_0_0_1; + + finch_0_0_3 = callPackage + ( + { + buildMix, + fetchHex, + postgrex_0_6_0, + phoenix_0_4_1, + ecto_0_2_4, + cowboy_1_0_4 + }: + buildMix { + name = "finch"; + version = "0.0.3"; + src = fetchHex { + pkg = "finch"; + version = "0.0.3"; + sha256 = + "48168045693af14b28263a5c121794dfcfb6da9eb33cc7a7eca93899668a2032"; + }; + beamDeps = [ + postgrex_0_6_0 phoenix_0_4_1 ecto_0_2_4 cowboy_1_0_4 + ]; + + meta = { + longDescription = '' Resource layer for Phoenix and Ecto projects + for auto-generated RESTful CRUD APIs. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rozap/finch"; + }; + } + ) {}; + + finch = finch_0_0_3; + + finicity_0_0_4 = callPackage + ( + { + buildMix, + fetchHex, + xml_builder_0_0_8, + httpotion_2_1_0, + floki_0_7_1 + }: + buildMix { + name = "finicity"; + version = "0.0.4"; + src = fetchHex { + pkg = "finicity"; + version = "0.0.4"; + sha256 = + "bed2444d52366a7e6f49bafff0d985c04540ef298922273df11efebe9c1e8387"; + }; + beamDeps = [ xml_builder_0_0_8 httpotion_2_1_0 floki_0_7_1 ]; + + meta = { + description = ''Client library for Finicity.''; + + }; + } + ) {}; + + finicity = finicity_0_0_4; + + fireworks_0_5_1 = callPackage + ( + { buildMix, fetchHex, poolboy_1_5_1, amqp_0_1_4 }: + buildMix { + name = "fireworks"; + version = "0.5.1"; + src = fetchHex { + pkg = "fireworks"; + version = "0.5.1"; + sha256 = + "33beceafc10537c975b571617dfc5c000a8232c112c1383f52b9e6a12437f9ca"; + }; + beamDeps = [ poolboy_1_5_1 amqp_0_1_4 ]; + + meta = { + description = ''Simple elixir work queue consumption for + RabbitMQ''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/mobileoverlord/fireworks"; + }; + } + ) {}; + + fireworks = fireworks_0_5_1; + + firmata_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + firmata = firmata_0_0_1; + + fitbit_0_0_1 = callPackage + ( + { + buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1, hackney_1_4_8 + }: + buildMix { + name = "fitbit"; + version = "0.0.1"; + src = fetchHex { + pkg = "fitbit"; + version = "0.0.1"; + sha256 = + "dc09d3b6d37ea67d21a52a704bd52357daa223e18afe4831515730452b3ada25"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 hackney_1_4_8 ]; + + meta = { + description = ''A Fitbit Library for Elixir''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/trestrantham/fitbit"; + }; + } + ) {}; + + fitbit = fitbit_0_0_1; + + fitex_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "fitex"; + version = "0.0.1"; + src = fetchHex { + pkg = "fitex"; + version = "0.0.1"; + sha256 = + "5918d784a419fa1367606b6bc01b202febc3762b5b624e5829db636415041fcb"; + }; + + meta = { + description = ''FitEx is a Macro-Module which provides a bit of + sugar for function definitions.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Puddah/FitEx"; + }; + } + ) {}; + + fitex = fitex_0_0_1; + + fixby_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + fixby = fixby_0_0_1; + + fixme_0_0_4 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + fixme = fixme_0_0_4; + + flasked_0_3_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + flasked = flasked_0_3_0; + + fleet_api_0_0_15 = callPackage + ( + { buildMix, fetchHex, poison_1_3_1, httpoison_0_7_1 }: + buildMix { + name = "fleet_api"; + version = "0.0.15"; + src = fetchHex { + pkg = "fleet_api"; + version = "0.0.15"; + sha256 = + "8aa8206a91129dab3b2a11ffd16b131ef1e37ceff633ed818616e96c8dca7957"; + }; + beamDeps = [ poison_1_3_1 httpoison_0_7_1 ]; + + meta = { + longDescription = ''A simple wrapper for the Fleet API. Can be + used with etcd tokens or via direct node + URLs.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jordan0day/fleet-api.git"; + }; + } + ) {}; + + fleet_api = fleet_api_0_0_15; + + flock_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + flock = flock_0_0_1; + + floki_0_0_5 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + floki_0_1_1 = callPackage + ( + { buildMix, fetchHex, mochiweb_2_12_2 }: + buildMix { + name = "floki"; + version = "0.1.1"; + src = fetchHex { + pkg = "floki"; + version = "0.1.1"; + sha256 = + "b608415520f6701acdbbffed86b62291b00ce695f7f3b067919594534c9858a9"; + }; + beamDeps = [ mochiweb_2_12_2 ]; + + 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"; + }; + } + ) {}; + + floki_0_7_1 = callPackage + ( + { buildMix, fetchHex, mochiweb_2_12_2 }: + buildMix { + name = "floki"; + version = "0.7.1"; + src = fetchHex { + pkg = "floki"; + version = "0.7.1"; + sha256 = + "f4d9df7ffbfeed170dc81d9c6309e47fe3d51c6247b42a2341d8675d3ff653b1"; + }; + beamDeps = [ mochiweb_2_12_2 ]; + + 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"; + }; + } + ) {}; + + floki = floki_0_7_1; + + floorplan_0_1_1 = callPackage + ( + { + buildMix, + fetchHex, + xml_builder_0_0_8, + tzdata_0_1_8, + timex_1_0_1, + postgrex_0_11_1, + poison_1_5_2, + httpotion_2_1_0 + }: + 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_8 + timex_1_0_1 + postgrex_0_11_1 + poison_1_5_2 + httpotion_2_1_0 + ]; + + meta = { + description = ''A module for generating sitemaps from a variety + of data sources''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/househappy/floorplan"; + }; + } + ) {}; + + floorplan = floorplan_0_1_1; + + flower_power_0_2_0 = callPackage + ( + { + buildMix, fetchHex, timex_1_0_1, poison_1_5_2, httpoison_0_7_5 + }: + buildMix { + name = "flower_power"; + version = "0.2.0"; + src = fetchHex { + pkg = "flower_power"; + version = "0.2.0"; + sha256 = + "1ade69e578fd65dd2d10b8097846411f1a5d0a42ad55e9faa532c65bbaf59bbb"; + }; + beamDeps = [ timex_1_0_1 poison_1_5_2 httpoison_0_7_5 ]; + + meta = { + description = ''Api client for flower power cloud api''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Korbin73/FlowerPower"; + }; + } + ) {}; + + flower_power = flower_power_0_2_0; + + fluent_client_0_1_0 = callPackage + ( + { + buildMix, fetchHex, socket_0_2_8, poison_1_3_1, msgpax_0_7_0 + }: + buildMix { + name = "fluent_client"; + version = "0.1.0"; + src = fetchHex { + pkg = "fluent_client"; + version = "0.1.0"; + sha256 = + "df1d05da9475938422a734cd311564eef44bfebea3c37b06ab167368875c2d15"; + }; + beamDeps = [ socket_0_2_8 poison_1_3_1 msgpax_0_7_0 ]; + + meta = { + description = ''fluentd client library''; + license = stdenv.lib.licenses.asl20; + homepage = + "https://github.com/trustatom-oss/elixir-fluent-client"; + }; + } + ) {}; + + fluent_client = fluent_client_0_1_0; + + fn_1_0_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + fn = fn_1_0_0; + + fnv_0_2_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + fnv = fnv_0_2_1; + + folsom_0_8_3 = callPackage + ( + { buildRebar3, 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''; + + }; + } + ) {}; + + folsom = folsom_0_8_3; + + folsom_ddb_0_1_20 = callPackage + ( + { buildRebar3, fetchHex, ddb_client_0_1_17 }: + buildRebar3 { + name = "folsom_ddb"; + version = "0.1.20"; + src = fetchHex { + pkg = "folsom_ddb"; + version = "0.1.20"; + sha256 = + "9103ab70b048bf35618daf85b314d815e66c23e7100a71b07dcbec18e75d02d1"; + }; + + beamDeps = [ ddb_client_0_1_17 ]; + + meta = { + description = ''DalmatinerDB backend to store folsom metrics''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/dalmatinerdb/folsom_ddb"; + }; + } + ) {}; + + folsom_ddb = folsom_ddb_0_1_20; + + folsomite_1_2_8 = callPackage + ( + { buildRebar3, 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''; + + }; + } + ) {}; + + folsomite = folsomite_1_2_8; + + font_awesome_phoenix_0_3_2 = callPackage + ( + { buildMix, fetchHex, phoenix_html_2_5_0 }: + buildMix { + name = "font_awesome_phoenix"; + version = "0.3.2"; + src = fetchHex { + pkg = "font_awesome_phoenix"; + version = "0.3.2"; + sha256 = + "826dd9e0400351cb539ccced605455d8da25490fd37a75085eb68fa133e65f34"; + }; + beamDeps = [ phoenix_html_2_5_0 ]; + + meta = { + description = ''HTML helper functions to build Font Awesome icon + tags.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/code-lever/font-awesome-phoenix"; + }; + } + ) {}; + + font_awesome_phoenix = font_awesome_phoenix_0_3_2; + + forcex_0_1_0 = callPackage + ( + { + buildMix, fetchHex, timex_1_0_0_rc4, httpoison_0_8_1, exjsx_3_2_0 + }: + buildMix { + name = "forcex"; + version = "0.1.0"; + src = fetchHex { + pkg = "forcex"; + version = "0.1.0"; + sha256 = + "3f7c4ddffaa0bfb0408b0148e14e344d7c42349923894ab44b56513c05c14c08"; + }; + beamDeps = [ timex_1_0_0_rc4 httpoison_0_8_1 exjsx_3_2_0 ]; + + meta = { + description = ''Elixir library for the Force.com / SalesForce / + SFDC REST API''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jeffweiss/forcex"; + }; + } + ) {}; + + forcex = forcex_0_1_0; + + forecast_io_0_2_1 = callPackage + ( + { buildMix, fetchHex, json_0_3_3, httpotion_1_0_0 }: + buildMix { + name = "forecast_io"; + version = "0.2.1"; + src = fetchHex { + pkg = "forecast_io"; + version = "0.2.1"; + sha256 = + "e109212dcd55c7d94bf9d85c1d6ee6687d35eb065335df13fc105fc242506c09"; + }; + beamDeps = [ json_0_3_3 httpotion_1_0_0 ]; + + meta = { + description = ''Simple wrapper for Forecast.IO API ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/r-icarus/forecast_io"; + }; + } + ) {}; + + forecast_io = forecast_io_0_2_1; + + form_data_0_1_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "form_data"; + version = "0.1.1"; + src = fetchHex { + pkg = "form_data"; + version = "0.1.1"; + sha256 = + "0fdc822ba56e8bb9cd945c79105572a50144f16d096a95ca4ac9fe2d754862dc"; + }; + + meta = { + description = ''Build a multipart/form-data form struct in + Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jinze/form_data"; + }; + } + ) {}; + + form_data = form_data_0_1_1; + + forms_0_0_1 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "forms"; + version = "0.0.1"; + src = fetchHex { + pkg = "forms"; + version = "0.0.1"; + sha256 = + "530f63ed8ed5a171f744fc75bd69cb2e36496899d19dbef48101b4636b795868"; + }; + + meta = { + description = ''Toolbox that simplifies working with Erlang`s + abstract format''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/efcasado/forms"; + }; + } + ) {}; + + forms = forms_0_0_1; + + fox_0_1_12 = callPackage + ( + { buildMix, fetchHex, timex_1_0_1, ecto_2_0_0_beta_0 }: + buildMix { + name = "fox"; + version = "0.1.12"; + src = fetchHex { + pkg = "fox"; + version = "0.1.12"; + sha256 = + "3b4fe9b49422d99e0c888ca839e828b70b4334637f443a14afc941be5e6a847e"; + }; + beamDeps = [ timex_1_0_1 ecto_2_0_0_beta_0 ]; + + meta = { + longDescription = ''Collection of support utility functions and + extensions for day-to-day web development with + Elixir. Includes utility extension to strings, + uri, dicts, integers, functions, parallel, + records, random, and time''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/foxnewsnetwork/fox"; + }; + } + ) {}; + + fox = fox_0_1_12; + + fqc_0_1_5 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "fqc"; + version = "0.1.5"; + src = fetchHex { + pkg = "fqc"; + version = "0.1.5"; + sha256 = + "47536dec351a12e1cbe0bc3b52bfff3b0690b0aec660472b5cf49f812eb9aa4f"; + }; + + meta = { + description = ''FiFo EQC helper''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/project-fifo/fqc"; + }; + } + ) {}; + + fqc_0_1_7 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "fqc"; + version = "0.1.7"; + src = fetchHex { + pkg = "fqc"; + version = "0.1.7"; + sha256 = + "b6873982bad60a34553b00435848521f5178b5508eeded8dfa0d8b2e00846e8e"; + }; + + meta = { + description = ''FiFo EQC helper''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/project-fifo/fqc"; + }; + } + ) {}; + + fqc = fqc_0_1_7; + + frank_0_0_3 = callPackage + ( + { buildMix, fetchHex, amqp_0_1_4 }: + buildMix { + name = "frank"; + version = "0.0.3"; + src = fetchHex { + pkg = "frank"; + version = "0.0.3"; + sha256 = + "f5f19c57aa763b483af80329f54e2de55b1fcb1dde5c304eed97fbde9ca2ce7d"; + }; + beamDeps = [ amqp_0_1_4 ]; + + meta = { + description = ''Simple Elixir client for RabbitMQ built on top of + AMQP.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/triptec/frank"; + }; + } + ) {}; + + frank = frank_0_0_3; + + friendly_1_0_1 = callPackage + ( + { buildMix, fetchHex, floki_0_7_1 }: + buildMix { + name = "friendly"; + version = "1.0.1"; + src = fetchHex { + pkg = "friendly"; + version = "1.0.1"; + sha256 = + "5bacdeba9a6752613c037f7ffacd4f7185cf9b348b3b41c73497e539bbb17602"; + }; + beamDeps = [ floki_0_7_1 ]; + + 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/"; + }; + } + ) {}; + + friendly = friendly_1_0_1; + + fs_0_9_2 = callPackage + ( + { buildRebar3, 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''; + + }; + } + ) {}; + + fs = fs_0_9_2; + + fsm_0_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + fsm = fsm_0_2_0; + + fulcrum_0_0_6 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "fulcrum"; + version = "0.0.6"; + src = fetchHex { + pkg = "fulcrum"; + version = "0.0.6"; + sha256 = + "9cddd3906bad693cad791841d19b2be089e064a5f2dd35d340f46e6cd15d7930"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + longDescription = ''Fulcrum library for Elixir. The aim is to + present the Fulcrum API as a replacement for an + Ecto Repo. So, instead of Repo.all(Form), you + can write Fulcrum.all(Form). In this way, you + only have to make minor changes to your + controllers, to work with Fulcrum.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/pinx/fulcrum"; + }; + } + ) {}; + + fulcrum = fulcrum_0_0_6; + + fumanchu_0_0_1 = callPackage + ( + { buildMix, 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''; + + }; + } + ) {}; + + fumanchu = fumanchu_0_0_1; + + funnel_0_4_1 = callPackage + ( + { + buildMix, + fetchHex, + poolboy_1_5_1, + httpoison_0_8_1, + uuid_0_1_5, + poison_1_5_2 + }: + buildMix { + name = "funnel"; + version = "0.4.1"; + src = fetchHex { + pkg = "funnel"; + version = "0.4.1"; + sha256 = + "84b937146c9464afc2a92e53aa0109de60caef599f82613fdcd4dc3e864025d7"; + }; + beamDeps = [ + poolboy_1_5_1 httpoison_0_8_1 uuid_0_1_5 poison_1_5_2 + ]; + + meta = { + description = ''Streaming API built upon ElasticSearch`s + percolation. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/af83/funnel"; + }; + } + ) {}; + + funnel = funnel_0_4_1; + + fuse_2_0_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "fuse"; + version = "2.0.0"; + src = fetchHex { + pkg = "fuse"; + version = "2.0.0"; + sha256 = + "e2c55c0629ce418974165a65b342e54527333303d7e9c1f0493679144c9698cb"; + }; + + meta = { + description = ''A Circuit breaker implementation for Erlang''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jlouis/fuse"; + }; + } + ) {}; + + fuse = fuse_2_0_0; + + fuzzyurl_0_8_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + fuzzyurl = fuzzyurl_0_8_1; + + gateway_0_0_6 = callPackage + ( + { + buildMix, fetchHex, poison_2_1_0, httpoison_0_8_1, fox_0_1_12 + }: + buildMix { + name = "gateway"; + version = "0.0.6"; + src = fetchHex { + pkg = "gateway"; + version = "0.0.6"; + sha256 = + "4d0de05b0168ee0cc41c9c38491a4b4641d446f38170ca170d0d7440b0c8f619"; + }; + beamDeps = [ poison_2_1_0 httpoison_0_8_1 fox_0_1_12 ]; + + meta = { + longDescription = ''A generic set of macros and conventions to + build clients to communicate with JSON REST + APIs''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/foxnewsnetwork/gateway"; + }; + } + ) {}; + + gateway = gateway_0_0_6; + + gb2260_0_4_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + gb2260 = gb2260_0_4_0; + + gcm_1_2_0 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "gcm"; + version = "1.2.0"; + src = fetchHex { + pkg = "gcm"; + version = "1.2.0"; + sha256 = + "281d5c2dc94a24382292f6fbfe7348316e8afa0a40285978f03e7dcae068170a"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''GCM library to send pushes through GCM''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/carnivalmobile/gcm"; + }; + } + ) {}; + + gcm = gcm_1_2_0; + + gcmex_0_0_1 = callPackage + ( + { + buildMix, fetchHex, poison_1_5_2, httpoison_0_7_5, earmark_0_2_1 + }: + buildMix { + name = "gcmex"; + version = "0.0.1"; + src = fetchHex { + pkg = "gcmex"; + version = "0.0.1"; + sha256 = + "92f3bbafd7ad0718490d1bdc10d4a2aa5ee7167c144bfe6584cf4260ab6feeab"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_7_5 earmark_0_2_1 ]; + + meta = { + description = ''Google Cloud Messaging client library for + elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/dukex/gcmex"; + }; + } + ) {}; + + gcmex = gcmex_0_0_1; + + gealts_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + gealts = gealts_0_0_1; + + gelf_logger_0_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + gelf_logger = gelf_logger_0_2_0; + + gelfex_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + gelfex = gelfex_0_0_1; + + gen_listener_tcp_0_3_2 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + gen_listener_tcp = gen_listener_tcp_0_3_2; + + gen_smtp_0_9_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + gen_smtp = gen_smtp_0_9_0; + + gendex_0_5_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + gendex = gendex_0_5_1; + + geo_1_0_1 = callPackage + ( + { + buildMix, + fetchHex, + postgrex_0_11_1, + poison_1_0_3, + ecto_2_0_0_beta_0 + }: + buildMix { + name = "geo"; + version = "1.0.1"; + src = fetchHex { + pkg = "geo"; + version = "1.0.1"; + sha256 = + "c0ab2df75521a2f50ff339294ff914b3a71e4f3753c5a82851457e0d40bb2e9c"; + }; + beamDeps = [ postgrex_0_11_1 poison_1_0_3 ecto_2_0_0_beta_0 ]; + + meta = { + description = ''PostGIS extension for Postgrex. Also encodes and + decodes WKB, WKT, and GeoJSON.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bryanjos/geo"; + }; + } + ) {}; + + geo = geo_1_0_1; + + geocalc_0_4_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + geocalc = geocalc_0_4_0; + + geocoder_0_4_0 = callPackage + ( + { + buildMix, + fetchHex, + towel_0_2_1, + poolboy_1_5_1, + poison_1_5_2, + httpoison_0_8_1 + }: + buildMix { + name = "geocoder"; + version = "0.4.0"; + src = fetchHex { + pkg = "geocoder"; + version = "0.4.0"; + sha256 = + "67c45859114f5b82949cb98b75cfc862d739a5212164e4147552c6b3701cc975"; + }; + beamDeps = [ + towel_0_2_1 poolboy_1_5_1 poison_1_5_2 httpoison_0_8_1 + ]; + + meta = { + description = ''A simple, efficient geocoder/reverse geocoder + with a built-in cache.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/knrz/geocoder"; + }; + } + ) {}; + + geocoder = geocoder_0_4_0; + + geohash_0_1_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + geohash = geohash_0_1_1; + + geolix_0_9_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + geolix = geolix_0_9_0; + + getopt_0_8_2 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + getopt = getopt_0_8_2; + + gettext_0_10_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + gettext = gettext_0_10_0; + + gh_webhook_plug_0_0_2 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1 }: + 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_1 ]; + + 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"; + }; + } + ) {}; + + gh_webhook_plug = gh_webhook_plug_0_0_2; + + gibran_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "gibran"; + version = "0.0.1"; + src = fetchHex { + pkg = "gibran"; + version = "0.0.1"; + sha256 = + "20e221e7743279bb37560c94bf93dea576d9a24d301cd75f3cfa5f6b0ec6dd20"; + }; + + meta = { + description = ''An Elixir natural language processor.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/abitdodgy/gibran"; + }; + } + ) {}; + + gibran = gibran_0_0_1; + + gil_0_0_3 = callPackage + ( + { buildMix, fetchHex, httpoison_0_7_5, floki_0_7_1 }: + buildMix { + name = "gil"; + version = "0.0.3"; + src = fetchHex { + pkg = "gil"; + version = "0.0.3"; + sha256 = + "5235fdfd30513bd5d75a93272fc952f3ae1c0746e400591c244383d8f0fe9403"; + }; + beamDeps = [ httpoison_0_7_5 floki_0_7_1 ]; + + meta = { + description = ''"Mix custome task for check exchange rate"''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/modalsoul/gil"; + }; + } + ) {}; + + gil = gil_0_0_3; + + gimei_0_0_2 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "gimei"; + version = "0.0.2"; + src = fetchHex { + pkg = "gimei"; + version = "0.0.2"; + sha256 = + "858aab561bc200358ee7098c80ea91d8c7e38b0058c55b1e4df28f5e5a27db7c"; + }; + + meta = { + description = ''Gimei is a pure Elixir library for genrating + Japanese fake data.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/KazuCocoa/elixir-gimei"; + }; + } + ) {}; + + gimei = gimei_0_0_2; + + gimei_ex_1_0_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "gimei_ex"; + version = "1.0.0"; + src = fetchHex { + pkg = "gimei_ex"; + version = "1.0.0"; + sha256 = + "21dd295d7beae218cc947d649d62d990aa2931d844c15e367528d68926a21987"; + }; + + meta = { + description = ''Elixir port of gimei library''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ma2gedev/gimei_ex"; + }; + } + ) {}; + + gimei_ex = gimei_ex_1_0_0; + + git_cli_0_1_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "git_cli"; + version = "0.1.0"; + src = fetchHex { + pkg = "git_cli"; + version = "0.1.0"; + sha256 = + "08cc7b12b7c29cee656d81008e9627b027555cbdf78fa609b599d64bbef71214"; + }; + + meta = { + description = ''A simple interface to Git CLI''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/tuvistavie/elixir-git-cli"; + }; + } + ) {}; + + git_cli = git_cli_0_1_0; + + gitex_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + gitex_0_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + gitex = gitex_0_2_0; + + github_oauth_0_1_1 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "github_oauth"; + version = "0.1.1"; + src = fetchHex { + pkg = "github_oauth"; + version = "0.1.1"; + sha256 = + "4e68983af9ed8146a2505ad759cb151c3202471285f07df6132a4acd47aa91f2"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''simple github oauth library''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/lidashuang/github_oauth"; + }; + } + ) {}; + + github_oauth = github_oauth_0_1_1; + + glitchylicious_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + glitchylicious = glitchylicious_0_0_1; + + global_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + global = global_1_0_0; + + gmail_0_0_17 = callPackage + ( + { + buildMix, + fetchHex, + timex_1_0_0_rc4, + poison_1_5_2, + httpoison_0_8_1 + }: + buildMix { + name = "gmail"; + version = "0.0.17"; + src = fetchHex { + pkg = "gmail"; + version = "0.0.17"; + sha256 = + "3c8fa022730d7e8016c777e48977077d6ebc02c4382d13d94b60f452ed8e650d"; + }; + beamDeps = [ timex_1_0_0_rc4 poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''A simple Gmail REST API client for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/craigp/elixir-gmail"; + }; + } + ) {}; + + gmail = gmail_0_0_17; + + gold_0_12_0 = callPackage + ( + { + buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1, decimal_1_1_1 + }: + buildMix { + name = "gold"; + version = "0.12.0"; + src = fetchHex { + pkg = "gold"; + version = "0.12.0"; + sha256 = + "fba43501f6c25116c29358c4b5494de5e078cc516572045ac73a7944b918105b"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 decimal_1_1_1 ]; + + meta = { + description = ''An Elixir library to interface with the Bitcoin + core JSON-RPC API.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/solatis/gold"; + }; + } + ) {}; + + gold = gold_0_12_0; + + goldrush_0_1_7 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + goldrush = goldrush_0_1_7; + + good_enough_geoid_0_0_2 = callPackage + ( + { buildMix, fetchHex, csv_1_2_4 }: + buildMix { + name = "good_enough_geoid"; + version = "0.0.2"; + src = fetchHex { + pkg = "good_enough_geoid"; + version = "0.0.2"; + sha256 = + "7b2a556206f71e743d77c26a55b60b3282bd799b8254510f62afe2a4ec330746"; + }; + beamDeps = [ csv_1_2_4 ]; + + 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"; + }; + } + ) {}; + + good_enough_geoid = good_enough_geoid_0_0_2; + + good_times_1_1_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + good_times = good_times_1_1_1; + + google_auth_0_0_2 = callPackage + ( + { + buildMix, + fetchHex, + plug_1_1_1, + 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_1 + 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"; + }; + } + ) {}; + + google_auth = google_auth_0_0_2; + + google_sheets_2_0_3 = callPackage + ( + { + buildMix, + fetchHex, + sweet_xml_0_6_1, + httpoison_0_8_1, + hackney_1_4_8 + }: + buildMix { + name = "google_sheets"; + version = "2.0.3"; + src = fetchHex { + pkg = "google_sheets"; + version = "2.0.3"; + sha256 = + "10b5708d3fb7e41a4e8e026e0cdd2c282fb4804f7f3b53e2a9dd5ddce01749fe"; + }; + beamDeps = [ sweet_xml_0_6_1 httpoison_0_8_1 hackney_1_4_8 ]; + + meta = { + description = ''OTP application for fetching and polling Google + spreadsheet data in CSV format.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/GrandCru/GoogleSheets"; + }; + } + ) {}; + + google_sheets = google_sheets_2_0_3; + + goth_0_0_3 = callPackage + ( + { + buildMix, + fetchHex, + poison_1_5_2, + json_web_token_0_2_4, + httpoison_0_8_1 + }: + buildMix { + name = "goth"; + version = "0.0.3"; + src = fetchHex { + pkg = "goth"; + version = "0.0.3"; + sha256 = + "0bbf59ae842dc4518cf42123b0fb0d0255bcb72ea37c8ec13bab2efe2339ccc3"; + }; + beamDeps = [ poison_1_5_2 json_web_token_0_2_4 httpoison_0_8_1 + ]; + + meta = { + longDescription = ''A simple library to generate and retrieve + Oauth2 tokens for use with Google Cloud Service + accounts.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/peburrows/goth"; + }; + } + ) {}; + + goth = goth_0_0_3; + + gpb_3_18_10 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "gpb"; + version = "3.18.10"; + src = fetchHex { + pkg = "gpb"; + version = "3.18.10"; + sha256 = + "caf6833ca216a08246efe660393f3bce291d46dc873ec3588f11e4c112030714"; + }; + + meta = { + description = ''A compiler for Google protocol buffer definitions + files for Erlang.''; + license = stdenv.lib.licenses.lpgl1; + homepage = "https://github.com/tomas-abrahamsson/gpb"; + }; + } + ) {}; + + gpb_3_18_8 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "gpb"; + version = "3.18.8"; + src = fetchHex { + pkg = "gpb"; + version = "3.18.8"; + sha256 = + "44af8eadd3edc030684d36ea6964926af6d95aa32e105a02fcc2cd2e1b436694"; + }; + + meta = { + description = ''A compiler for Google protocol buffer definitions + files for Erlang.''; + license = stdenv.lib.licenses.lpgl1; + homepage = "https://github.com/tomas-abrahamsson/gpb"; + }; + } + ) {}; + + gpb_3_19_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "gpb"; + version = "3.19.0"; + src = fetchHex { + pkg = "gpb"; + version = "3.19.0"; + sha256 = + "9d7fdee6914d5ce3850a58f00ae37240ba7ccb9ecf37aeb0e1bdfae37ca6b4b7"; + }; + + meta = { + description = ''A compiler for Google protocol buffer definitions + files for Erlang.''; + license = stdenv.lib.licenses.lpgl1; + homepage = "https://github.com/tomas-abrahamsson/gpb"; + }; + } + ) {}; + + gpb = gpb_3_19_0; + + gproc_0_3_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + gproc_0_5_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + gproc = gproc_0_5_0; + + graphex_0_2_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + graphex = graphex_0_2_1; + + graphmath_1_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + graphmath = graphmath_1_0_2; + + graphql_0_1_2 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "graphql"; + version = "0.1.2"; + src = fetchHex { + pkg = "graphql"; + version = "0.1.2"; + sha256 = + "d517247d9518fb1db9631a988f02935a253da43c3c2818c8a1355631645bd92c"; + }; + + meta = { + description = ''GraphQL Elixir implementation''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/graphql-elixir/graphql"; + }; + } + ) {}; + + graphql = graphql_0_1_2; + + graphql_ex_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "graphql_ex"; + version = "0.0.1"; + src = fetchHex { + pkg = "graphql_ex"; + version = "0.0.1"; + sha256 = + "51884d5275d354b915db03eb390e858ead88b3f3e4f699b2fa7dc8eb442bc343"; + }; + meta = { }; + } + ) {}; + + graphql_ex = graphql_ex_0_0_1; + + graphql_parser_0_0_3 = callPackage + ( + { buildRebar3, fetchHex, poison_1_5_2 }: + buildRebar3 { + name = "graphql_parser"; + version = "0.0.3"; + src = fetchHex { + pkg = "graphql_parser"; + version = "0.0.3"; + sha256 = + "c54d6d3a4d5daba22559bc306e3e52cb8d78d3a93738f615c16e405ad56ac6a9"; + }; + + beamDeps = [ poison_1_5_2 ]; + + meta = { + longDescription = ''An elixir interface for libgraphqlparser + implemented as a NIF for parsing GraphQL.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/aarvay/graphql_parser"; + }; + } + ) {}; + + graphql_parser = graphql_parser_0_0_3; + + gravatarify_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + gravatarify = gravatarify_0_1_0; + + gray_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + gray = gray_0_0_2; + + growl_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + growl = growl_0_0_2; + + guardian_0_10_1 = callPackage + ( + { + buildMix, + fetchHex, + uuid_1_1_3, + poison_1_5_2, + plug_1_1_1, + jose_1_6_1 + }: + buildMix { + name = "guardian"; + version = "0.10.1"; + src = fetchHex { + pkg = "guardian"; + version = "0.10.1"; + sha256 = + "741aaa989ab656317a247d1db4dcd8e3efbd840b4d451bed7a37504ffdba6dc9"; + }; + beamDeps = [ uuid_1_1_3 poison_1_5_2 plug_1_1_1 jose_1_6_1 ]; + + meta = { + description = ''Elixir Authentication framework''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ueberauth/guardian"; + }; + } + ) {}; + + guardian = guardian_0_10_1; + + guardian_0_9_1 = callPackage + ( + { + buildMix, + fetchHex, + uuid_1_1_3, + poison_1_5_2, + plug_1_1_1, + jose_1_6_1 + }: + buildMix { + name = "guardian"; + version = "0.9.1"; + src = fetchHex { + pkg = "guardian"; + version = "0.9.1"; + sha256 = + "9a79ae386f777774ab2910007cd30b20e2ea8da51c0712ec07f8cc8a13dfe293"; + }; + beamDeps = [ uuid_1_1_3 poison_1_5_2 plug_1_1_1 jose_1_6_1 ]; + + meta = { + description = ''Elixir Authentication framework''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ueberauth/guardian"; + }; + } + ) {}; + + guardian_db_0_4_0 = callPackage + ( + { + buildMix, + fetchHex, + postgrex_0_11_1, + guardian_0_9_1, + ecto_2_0_0_beta_0 + }: + buildMix { + name = "guardian_db"; + version = "0.4.0"; + src = fetchHex { + pkg = "guardian_db"; + version = "0.4.0"; + sha256 = + "d8fc1d33885c42c9a35c1c370bfe676b68a9b4fb54ed33ff7075e32cadcd1279"; + }; + beamDeps = [ postgrex_0_11_1 guardian_0_9_1 ecto_2_0_0_beta_0 ]; + + meta = { + description = ''DB tracking for token validity''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/hassox/guardian_db"; + }; + } + ) {}; + + guardian_db = guardian_db_0_4_0; + + guardsafe_0_5_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + guardsafe = guardsafe_0_5_0; + + gun_1_0_0_pre_1 = callPackage + ( + { buildRebar3, 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.''; + + }; + } + ) {}; + + gun = gun_1_0_0_pre_1; + + guri_0_2_1 = callPackage + ( + { + buildMix, + fetchHex, + websocket_client_1_1_0, + poison_1_5_2, + httpoison_0_8_1 + }: + buildMix { + name = "guri"; + version = "0.2.1"; + src = fetchHex { + pkg = "guri"; + version = "0.2.1"; + sha256 = + "7fa0f2ebff111c368895798041d982f00eec34589d93f10bb323bb5a09e1f888"; + }; + beamDeps = [ websocket_client_1_1_0 poison_1_5_2 httpoison_0_8_1 + ]; + + meta = { + description = ''Automate tasks and keep everyone in the loop with + Guri''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/elvio/guri"; + }; + } + ) {}; + + guri = guri_0_2_1; + + gurka_0_1_7 = callPackage + ( + { buildRebar3, 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; + }; + } + ) {}; + + gurka = gurka_0_1_7; + + gutenex_0_1_0 = callPackage + ( + { buildMix, fetchHex, imagineer_0_2_1, apex_0_3_7 }: + buildMix { + name = "gutenex"; + version = "0.1.0"; + src = fetchHex { + pkg = "gutenex"; + version = "0.1.0"; + sha256 = + "212861089f4707ae39e25c08c0d2bb33fca876f1cf71ce7d4546d192c3be03a5"; + }; + beamDeps = [ imagineer_0_2_1 apex_0_3_7 ]; + + meta = { + description = ''PDF Generation in Elixir ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/SenecaSystems/gutenex"; + }; + } + ) {}; + + gutenex = gutenex_0_1_0; + + hackney_1_0_6 = callPackage + ( + { + buildRebar3, fetchHex, ssl_verify_hostname_1_0_1, idna_1_0_2 + }: + buildRebar3 { + name = "hackney"; + version = "1.0.6"; + src = fetchHex { + pkg = "hackney"; + version = "1.0.6"; + sha256 = + "ba74e309ffd9413ca2fdc0c68871e31db9d6f779f8aa32f4828e08ebab8300da"; + }; + + beamDeps = [ ssl_verify_hostname_1_0_1 idna_1_0_2 ]; + + meta = { + description = ''simple HTTP client''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/benoitc/hackney"; + }; + } + ) {}; + + hackney_1_1_0 = callPackage + ( + { + buildRebar3, fetchHex, ssl_verify_hostname_1_0_6, idna_1_0_3 + }: + buildRebar3 { + name = "hackney"; + version = "1.1.0"; + src = fetchHex { + pkg = "hackney"; + version = "1.1.0"; + sha256 = + "c8551072fdc8d5d5faacc5a31050cb943c3a8eb533149798b3ff424ef2d68501"; + }; + + beamDeps = [ ssl_verify_hostname_1_0_6 idna_1_0_3 ]; + + meta = { + description = ''simple HTTP client''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/benoitc/hackney"; + }; + } + ) {}; + + hackney_1_3_1 = callPackage + ( + { + buildRebar3, fetchHex, ssl_verify_hostname_1_0_6, idna_1_0_3 + }: + buildRebar3 { + name = "hackney"; + version = "1.3.1"; + src = fetchHex { + pkg = "hackney"; + version = "1.3.1"; + sha256 = + "1a6316daceae744758fc88f2961e68c5a8b6cf1e1f49a28fc2caea6d27581add"; + }; + + beamDeps = [ ssl_verify_hostname_1_0_6 idna_1_0_3 ]; + + meta = { + description = ''simple HTTP client''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/benoitc/hackney"; + }; + } + ) {}; + + hackney_1_3_2 = callPackage + ( + { + buildRebar3, fetchHex, ssl_verify_hostname_1_0_6, idna_1_0_3 + }: + buildRebar3 { + name = "hackney"; + version = "1.3.2"; + src = fetchHex { + pkg = "hackney"; + version = "1.3.2"; + sha256 = + "9b811cff637b29f9c7e2c61abf01986c85cd4f64a9422315fd803993b4e82615"; + }; + + beamDeps = [ ssl_verify_hostname_1_0_6 idna_1_0_3 ]; + + meta = { + description = ''simple HTTP client''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/benoitc/hackney"; + }; + } + ) {}; + + hackney_1_4_4 = callPackage + ( + { + buildRebar3, + fetchHex, + ssl_verify_hostname_1_0_5, + mimerl_1_0_0, + idna_1_0_2, + certifi_0_1_1 + }: + buildRebar3 { + name = "hackney"; + version = "1.4.4"; + src = fetchHex { + pkg = "hackney"; + version = "1.4.4"; + sha256 = + "c8ab2436556d6bce7e85a85adec67f6abeb8c7508668a3e29750be3c4bf4e3a8"; + }; + + beamDeps = [ + ssl_verify_hostname_1_0_5 + mimerl_1_0_0 + idna_1_0_2 + certifi_0_1_1 + ]; + + meta = { + description = ''simple HTTP client''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/benoitc/hackney"; + }; + } + ) {}; + + hackney_1_4_8 = callPackage + ( + { + buildRebar3, + fetchHex, + ssl_verify_hostname_1_0_5, + mimerl_1_0_2, + idna_1_0_3, + certifi_0_3_0 + }: + buildRebar3 { + name = "hackney"; + version = "1.4.8"; + src = fetchHex { + pkg = "hackney"; + version = "1.4.8"; + sha256 = + "7c212741163cec1cf38ad845bd71efafcbf81365cf754c978b354c6375dc4da2"; + }; + + beamDeps = [ + ssl_verify_hostname_1_0_5 + mimerl_1_0_2 + idna_1_0_3 + certifi_0_3_0 + ]; + + meta = { + description = ''simple HTTP client''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/benoitc/hackney"; + }; + } + ) {}; + + hackney = hackney_1_4_8; + + haikunator_1_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + haikunator = haikunator_1_0_1; + + hamcrest_0_1_1 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "hamcrest"; + version = "0.1.1"; + src = fetchHex { + pkg = "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; + + happy_1_1_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + happy = happy_1_1_1; + + harakiri_0_6_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + harakiri = harakiri_0_6_0; + + harvest_0_0_2 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "harvest"; + version = "0.0.2"; + src = fetchHex { + pkg = "harvest"; + version = "0.0.2"; + sha256 = + "d4d7289c7f166cd035140b6ebe6a14c4cf1f1552b597473bcc29588c8e394e6d"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''Harvest Time Tracking API wrapper written in + Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/luishurtado/harvest"; + }; + } + ) {}; + + harvest = harvest_0_0_2; + + hash_ring_ex_1_1_2 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "hash_ring_ex"; + version = "1.1.2"; + src = fetchHex { + pkg = "hash_ring_ex"; + version = "1.1.2"; + sha256 = + "f33c2f7cc134d9ab1b91d961395b3a2b4d3d47b12b16c4e9d964bc3b57b7d573"; + }; + + meta = { + description = ''A consistent hash-ring implemention for Elixir. + ''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/reset/hash-ring-ex"; + }; + } + ) {}; + + hash_ring_ex = hash_ring_ex_1_1_2; + + hashids_2_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "hashids"; + version = "2.0.1"; + src = fetchHex { + pkg = "hashids"; + version = "2.0.1"; + sha256 = + "8f16b2bf57a71ce5da716bdd731c61e789e2c25f1fd5c00130f0efee9a251a26"; + }; + + meta = { + description = ''Hashids lets you obfuscate numerical identifiers + via reversible mapping.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/alco/hashids-elixir"; + }; + } + ) {}; + + hashids = hashids_2_0_1; + + heapq_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + heapq = heapq_0_0_1; + + hedwig_1_0_0_rc3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + hedwig = hedwig_1_0_0_rc3; + + hedwig_xmpp_1_0_0_rc2 = callPackage + ( + { buildMix, fetchHex, romeo_0_4_0, hedwig_1_0_0_rc3 }: + buildMix { + name = "hedwig_xmpp"; + version = "1.0.0-rc2"; + src = fetchHex { + pkg = "hedwig_xmpp"; + version = "1.0.0-rc2"; + sha256 = + "79d60e836763c9eb88798bb5921e8eda717fbbf3030ca401f2a3915f58bc59e0"; + }; + beamDeps = [ romeo_0_4_0 hedwig_1_0_0_rc3 ]; + + meta = { + description = ''An XMPP adapter for Hedwig''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/hedwig-im/hedwig"; + }; + } + ) {}; + + hedwig_xmpp = hedwig_xmpp_1_0_0_rc2; + + hello_0_0_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "hello"; + version = "0.0.0"; + src = fetchHex { + pkg = "hello"; + version = "0.0.0"; + sha256 = + "35378799d296eda76d236544085041c8d19cd9f6dd6d5f31b5914bee6e6128fc"; + }; + + meta = { + description = ''Reserving this name for an awesome project I am + building.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/thejamespinto"; + }; + } + ) {}; + + hello = hello_0_0_0; + + hello_world_0_0_0 = callPackage + ( + { buildMix, fetchHex, decimal_0_2_5 }: + buildMix { + name = "hello_world"; + version = "0.0.0"; + src = fetchHex { + pkg = "hello_world"; + version = "0.0.0"; + sha256 = + "ae8b9c09cd73bf5268bdd4095cb9d5efbb716cb841834a6edf111f45279b207d"; + }; + beamDeps = [ decimal_0_2_5 ]; + + meta = { + description = ''hello-world test''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/shanilevy/hello_world_hex"; + }; + } + ) {}; + + hello_world = hello_world_0_0_0; + + hello_world_header_0_0_1 = callPackage + ( + { buildMix, fetchHex, plug_0_8_1, cowboy_1_0_4 }: + buildMix { + name = "hello_world_header"; + version = "0.0.1"; + src = fetchHex { + pkg = "hello_world_header"; + version = "0.0.1"; + sha256 = + "caddb7712a66326face465231cf3bfe9210a62787cf5f499f9fbcc04e4695242"; + }; + beamDeps = [ plug_0_8_1 cowboy_1_0_4 ]; + + meta = { + description = ''Demo plug used for tutorial purposes.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/cultivatehq/hello_world_header"; + }; + } + ) {}; + + hello_world_header = hello_world_header_0_0_1; + + hermes_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + hermes = hermes_0_1_0; + + hex_math_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + hex_math = hex_math_0_0_2; + + hex_searcher_1_0_0 = callPackage + ( + { + buildMix, + fetchHex, + table_rex_0_4_0, + ibrowse_4_2_2, + httpotion_2_1_0, + floki_0_7_1 + }: + buildMix { + name = "hex_searcher"; + version = "1.0.0"; + src = fetchHex { + pkg = "hex_searcher"; + version = "1.0.0"; + sha256 = + "26d2097aa0f950c67ea55822e15cfec26976f76a60ec51d758af9d60126b3538"; + }; + beamDeps = [ + table_rex_0_4_0 + ibrowse_4_2_2 + httpotion_2_1_0 + floki_0_7_1 + ]; + + meta = { + description = ''Search hex packages from terminal''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/nguyenvinhlinh/HexSearcher"; + }; + } + ) {}; + + hex_searcher = hex_searcher_1_0_0; + + hexate_0_5_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + hexate = hexate_0_5_1; + + hexbot_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + hexbot = hexbot_0_0_1; + + hexdocset_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + hexdocset = hexdocset_1_0_0; + + hexoku_0_1_0 = callPackage + ( + { buildMix, fetchHex, jsex_2_0_0, httpoison_0_8_1 }: + buildMix { + name = "hexoku"; + version = "0.1.0"; + src = fetchHex { + pkg = "hexoku"; + version = "0.1.0"; + sha256 = + "39c24660842061d71922df5f87ac4fa065b3f18f64a4f438d40495ffeb9d711b"; + }; + beamDeps = [ jsex_2_0_0 httpoison_0_8_1 ]; + + meta = { + description = ''Heroku API client and Heroku Mix tasks for Elixir + projects. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/JonGretar/Hexoku"; + }; + } + ) {}; + + hexoku = hexoku_0_1_0; + + hlc_2_0_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + hlc = hlc_2_0_0; + + holidays_0_1_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + holidays = holidays_0_1_1; + + honeybadger_0_3_1 = callPackage + ( + { + buildMix, fetchHex, poison_1_5_2, plug_0_8_1, httpoison_0_8_1 + }: + buildMix { + name = "honeybadger"; + version = "0.3.1"; + src = fetchHex { + pkg = "honeybadger"; + version = "0.3.1"; + sha256 = + "9555cbe7a4069f27f8182c066411f6c439f79f147eb0a1605e13d55b07fb260b"; + }; + beamDeps = [ poison_1_5_2 plug_0_8_1 httpoison_0_8_1 ]; + + meta = { + longDescription = ''Elixir client, Plug and error_logger for + integrating with the Honeybadger.io exception + tracker''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/honeybadger-io/honeybadger-elixir"; + }; + } + ) {}; + + honeybadger = honeybadger_0_3_1; + + honeydew_0_0_8 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "honeydew"; + version = "0.0.8"; + src = fetchHex { + pkg = "honeydew"; + version = "0.0.8"; + sha256 = + "3bf8f7d9665f2897c43f6f3f5f31e598ecf41270bfb57fae11b994715f2665cc"; + }; + + meta = { + description = ''Job queue + worker pool with permanent + workers.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/koudelka/elixir-honeydew"; + }; + } + ) {}; + + honeydew = honeydew_0_0_8; + + hooks_1_1_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + hooks = hooks_1_1_1; + + hound_0_8_2 = callPackage + ( + { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_1 }: + buildMix { + name = "hound"; + version = "0.8.2"; + src = fetchHex { + pkg = "hound"; + version = "0.8.2"; + sha256 = + "3ecb4b7d20de76e6790d61e53555e3486ed5810bb6f0052321620b1d46ffb188"; + }; + beamDeps = [ poison_2_1_0 httpoison_0_8_1 ]; + + meta = { + description = ''Webdriver library for integration testing and + browser automation''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/HashNuke/hound"; + }; + } + ) {}; + + hound = hound_0_8_2; + + hr_0_2_2 = callPackage + ( + { + buildMix, + fetchHex, + yyid_0_1_2, + plug_1_1_1, + phoenix_html_2_5_0, + phoenix_ecto_3_0_0_beta_0, + phoenix_1_1_4, + oauth2_0_3_0, + linguist_0_1_5, + joken_0_16_1, + comeonin_1_6_0 + }: + buildMix { + name = "hr"; + version = "0.2.2"; + src = fetchHex { + pkg = "hr"; + version = "0.2.2"; + sha256 = + "67d02f62bffda952dbaf80cfea85601f31c39e04d3bf90da7a08b89e1bce71df"; + }; + beamDeps = [ + yyid_0_1_2 + plug_1_1_1 + phoenix_html_2_5_0 + phoenix_ecto_3_0_0_beta_0 + phoenix_1_1_4 + oauth2_0_3_0 + linguist_0_1_5 + joken_0_16_1 + comeonin_1_6_0 + ]; + + meta = { + description = ''User accounts for Phoenix. Supports OAuth, JWT + and forms out of the box''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/zensavona/hr"; + }; + } + ) {}; + + hr = hr_0_2_2; + + hstore_0_0_2 = callPackage + ( + { buildMix, fetchHex, postgrex_0_6_0, apex_0_3_7 }: + buildMix { + name = "hstore"; + version = "0.0.2"; + src = fetchHex { + pkg = "hstore"; + version = "0.0.2"; + sha256 = + "bd5040285c29162685f4db37ef3ad30c2bb473f5c54fe03ef29b4383cf23504a"; + }; + beamDeps = [ postgrex_0_6_0 apex_0_3_7 ]; + + meta = { + longDescription = ''A collection of encoders and decoders for + hstore data type support for Postgrex. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/senecasystems/hstore"; + }; + } + ) {}; + + hstore = hstore_0_0_2; + + html_builder_0_1_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "html_builder"; + version = "0.1.0"; + src = fetchHex { + pkg = "html_builder"; + version = "0.1.0"; + sha256 = + "825fa6d1be1c42bf91dcd198c791eb32156973a70273afb93616285f97dce0c2"; + }; + + meta = { + description = ''generate html in elixir with simple data + structures''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/camshaft/html_builder"; + }; + } + ) {}; + + html_builder = html_builder_0_1_0; + + html_entities_0_3_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + html_entities = html_entities_0_3_0; + + html_sanitize_ex_0_3_1 = callPackage + ( + { buildMix, fetchHex, mochiweb_2_12_2 }: + buildMix { + name = "html_sanitize_ex"; + version = "0.3.1"; + src = fetchHex { + pkg = "html_sanitize_ex"; + version = "0.3.1"; + sha256 = + "cf99531194f621515cc7f62db14f899e404529782b94061b44931c3c4b78099d"; + }; + beamDeps = [ mochiweb_2_12_2 ]; + + meta = { + description = ''HTML sanitizer for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rrrene/html_sanitize_ex"; + }; + } + ) {}; + + html_sanitize_ex = html_sanitize_ex_0_3_1; + + html_to_pdf_0_5_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + html_to_pdf = html_to_pdf_0_5_2; + + htpasswd_1_0_2 = callPackage + ( + { buildMix, fetchHex, apache_passwd_md5_1_0_0 }: + buildMix { + name = "htpasswd"; + version = "1.0.2"; + src = fetchHex { + pkg = "htpasswd"; + version = "1.0.2"; + sha256 = + "0c9006a42eae68ac2f561e5876c0fd8083560c57da099ffa6c828eeb00246bba"; + }; + beamDeps = [ apache_passwd_md5_1_0_0 ]; + + meta = { + longDescription = ''Provides basic htpasswd(1) functions as a + library: encode and check passwords in MD5, SHA, + crypt, or plaintext format, add to and delete + from htaccess files. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/kevinmontuori/Apache.htpasswd"; + }; + } + ) {}; + + htpasswd = htpasswd_1_0_2; + + http_0_0_1 = callPackage + ( + { + buildMix, + fetchHex, + pool_0_0_2, + excoveralls_0_5_1, + ex_doc_0_6_2, + earmark_0_1_19, + dialyze_0_1_4 + }: + buildMix { + name = "http"; + version = "0.0.1"; + src = fetchHex { + pkg = "http"; + version = "0.0.1"; + sha256 = + "1ee497d4ec73290e5d9b9effab88786716185550bd65822e7a31c32d1a044a96"; + }; + beamDeps = [ + pool_0_0_2 + excoveralls_0_5_1 + ex_doc_0_6_2 + earmark_0_1_19 + dialyze_0_1_4 + ]; + + meta = { + description = ''HTTP server for Elixir Not currently working, but + close :) ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/slogsdon/http"; + }; + } + ) {}; + + http = http_0_0_1; + + http_proxy_1_0_1 = callPackage + ( + { + buildMix, + fetchHex, + plug_1_0_3, + hackney_1_4_8, + exjsx_3_2_0, + cowboy_1_0_4 + }: + buildMix { + name = "http_proxy"; + version = "1.0.1"; + src = fetchHex { + pkg = "http_proxy"; + version = "1.0.1"; + sha256 = + "7ff5d10c8932b189844f9735742250e4fdbe9de5eba40c84e7447f54fc75fdd3"; + }; + beamDeps = [ plug_1_0_3 hackney_1_4_8 exjsx_3_2_0 cowboy_1_0_4 + ]; + + meta = { + description = ''Multi port HTTP Proxy and support record/play + request.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/KazuCocoa/http_proxy"; + }; + } + ) {}; + + http_proxy = http_proxy_1_0_1; + + http_router_0_0_8 = callPackage + ( + { + buildMix, + fetchHex, + xml_builder_0_0_8, + poison_1_5_2, + plug_1_1_1, + 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_1 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"; + }; + } + ) {}; + + http_router = http_router_0_0_8; + + http_signature_1_1_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + 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"; + }; + } + ) {}; + + http_signature = http_signature_1_1_0; + + httparrot_0_3_4 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + httparrot = httparrot_0_3_4; + + httpehaviour_0_9_0 = callPackage + ( + { buildMix, fetchHex, hackney_1_4_8 }: + buildMix { + name = "httpehaviour"; + version = "0.9.0"; + src = fetchHex { + pkg = "httpehaviour"; + version = "0.9.0"; + sha256 = + "54e93dcf0e62d392781078cf029478194797fe67c98dffe99a91b5d5ec33e4e5"; + }; + beamDeps = [ hackney_1_4_8 ]; + + meta = { + description = ''Yet Yet Another HTTP client for Elixir powered by + hackney''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/edgurgel/httpehaviour"; + }; + } + ) {}; + + httpehaviour = httpehaviour_0_9_0; + + httpoison_0_7_1 = callPackage + ( + { buildMix, fetchHex, hackney_1_3_2 }: + buildMix { + name = "httpoison"; + version = "0.7.1"; + src = fetchHex { + pkg = "httpoison"; + version = "0.7.1"; + sha256 = + "ad146f8a1e8cb81d50337ca62bd83a80fc1e3df768b93a9ed4c497c3a554c9b0"; + }; + beamDeps = [ hackney_1_3_2 ]; + + meta = { + description = ''Yet Another HTTP client for Elixir powered by + hackney''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/edgurgel/httpoison"; + }; + } + ) {}; + + httpoison_0_7_5 = callPackage + ( + { buildMix, fetchHex, hackney_1_3_2 }: + buildMix { + name = "httpoison"; + version = "0.7.5"; + src = fetchHex { + pkg = "httpoison"; + version = "0.7.5"; + sha256 = + "a9b32452df3c4671c012953d6bb15e3a52bbb41b618f72cbd464e8c9320847c9"; + }; + beamDeps = [ hackney_1_3_2 ]; + + meta = { + description = ''Yet Another HTTP client for Elixir powered by + hackney''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/edgurgel/httpoison"; + }; + } + ) {}; + + httpoison_0_8_0 = callPackage + ( + { buildMix, fetchHex, hackney_1_4_8 }: + buildMix { + name = "httpoison"; + version = "0.8.0"; + src = fetchHex { + pkg = "httpoison"; + version = "0.8.0"; + sha256 = + "7a6455689233867da40f285e9e3bcce506cd0c60b1094e1c449de76a46b9e50b"; + }; + beamDeps = [ hackney_1_4_8 ]; + + meta = { + description = ''Yet Another HTTP client for Elixir powered by + hackney''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/edgurgel/httpoison"; + }; + } + ) {}; + + httpoison_0_8_1 = callPackage + ( + { buildMix, fetchHex, hackney_1_4_8 }: + buildMix { + name = "httpoison"; + version = "0.8.1"; + src = fetchHex { + pkg = "httpoison"; + version = "0.8.1"; + sha256 = + "b4cf6955675f86c77f939b10d29491632a1d227ce1dc4c4db759bc4a52cea600"; + }; + beamDeps = [ hackney_1_4_8 ]; + + meta = { + description = ''Yet Another HTTP client for Elixir powered by + hackney''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/edgurgel/httpoison"; + }; + } + ) {}; + + httpoison = httpoison_0_8_1; + + httpotion_1_0_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "httpotion"; + version = "1.0.0"; + src = fetchHex { + pkg = "httpotion"; + version = "1.0.0"; + sha256 = + "1ff7af8a280928316ba43e15644b75eedd4481dcd56426beb6cad920b244b734"; + }; + + meta = { + description = ''Fancy HTTP client for Elixir, based on + ibrowse.''; + license = stdenv.lib.licenses.unlicense; + homepage = "https://github.com/myfreeweb/httpotion"; + }; + } + ) {}; + + httpotion_2_0_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "httpotion"; + version = "2.0.0"; + src = fetchHex { + pkg = "httpotion"; + version = "2.0.0"; + sha256 = + "550c94a898f3f2f0bb5f45a18380df66c478fc05b899a1febd7fd3ca666b93c8"; + }; + + meta = { + description = ''Fancy HTTP client for Elixir, based on + ibrowse.''; + license = stdenv.lib.licenses.unlicense; + homepage = "https://github.com/myfreeweb/httpotion"; + }; + } + ) {}; + + httpotion_2_1_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "httpotion"; + version = "2.1.0"; + src = fetchHex { + pkg = "httpotion"; + version = "2.1.0"; + sha256 = + "d34f1e82283b6b953f611dc24571aa2586e72e19d3d6632b8e3dba78cf1e3761"; + }; + + meta = { + description = ''Fancy HTTP client for Elixir, based on + ibrowse.''; + license = stdenv.lib.licenses.unlicense; + homepage = "https://github.com/myfreeweb/httpotion"; + }; + } + ) {}; + + httpotion_2_2_0 = callPackage + ( + { buildMix, fetchHex, ibrowse_4_2_2 }: + buildMix { + name = "httpotion"; + version = "2.2.0"; + src = fetchHex { + pkg = "httpotion"; + version = "2.2.0"; + sha256 = + "b5df0909f1cce248a021a1ba970053dbb59bd2695a188396bfc08b6bd73cbd77"; + }; + 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"; + }; + } + ) {}; + + httpotion = httpotion_2_2_0; + + httprot_0_1_7 = callPackage + ( + { buildMix, fetchHex, socket_0_3_1 }: + buildMix { + name = "httprot"; + version = "0.1.7"; + src = fetchHex { + pkg = "httprot"; + version = "0.1.7"; + sha256 = + "3cf35411d7b16a9af13af4a569eeac09d3375f05ac86139f3448f87302719999"; + }; + beamDeps = [ socket_0_3_1 ]; + + meta = { + description = ''HTTP client library''; + license = stdenv.lib.licenses.wtfpl; + homepage = "https://github.com/meh/httprot"; + }; + } + ) {}; + + httprot = httprot_0_1_7; + + huami_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + huami = huami_0_0_1; + + huex_0_5_0 = callPackage + ( + { buildMix, fetchHex, json_0_3_3, httpoison_0_8_1 }: + buildMix { + name = "huex"; + version = "0.5.0"; + src = fetchHex { + pkg = "huex"; + version = "0.5.0"; + sha256 = + "e5fe37fdc4299567922697516df8ade2f64d2c1573dc9a253e5037f66576858f"; + }; + beamDeps = [ json_0_3_3 httpoison_0_8_1 ]; + + meta = { + description = ''Elixir client for Philips Hue connected light + bulbs''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/xavier/huex"; + }; + } + ) {}; + + huex = huex_0_5_0; + + hufflehoff_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + hufflehoff = hufflehoff_0_0_1; + + huffman_1_1_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + huffman = huffman_1_1_1; + + hulaaki_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + hulaaki = hulaaki_0_0_2; + + hydra_0_0_1 = callPackage + ( + { + buildMix, + fetchHex, + porcelain_2_0_1, + poison_1_5_2, + plug_1_1_1, + httpoison_0_8_1, + cowboy_1_0_4 + }: + buildMix { + name = "hydra"; + version = "0.0.1"; + src = fetchHex { + pkg = "hydra"; + version = "0.0.1"; + sha256 = + "ea35ec756dfaa0390ba53a0313bb50b924517f746922a98e3489bddf8e066b7d"; + }; + beamDeps = [ + porcelain_2_0_1 + poison_1_5_2 + plug_1_1_1 + httpoison_0_8_1 + cowboy_1_0_4 + ]; + + meta = { + description = ''A multi-headed beast: API gateway, request cache, + and data transformations''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/doomspork/hydra"; + }; + } + ) {}; + + hydra = hydra_0_0_1; + + hypermedia_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + hypermedia = hypermedia_0_0_1; + + hypermock_0_0_2 = callPackage + ( + { buildMix, fetchHex, meck_0_8_4 }: + buildMix { + name = "hypermock"; + version = "0.0.2"; + src = fetchHex { + pkg = "hypermock"; + version = "0.0.2"; + sha256 = + "dbb7ad24f651a3bb99475f39f9b0d6b7e9b3f959d8a80577ea6c803a5b548516"; + }; + beamDeps = [ meck_0_8_4 ]; + + meta = { }; + } + ) {}; + + hypermock = hypermock_0_0_2; + + iam_role_1_0_0 = callPackage + ( + { buildMix, fetchHex, jsone_1_2_0 }: + buildMix { + name = "iam_role"; + version = "1.0.0"; + src = fetchHex { + pkg = "iam_role"; + version = "1.0.0"; + sha256 = + "acfc5d5c5130a36dfb2b460f790bd9e32bf39274f17333bd65c28d216983761d"; + }; + beamDeps = [ jsone_1_2_0 ]; + + meta = { + description = ''Application for automatically fetching AWS IAM + role security credentials.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/tsharju/iam_role"; + }; + } + ) {}; + + iam_role = iam_role_1_0_0; + + ibrowse_4_2_2 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + ibrowse = ibrowse_4_2_2; + + iconv_1_0_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "iconv"; + version = "1.0.0"; + src = fetchHex { + pkg = "iconv"; + version = "1.0.0"; + sha256 = + "2ac0268bf0b392b86dca00b63d90595959ebc3dca6305284045592fa487e7204"; + }; + compilePorts = true; + + meta = { + description = ''Fast encoding conversion library for Erlang / + Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/processone/iconv"; + }; + } + ) {}; + + iconv = iconv_1_0_0; + + identicon_0_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + identicon = identicon_0_2_0; + + idna_1_0_2 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + 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"; + }; + } + ) {}; + + idna_1_0_3 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + idna = idna_1_0_3; + + ielixir_0_9_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "ielixir"; + version = "0.9.0"; + src = fetchHex { + pkg = "ielixir"; + version = "0.9.0"; + sha256 = + "a6cce07a3aeb493bd248f063ba0327e88103b64c0c54657e344dab1c6f568078"; + }; + + meta = { + description = ''Jupyter`s kernel for Elixir programming + language''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/pprzetacznik/ielixir"; + }; + } + ) {}; + + ielixir = ielixir_0_9_0; + + ifttt_oauth_0_0_1 = callPackage + ( + { buildMix, fetchHex, oauth2_0_5_0 }: + buildMix { + name = "ifttt_oauth"; + version = "0.0.1"; + src = fetchHex { + pkg = "ifttt_oauth"; + version = "0.0.1"; + sha256 = + "9029506687be770891b3fb54d9e39bab9dd0f65a9551c6b335a3b0a60dc3026c"; + }; + beamDeps = [ oauth2_0_5_0 ]; + + meta = { + longDescription = ''A simple Elixir wrapper around + scrogson/oauth2 to retrieve IFTTT Bearer tokens + from their mobile api.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/nickgal/ifttt_oauth"; + }; + } + ) {}; + + ifttt_oauth = ifttt_oauth_0_0_1; + + imagineer_0_2_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + imagineer = imagineer_0_2_1; + + imgex_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + imgex = imgex_0_1_0; + + immortal_0_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + immortal = immortal_0_2_0; + + inaka_aleppo_0_9_9 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "inaka_aleppo"; + version = "0.9.9"; + src = fetchHex { + pkg = "inaka_aleppo"; + version = "0.9.9"; + sha256 = + "11c09648e42b5755a437319a12826c17344a162db73dd2880457b0fa3a1ce1ff"; + }; + + meta = { + description = ''Aleppo: ALternative Erlang Pre-ProcessOr''; + + homepage = "https://github.com/inaka/aleppo"; + }; + } + ) {}; + + inaka_aleppo = inaka_aleppo_0_9_9; + + inaka_mixer_0_1_5 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "inaka_mixer"; + version = "0.1.5"; + src = fetchHex { + pkg = "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; + + inch_ex_0_5_1 = callPackage + ( + { buildMix, fetchHex, poison_1_0_3 }: + buildMix { + name = "inch_ex"; + version = "0.5.1"; + src = fetchHex { + pkg = "inch_ex"; + version = "0.5.1"; + sha256 = + "4d0aaefa4928fdc4758118a37dccb5b90805559ada3f652ca157f66ea268ea20"; + }; + beamDeps = [ poison_1_0_3 ]; + + meta = { + description = ''Provides a Mix task that gives you hints where to + improve your inline docs''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rrrene/inch_ex"; + }; + } + ) {}; + + inch_ex = inch_ex_0_5_1; + + inch_test_0_0_1 = callPackage + ( + { + buildMix, fetchHex, inch_ex_0_5_1, ex_doc_0_11_4, earmark_0_2_1 + }: + buildMix { + name = "inch_test"; + version = "0.0.1"; + src = fetchHex { + pkg = "inch_test"; + version = "0.0.1"; + sha256 = + "41405c11b22fad3f3b49127f881c2c4c79b206c04b8cb77268828380779a374d"; + }; + beamDeps = [ inch_ex_0_5_1 ex_doc_0_11_4 earmark_0_2_1 ]; + + meta = { }; + } + ) {}; + + inch_test = inch_test_0_0_1; + + indefinite_article_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + indefinite_article = indefinite_article_0_0_1; + + inet_cidr_1_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + inet_cidr = inet_cidr_1_0_1; + + inflex_0_2_3 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "inflex"; + version = "0.2.3"; + src = fetchHex { + pkg = "inflex"; + version = "0.2.3"; + sha256 = + "1acb28e23bfb8a38e07fbb764a2691a59fce5c499a79fd27e869a43495710e64"; + }; + + meta = { + description = ''An Elixir library for handling word + inflections.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/nurugger07/inflex"; + }; + } + ) {}; + + inflex_0_3_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + inflex_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + inflex_1_4_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + inflex_1_5_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + inflex = inflex_1_5_0; + + ini_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ini = ini_0_0_1; + + inquisitor_0_0_2 = callPackage + ( + { buildMix, fetchHex, ecto_2_0_0_beta_0 }: + buildMix { + name = "inquisitor"; + version = "0.0.2"; + src = fetchHex { + pkg = "inquisitor"; + version = "0.0.2"; + sha256 = + "a4d6ed194db0600bad5a19b4efbdd900a0aa943ad79dc03a9a81aaba7ffd4d3d"; + }; + beamDeps = [ ecto_2_0_0_beta_0 ]; + + meta = { + description = ''Easily build extendable and composable Ecto + queries.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/dockyard/inquisitor"; + }; + } + ) {}; + + inquisitor = inquisitor_0_0_2; + + insert_ordered_set_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + insert_ordered_set = insert_ordered_set_0_0_1; + + insight_0_0_2 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "insight"; + version = "0.0.2"; + src = fetchHex { + pkg = "insight"; + version = "0.0.2"; + sha256 = + "0088430e0a2826d7b52313d9c29af67712530b18a21a192d5e134f975f0596fe"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''Elixir package for consuming any Insight-powered + Bitcoin explorer.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/stampery/elixir-insight"; + }; + } + ) {}; + + insight = insight_0_0_2; + + insights_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + insights = insights_0_0_2; + + instream_0_9_0 = callPackage + ( + { + buildMix, fetchHex, poolboy_1_5_1, poison_1_5_2, hackney_1_4_8 + }: + buildMix { + name = "instream"; + version = "0.9.0"; + src = fetchHex { + pkg = "instream"; + version = "0.9.0"; + sha256 = + "e0413b68ca4a593ca11179e968c7c5f79d897a2435d5d40def68f6bc59d7a042"; + }; + beamDeps = [ poolboy_1_5_1 poison_1_5_2 hackney_1_4_8 ]; + + meta = { + description = ''InfluxDB driver for Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/mneudert/instream"; + }; + } + ) {}; + + instream = instream_0_9_0; + + instrumental_0_1_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + instrumental = instrumental_0_1_3; + + intellij_elixir_0_1_2 = callPackage + ( + { buildMix, fetchHex, exrm_0_15_1 }: + buildMix { + name = "intellij_elixir"; + version = "0.1.2"; + src = fetchHex { + pkg = "intellij_elixir"; + version = "0.1.2"; + sha256 = + "023e970e20ef19dbd6e818708c687faf9b47b525b9771bc910a4e48adc101a46"; + }; + beamDeps = [ exrm_0_15_1 ]; + + meta = { + longDescription = ''IntellijElixir allows intellij-elixir to ask + Elixir for the native quoted form of code to + check that intellij-elixir`s quoted form + matches. ''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/KronicDeth/intellij_elixir"; + }; + } + ) {}; + + intellij_elixir = intellij_elixir_0_1_2; + + iona_0_2_1 = callPackage + ( + { buildMix, fetchHex, porcelain_2_0_1, briefly_0_3_0 }: + buildMix { + name = "iona"; + version = "0.2.1"; + src = fetchHex { + pkg = "iona"; + version = "0.2.1"; + sha256 = + "6c990a1a3dcf144f26d5ce773b4f4538c53ed259c775818991bd28f516317bd5"; + }; + beamDeps = [ porcelain_2_0_1 briefly_0_3_0 ]; + + meta = { + description = ''Document generation using LaTeX''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/CargoSense/iona"; + }; + } + ) {}; + + iona = iona_0_2_1; + + iplist_1_0_2 = callPackage + ( + { buildMix, fetchHex, earmark_0_2_1, cidr_0_5_0 }: + buildMix { + name = "iplist"; + version = "1.0.2"; + src = fetchHex { + pkg = "iplist"; + version = "1.0.2"; + sha256 = + "fae5b5accc8b7a7618c2d1fbf94607ce6e79ca3b493da6643dbb1bd92be30bd4"; + }; + beamDeps = [ earmark_0_2_1 cidr_0_5_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"; + }; + } + ) {}; + + iplist = iplist_1_0_2; + + is_email_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + is_email = is_email_0_0_2; + + is_up_1_0_0 = callPackage + ( + { buildMix, fetchHex, httpotion_2_1_0 }: + buildMix { + name = "is_up"; + version = "1.0.0"; + src = fetchHex { + pkg = "is_up"; + version = "1.0.0"; + sha256 = + "8811dde26c0142174987941b6395e1934e54c3a88db1d5b19e38b6f794e93c87"; + }; + beamDeps = [ httpotion_2_1_0 ]; + + meta = { + description = ''Check whether a given url is up.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/johnotander/is_up"; + }; + } + ) {}; + + is_up = is_up_1_0_0; + + is_url_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + is_url = is_url_0_0_1; + + isaac_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + isaac = isaac_0_0_1; + + isbndbex_0_0_1 = callPackage + ( + { + buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1, credo_0_1_10 + }: + buildMix { + name = "isbndbex"; + version = "0.0.1"; + src = fetchHex { + pkg = "isbndbex"; + version = "0.0.1"; + sha256 = + "565fe2ea413d0ec50d51c166ad1dd5dc840c3cdb01e70467484017aa6b14d1f9"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 credo_0_1_10 ]; + + meta = { + description = ''Elixir wrapper for isbndb.com json api.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rcoedo/isbndbex"; + }; + } + ) {}; + + isbndbex = isbndbex_0_0_1; + + isn_1_0_0 = callPackage + ( + { buildMix, fetchHex, postgrex_0_11_1, ecto_2_0_0_beta_0 }: + buildMix { + name = "isn"; + version = "1.0.0"; + src = fetchHex { + pkg = "isn"; + version = "1.0.0"; + sha256 = + "08fe62a8fa20333f65e750d7e4abe8c2f215994e514e495178fa718b5a4e3673"; + }; + beamDeps = [ postgrex_0_11_1 ecto_2_0_0_beta_0 ]; + + meta = { + description = ''Ecto types for the postgreSQL isn extension.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/Frost/isn"; + }; + } + ) {}; + + isn = isn_1_0_0; + + iso3166_0_0_2 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, floki_0_7_1 }: + buildMix { + name = "iso3166"; + version = "0.0.2"; + src = fetchHex { + pkg = "iso3166"; + version = "0.0.2"; + sha256 = + "c36a652871f31d4b50b4ebd75e99094a1cf9ad7d3df9ddd467b94c2b4dbf9466"; + }; + beamDeps = [ poison_1_5_2 floki_0_7_1 ]; + + 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"; + }; + } + ) {}; + + iso3166 = iso3166_0_0_2; + + ja_serializer_0_7_1 = callPackage + ( + { + buildMix, + fetchHex, + scrivener_1_1_2, + poison_1_5_2, + plug_1_1_1, + inflex_1_5_0, + ecto_2_0_0_beta_0 + }: + buildMix { + name = "ja_serializer"; + version = "0.7.1"; + src = fetchHex { + pkg = "ja_serializer"; + version = "0.7.1"; + sha256 = + "3f85203b1dd2e1c501ac41d45e9213a659e67c00ebacbe1b3e5b042c50f226ea"; + }; + beamDeps = [ + scrivener_1_1_2 + poison_1_5_2 + plug_1_1_1 + inflex_1_5_0 + ecto_2_0_0_beta_0 + ]; + + meta = { + longDescription = ''A serialization library implementing the + jsonapi.org 1.0 spec suitable for use building + JSON APIs in Pheonix, Relax, or any other plug + based framework/library.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/AgilionApps/ja_serializer"; + }; + } + ) {}; + + ja_serializer = ja_serializer_0_7_1; + + janrain_0_0_1 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_1 }: + buildMix { + name = "janrain"; + version = "0.0.1"; + src = fetchHex { + pkg = "janrain"; + version = "0.0.1"; + sha256 = + "35299ee088dfd5647e7a5cd129d5011f2d6319fe53045b2a8ce3ddf70792cc78"; + }; + beamDeps = [ httpoison_0_8_1 ]; + + meta = { + longDescription = ''A small library to help with Janrain logins. + Probably most useful when used in conjuction + with Phoenix and Guardian.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rickr/janrain"; + }; + } + ) {}; + + janrain = janrain_0_0_1; + + japanese_holiday_0_0_2 = callPackage + ( + { buildMix, fetchHex, timex_0_12_9 }: + buildMix { + name = "japanese_holiday"; + version = "0.0.2"; + src = fetchHex { + pkg = "japanese_holiday"; + version = "0.0.2"; + sha256 = + "3363e2062dbdad48de88d092c549e8b55eecc2d86a61168578e54e6ba9065eaf"; + }; + beamDeps = [ timex_0_12_9 ]; + + meta = { + description = ''An elixir library for japanese holiday ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Joe-noh/japanese_holiday"; + }; + } + ) {}; + + japanese_holiday = japanese_holiday_0_0_2; + + jazz_0_1_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "jazz"; + version = "0.1.1"; + src = fetchHex { + pkg = "jazz"; + version = "0.1.1"; + sha256 = + "e348e93a07c449789d17ddddd11cba080ef43132affdd1a287765f3e307ecd1c"; + }; + + meta = { + description = ''JSON handling library for Elixir.''; + license = stdenv.lib.licenses.wtfpl; + homepage = "https://github.com/meh/jazz"; + }; + } + ) {}; + + jazz_0_2_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "jazz"; + version = "0.2.1"; + src = fetchHex { + pkg = "jazz"; + version = "0.2.1"; + sha256 = + "1c239947305efba0f3e48786a815fd512d49af4acf61914c03ebb18cc79c0477"; + }; + + meta = { + description = ''JSON handling library for Elixir.''; + license = stdenv.lib.licenses.wtfpl; + homepage = "https://github.com/meh/jazz"; + }; + } + ) {}; + + jazz = jazz_0_2_1; + + jc_1_0_4 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "jc"; + version = "1.0.4"; + src = fetchHex { + pkg = "jc"; + version = "1.0.4"; + sha256 = + "8bcfe202084109fc80fcf521e630466fc53cbb909aff4283bed43252664023df"; + }; + + meta = { + description = ''A simple, distributed, in-memory caching + system''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jr0senblum/jc"; + }; + } + ) {}; + + jc = jc_1_0_4; + + jequalson_0_1_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + jequalson = jequalson_0_1_1; + + jesse_0_1_3 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + jesse = jesse_0_1_3; + + jiffy_0_14_7 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + jiffy = jiffy_0_14_7; + + jira_0_0_8 = callPackage + ( + { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_1 }: + buildMix { + name = "jira"; + version = "0.0.8"; + src = fetchHex { + pkg = "jira"; + version = "0.0.8"; + sha256 = + "71c19ef23ea7351a2dc7b8f14d0c5794ff00382fa43a88a2235ec9c1741a73cb"; + }; + beamDeps = [ poison_2_1_0 httpoison_0_8_1 ]; + + meta = { + description = ''An Elixir client library for JIRA + JIRA Agile / + Greenhopper''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jeffweiss/jira"; + }; + } + ) {}; + + jira = jira_0_0_8; + + jobspool_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + jobspool = jobspool_0_1_0; + + joken_0_13_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + joken_0_16_1 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, plug_1_1_1, jose_1_6_1 }: + 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_1 jose_1_6_1 ]; + + meta = { + description = ''JWT Library for Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/bryanjos/joken"; + }; + } + ) {}; + + joken_1_1_0 = callPackage + ( + { buildMix, fetchHex, poison_1_0_3, plug_1_1_1, jose_1_6_1 }: + buildMix { + name = "joken"; + version = "1.1.0"; + src = fetchHex { + pkg = "joken"; + version = "1.1.0"; + sha256 = + "05e3ff0799b97b8513a5a17a8f57b1d7ee250f32561e559c997c0ecbea462287"; + }; + beamDeps = [ poison_1_0_3 plug_1_1_1 jose_1_6_1 ]; + + meta = { + description = ''JWT Library for Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/bryanjos/joken"; + }; + } + ) {}; + + joken = joken_1_1_0; + + jolt_0_1_0 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, plug_1_1_1, 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_1 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"; + }; + } + ) {}; + + jolt = jolt_0_1_0; + + jorel_mix_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + jorel_mix = jorel_mix_0_0_1; + + jose_1_6_1 = callPackage + ( + { buildRebar3, fetchHex, base64url_0_0_1 }: + buildRebar3 { + name = "jose"; + version = "1.6.1"; + src = fetchHex { + pkg = "jose"; + version = "1.6.1"; + sha256 = + "36f1875790af6a1353a737fa13c6ba1f5356f1bd569341ac035eeaa22be23ac9"; + }; + + 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"; + }; + } + ) {}; + + jose = jose_1_6_1; + + jsex_2_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + jsex = jsex_2_0_0; + + json_0_3_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + json = json_0_3_3; + + json_diff_ex_0_5_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + json_diff_ex = json_diff_ex_0_5_0; + + json_logger_0_5_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + json_logger = json_logger_0_5_1; + + json_pointer_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + json_pointer = json_pointer_0_0_2; + + json_web_token_0_2_4 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + json_web_token = json_web_token_0_2_4; + + jsonapi_0_1_0 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1 }: + buildMix { + name = "jsonapi"; + version = "0.1.0"; + src = fetchHex { + pkg = "jsonapi"; + version = "0.1.0"; + sha256 = + "b4c7d4797a680f23ae8dae666b4e71573f0bb3330223ebb53985e754ade265c8"; + }; + beamDeps = [ plug_1_1_1 ]; + + meta = { + longDescription = ''Fully functional JSONAPI V1 Serializer as + well as a QueryParser for Plug bases projects + and applications.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jeregrine/jsonapi"; + }; + } + ) {}; + + jsonapi = jsonapi_0_1_0; + + jsone_1_2_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "jsone"; + version = "1.2.0"; + src = fetchHex { + pkg = "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 + ( + { buildRebar3, 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"; + }; + } + ) {}; + + jsx_2_4_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + jsx_2_6_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + jsx_2_6_2 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + jsx_2_7_1 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + 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"; + }; + } + ) {}; + + jsx_2_8_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + 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"; + }; + } + ) {}; + + jsx = jsx_2_8_0; + + jsxd_0_1_10 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + jsxd = jsxd_0_1_10; + + jsxn_0_2_1 = callPackage + ( + { buildRebar3, fetchHex, jsx_2_8_0 }: + buildRebar3 { + name = "jsxn"; + version = "0.2.1"; + src = fetchHex { + pkg = "jsxn"; + version = "0.2.1"; + sha256 = + "122a52538dc34ddf4a6efcaeb9744fc948d132f3608e96f109a0d1a054fd1f57"; + }; + + beamDeps = [ jsx_2_8_0 ]; + + meta = { + description = ''jsx but with maps''; + + homepage = "https://github.com/talentdeficit/jsxn"; + }; + } + ) {}; + + jsxn = jsxn_0_2_1; + + junit_formatter_0_1_2 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "junit_formatter"; + version = "0.1.2"; + src = fetchHex { + pkg = "junit_formatter"; + version = "0.1.2"; + sha256 = + "1bfd13c71b116541b46ca1b9c07fb82483da9acaaad706e277e4b08e2b198316"; + }; + + 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"; + }; + } + ) {}; + + junit_formatter = junit_formatter_0_1_2; + + jwalk_1_1_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "jwalk"; + version = "1.1.0"; + src = fetchHex { + pkg = "jwalk"; + version = "1.1.0"; + sha256 = + "10c150910ba3539583887cb2b5c3f70d602138471e6f6b5c22498aa18ed654e1"; + }; + + 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"; + }; + } + ) {}; + + jwalk = jwalk_1_1_0; + + jwt_0_1_1 = callPackage + ( + { buildRebar3, fetchHex, jsx_2_8_0, base64url_0_0_1 }: + buildRebar3 { + name = "jwt"; + version = "0.1.1"; + src = fetchHex { + pkg = "jwt"; + version = "0.1.1"; + sha256 = + "abcff4a2a42af2b7b7bdf55eeb2b73ce2e3bef760750004e74bc5835d64d2188"; + }; + + 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"; + }; + } + ) {}; + + jwt = jwt_0_1_1; + + jwt_claims_0_0_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + jwt_claims = jwt_claims_0_0_3; + + jwtex_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + jwtex = jwtex_0_0_1; + + kafka_ex_0_4_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "kafka_ex"; + version = "0.4.0"; + src = fetchHex { + pkg = "kafka_ex"; + version = "0.4.0"; + sha256 = + "93355c6acb4d11b000ced332da9ac91dad1ed0468e9f240b040869a0cde5d71a"; + }; + + meta = { + description = ''Kafka client for Elixir/Erlang.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/kafkaex/kafka_ex"; + }; + } + ) {}; + + kafka_ex = kafka_ex_0_4_0; + + kaguya_0_3_7 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "kaguya"; + version = "0.3.7"; + src = fetchHex { + pkg = "kaguya"; + version = "0.3.7"; + sha256 = + "eced5d988fb5bc868e09402c2dd1f6cc67e60d9f07af2d263aada831021f0d84"; + }; + + 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"; + }; + } + ) {}; + + kaguya = kaguya_0_3_7; + + kalecto_0_3_3 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + kalecto = kalecto_0_3_3; + + kalends_0_6_5 = callPackage + ( + { buildRebar3, fetchHex, tzdata_0_1_8 }: + buildRebar3 { + name = "kalends"; + version = "0.6.5"; + src = fetchHex { + pkg = "kalends"; + version = "0.6.5"; + sha256 = + "b16621edbccdbe5d3f76efe03dab59292f3782d0d7e29bbe2de9943e49968fe2"; + }; + + beamDeps = [ tzdata_0_1_8 ]; + + 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"; + }; + } + ) {}; + + kalends = kalends_0_6_5; + + kane_0_0_5 = callPackage + ( + { + buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1, goth_0_0_3 + }: + buildMix { + name = "kane"; + version = "0.0.5"; + src = fetchHex { + pkg = "kane"; + version = "0.0.5"; + sha256 = + "e4865178b16793d4f947dee2f21448b3639fad2b1edeb515df67707cf30dc2c3"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 goth_0_0_3 ]; + + meta = { + longDescription = ''A library for interacting with Google Cloud + Pub/Sub (PubSub). Supports both publication and + pull subscription''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/peburrows/kane"; + }; + } + ) {}; + + kane = kane_0_0_5; + + katipo_0_2_4 = callPackage + ( + { + buildRebar3, + fetchHex, + uri_0_1_0, + quintana_0_2_0, + gproc_0_5_0, + cowlib_1_0_0 + }: + buildRebar3 { + name = "katipo"; + version = "0.2.4"; + src = fetchHex { + pkg = "katipo"; + version = "0.2.4"; + sha256 = + "7ad315785b1e43a78c9d5912469401ab5fa396182acf1ab40feea39539a53d1e"; + }; + compilePorts = true; + beamDeps = [ uri_0_1_0 quintana_0_2_0 gproc_0_5_0 cowlib_1_0_0 + ]; + + meta = { + description = ''HTTP client based on libcurl''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/puzza007/katipo"; + }; + } + ) {}; + + katipo = katipo_0_2_4; + + keccakf1600_2_0_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "keccakf1600"; + version = "2.0.0"; + src = fetchHex { + pkg = "keccakf1600"; + version = "2.0.0"; + sha256 = + "bf381475f5d1daf1df2f46bf24d1d4b91debb638b5a6b014cdce40e32eee8f07"; + }; + compilePorts = true; + + meta = { + description = ''Keccak-f[1600] asynchronous port driver''; + license = stdenv.lib.licenses.mpl20; + homepage = "https://github.com/potatosalad/erlang-keccakf1600"; + }; + } + ) {}; + + keccakf1600 = keccakf1600_2_0_0; + + keelless_0_1_0 = callPackage + ( + { + buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1, hackney_1_4_4 + }: + buildMix { + name = "keelless"; + version = "0.1.0"; + src = fetchHex { + pkg = "keelless"; + version = "0.1.0"; + sha256 = + "b038600bb0520975a052fe6852a2dcd0dbd1069309134c617519079037d6927e"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 hackney_1_4_4 ]; + + meta = { + description = ''Keen IO API for Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/hpyhacking/keelless"; + }; + } + ) {}; + + keelless = keelless_0_1_0; + + keenex_0_2_0 = callPackage + ( + { buildMix, fetchHex, poison_1_3_1, httpotion_1_0_0 }: + buildMix { + name = "keenex"; + version = "0.2.0"; + src = fetchHex { + pkg = "keenex"; + version = "0.2.0"; + sha256 = + "5f66d942fe7066bec625985779d7e69647462e586a704e449cc7229ea752ccb9"; + }; + beamDeps = [ poison_1_3_1 httpotion_1_0_0 ]; + + meta = { + description = ''Keen.io API Client''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bryanjos/keenex"; + }; + } + ) {}; + + keenex = keenex_0_2_0; + + key2value_1_5_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + key2value = key2value_1_5_1; + + keys1value_1_5_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + keys1value = keys1value_1_5_1; + + kindred_0_0_1 = callPackage + ( + { + buildMix, fetchHex, poison_2_0_1, httpoison_0_8_1, ex_rated_1_2_1 + }: + buildMix { + name = "kindred"; + version = "0.0.1"; + src = fetchHex { + pkg = "kindred"; + version = "0.0.1"; + sha256 = + "48b229e007f3d6d06e38f49c85598c20fb6e76d92afd441a86fdee931c2f5fc2"; + }; + beamDeps = [ poison_2_0_1 httpoison_0_8_1 ex_rated_1_2_1 ]; + + meta = { + description = ''League of Legends API client written in Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/matthewferderber/kindred"; + }; + } + ) {}; + + kindred = kindred_0_0_1; + + kitsune_0_5_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + kitsune = kitsune_0_5_2; + + kovacs_0_9_2 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "kovacs"; + version = "0.9.2"; + src = fetchHex { + pkg = "kovacs"; + version = "0.9.2"; + sha256 = + "0d6fc6830f0d22e793b2472d8808e86384596e26b7bdd17becba3af7f0a8495e"; + }; + + meta = { + longDescription = ''Kovacs - A simple ExUnit test runner It will + monitor the file system and run test files when + it detects changes. ''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/antp/kovacs"; + }; + } + ) {}; + + kovacs = kovacs_0_9_2; + + kubex_0_1_1 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "kubex"; + version = "0.1.1"; + src = fetchHex { + pkg = "kubex"; + version = "0.1.1"; + sha256 = + "b0bd22246731b1c4d4d7f832cd0015fd6586022c779fb6672f45a648da7dcf79"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''Kubernetes integration for and in pure Elixir.''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/ingerslevio/kubex"; + }; + } + ) {}; + + kubex = kubex_0_1_1; + + kvs_2_1_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "kvs"; + version = "2.1.0"; + src = fetchHex { + pkg = "kvs"; + version = "2.1.0"; + sha256 = + "c06382e4dbe8a7dc58201187ddd303e5b1e546713da3a3813863fe62e63dc4c7"; + }; + + meta = { + description = ''Erlang Abstract Database''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/synrc/kvs"; + }; + } + ) {}; + + kvs = kvs_2_1_0; + + kwfuns_0_0_4 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + kwfuns = kwfuns_0_0_4; + + lager_2_1_1 = callPackage + ( + { buildRebar3, fetchHex, goldrush_0_1_7 }: + buildRebar3 { + name = "lager"; + version = "2.1.1"; + src = fetchHex { + pkg = "lager"; + version = "2.1.1"; + sha256 = + "5eb1c17ff0f8692285b7648ef5d827d492b8d7554da782afc300ebb4861d5aba"; + }; + + beamDeps = [ goldrush_0_1_7 ]; + + meta = { + description = ''Erlang logging framework''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/basho/lager"; + }; + } + ) {}; + + lager_3_0_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + lager_3_0_2 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + lager = lager_3_0_2; + + lager_graylog_0_1_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + lager_graylog = lager_graylog_0_1_0; + + lager_logger_1_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + lager_logger = lager_logger_1_0_2; + + lager_logstash_backend_0_1_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + lager_logstash_backend = lager_logstash_backend_0_1_0; + + lager_watchdog_0_1_10 = callPackage + ( + { buildRebar3, fetchHex, lager_2_1_1 }: + buildRebar3 { + name = "lager_watchdog"; + version = "0.1.10"; + src = fetchHex { + pkg = "lager_watchdog"; + version = "0.1.10"; + sha256 = + "ac2a5f7d519fa69fff3d41c5c19419552085346f98de4378ca38efa81c322a94"; + }; + + beamDeps = [ lager_2_1_1 ]; + + meta = { + description = ''lager provider to send data to watchdog.''; + license = stdenv.lib.licenses.cddl; + homepage = "https://github.com/project-fifo/lager_watchdog"; + }; + } + ) {}; + + lager_watchdog = lager_watchdog_0_1_10; + + lasp_0_0_4 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "lasp"; + version = "0.0.4"; + src = fetchHex { + pkg = "lasp"; + version = "0.0.4"; + sha256 = + "d119098a34bbd0331ab1cb22e0f1f1d25da35132f8a61ecdc0ed5c0135c84942"; + }; + + meta = { + description = ''Declarative, distributed, eventually consistent + compuations.''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/lasp-lang/lasp"; + }; + } + ) {}; + + lasp = lasp_0_0_4; + + lasse_1_1_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + 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"; + }; + } + ) {}; + + lasse = lasse_1_1_0; + + lazymaru_0_2_5 = callPackage + ( + { buildMix, fetchHex, poison_1_3_1, plug_0_9_0, cowboy_1_0_4 }: + buildMix { + name = "lazymaru"; + version = "0.2.5"; + src = fetchHex { + pkg = "lazymaru"; + version = "0.2.5"; + sha256 = + "aeb7d963ddcd48791014922dc93030b182ee1fb13b7efbe041190c92cf1e939e"; + }; + beamDeps = [ poison_1_3_1 plug_0_9_0 cowboy_1_0_4 ]; + + meta = { + description = ''Elixir copy of grape for creating REST-like + APIs.''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/falood/lazymaru"; + }; + } + ) {}; + + lazymaru = lazymaru_0_2_5; + + ledx_0_0_1 = callPackage + ( + { buildMix, fetchHex, elixir_ale_0_4_1 }: + buildMix { + name = "ledx"; + version = "0.0.1"; + src = fetchHex { + pkg = "ledx"; + version = "0.0.1"; + sha256 = + "f468e65572b7c9dcb6c906678c873194818bb1dd78ce35b7dddd9397df4f81a6"; + }; + beamDeps = [ elixir_ale_0_4_1 ]; + + meta = { + description = ''Ledx is a simple library for interfacing with + LEDs on embedded platforms.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/danmarcab/ledx"; + }; + } + ) {}; + + ledx = ledx_0_0_1; + + level_1_0_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + level = level_1_0_0; + + lex_luthor_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + lex_luthor = lex_luthor_0_1_0; + + lfsr_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + lfsr = lfsr_0_0_2; + + lhttpc_1_3_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + lhttpc = lhttpc_1_3_0; + + libchunter_0_1_45 = callPackage + ( + { buildRebar3, fetchHex, lager_2_1_1, fifo_spec_0_1_27 }: + buildRebar3 { + name = "libchunter"; + version = "0.1.45"; + src = fetchHex { + pkg = "libchunter"; + version = "0.1.45"; + sha256 = + "ecd76f18b2a1ee115b86a6b485119c2a36de9da1d41449dd5bc7e139dedeeb4b"; + }; + + beamDeps = [ lager_2_1_1 fifo_spec_0_1_27 ]; + + meta = { + description = ''Chunter interface library.''; + license = stdenv.lib.licenses.cddl; + homepage = "https://github.com/project-fifo/libchunter"; + }; + } + ) {}; + + libchunter = libchunter_0_1_45; + + libex_config_0_2_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "libex_config"; + version = "0.2.0"; + src = fetchHex { + pkg = "libex_config"; + version = "0.2.0"; + sha256 = + "27534209d8661d597017426922d64267f2452baac36866ba0bb470792f55292d"; + }; + + meta = { + description = ''LibEx.Config exposes helpers around accessing OTP + application configuration. ''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/reset/libex-config"; + }; + } + ) {}; + + libex_config = libex_config_0_2_0; + + libleofs_0_1_2 = callPackage + ( + { buildRebar3, fetchHex, jsx_1_4_5 }: + buildRebar3 { + name = "libleofs"; + version = "0.1.2"; + src = fetchHex { + pkg = "libleofs"; + version = "0.1.2"; + sha256 = + "62c39168e30a94e6bf0c3b3677995f5735ca03358465a6756db01a75c4e5c04b"; + }; + + beamDeps = [ jsx_1_4_5 ]; + + meta = { + description = ''LeoFS management library.''; + license = stdenv.lib.licenses.cddl; + homepage = "https://github.com/project-fifo/libleofs"; + }; + } + ) {}; + + libleofs = libleofs_0_1_2; + + librex_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + librex = librex_1_0_0; + + libsnarl_0_3_40 = callPackage + ( + { + buildRebar3, + fetchHex, + oauth2_erlang_0_6_1, + mdns_client_lib_0_1_33, + libsnarlmatch_0_1_7, + lager_3_0_2, + fifo_spec_0_1_27 + }: + buildRebar3 { + name = "libsnarl"; + version = "0.3.40"; + src = fetchHex { + pkg = "libsnarl"; + version = "0.3.40"; + sha256 = + "fd574da4318b2732dd275fed371d13cd6ed4d0424e7acc3e0429ea97859fabbf"; + }; + + beamDeps = [ + oauth2_erlang_0_6_1 + mdns_client_lib_0_1_33 + libsnarlmatch_0_1_7 + lager_3_0_2 + fifo_spec_0_1_27 + ]; + + meta = { + description = ''snarl interface library''; + + }; + } + ) {}; + + libsnarl = libsnarl_0_3_40; + + libsnarlmatch_0_1_5 = callPackage + ( + { buildRebar3, fetchHex, fqc_0_1_5 }: + buildRebar3 { + name = "libsnarlmatch"; + version = "0.1.5"; + src = fetchHex { + pkg = "libsnarlmatch"; + version = "0.1.5"; + sha256 = + "11410122ca7a0685c4a7df1795d7f5a1e7bf9c5f17096414402fd9d1f0e1ac04"; + }; + + beamDeps = [ 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 + ( + { buildRebar3, 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"; + }; + } + ) {}; + + libsnarlmatch = libsnarlmatch_0_1_7; + + libsniffle_0_3_37 = callPackage + ( + { + buildRebar3, + fetchHex, + mdns_client_lib_0_1_33, + lager_3_0_2, + fifo_spec_0_1_27 + }: + buildRebar3 { + name = "libsniffle"; + version = "0.3.37"; + src = fetchHex { + pkg = "libsniffle"; + version = "0.3.37"; + sha256 = + "fa840488f50292bbe206e7c13cc9640099cacec8aea3c0c581f6cc482b5bd94c"; + }; + + beamDeps = [ mdns_client_lib_0_1_33 lager_3_0_2 fifo_spec_0_1_27 + ]; + + meta = { + description = ''Sniffle API''; + license = stdenv.lib.licenses.cddl; + homepage = "https://github.com/project-fifo/libsniffle"; + }; + } + ) {}; + + libsniffle = libsniffle_0_3_37; + + libsodium_0_0_3 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "libsodium"; + version = "0.0.3"; + src = fetchHex { + pkg = "libsodium"; + version = "0.0.3"; + sha256 = + "e66e9d91647a1519194cb0b240144123d68fae0f8cb57a9be9ced30ba8e24397"; + }; + compilePorts = true; + + meta = { + description = ''libsodium port driver''; + license = stdenv.lib.licenses.mpl20; + homepage = "https://github.com/potatosalad/erlang-libsodium"; + }; + } + ) {}; + + libsodium = libsodium_0_0_3; + + lineo_0_1_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + lineo = lineo_0_1_0; + + linguist_0_1_5 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + linguist = linguist_0_1_5; + + link_shrinkex_1_0_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "link_shrinkex"; + version = "1.0.0"; + src = fetchHex { + pkg = "link_shrinkex"; + version = "1.0.0"; + sha256 = + "2c7d99b23849f90d9aec8cd4f9960c6c198351735eda754288b778fe0e5f7e82"; + }; + + meta = { + description = ''Google`s URL Shortener API for Elixir. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jonahoffline/link_shrinkex"; + }; + } + ) {}; + + link_shrinkex = link_shrinkex_1_0_0; + + liquid_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + liquid = liquid_0_1_0; + + locker_1_0_8 = callPackage + ( + { buildRebar3, fetchHex, proper_1_1_1_beta }: + buildRebar3 { + name = "locker"; + version = "1.0.8"; + src = fetchHex { + pkg = "locker"; + version = "1.0.8"; + sha256 = + "9cf9890e6b12dab7b8d1997c455348742db6caf2eaac3b64c514cd4e8dca2b56"; + }; + + beamDeps = [ proper_1_1_1_beta ]; + + meta = { + longDescription = ''Distributed de-centralized consistent + in-memory key-value store written in Erlang.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/wooga/locker"; + }; + } + ) {}; + + locker = locker_1_0_8; + + logfmt_3_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + logfmt = logfmt_3_0_2; + + logger_file_backend_0_0_6 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "logger_file_backend"; + version = "0.0.6"; + src = fetchHex { + pkg = "logger_file_backend"; + version = "0.0.6"; + sha256 = + "57554adfad0599adc3ea540accc1791d4adffedbe87640c0b92df9b860bb1c69"; + }; + + meta = { + description = ''Simple logger backend that writes to a file''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/onkel-dirtus/logger_file_backend"; + }; + } + ) {}; + + logger_file_backend = logger_file_backend_0_0_6; + + logger_logentries_backend_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "logger_logentries_backend"; + version = "0.0.1"; + src = fetchHex { + pkg = "logger_logentries_backend"; + version = "0.0.1"; + sha256 = + "f3db38f7ab4dc40cd8078bf4cad79ce2a1e759f0f7f2b2dee4fbc3abb8fe3d7e"; + }; + + meta = { + longDescription = ''A Logger backend to support the Logentries + service (logentries.com) TCP input log + mechanism''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/sysdia-solutions/logger_logentries_backend"; + }; + } + ) {}; + + logger_logentries_backend = logger_logentries_backend_0_0_1; + + logger_loggly_backend_0_1_0 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_1 }: + buildMix { + name = "logger_loggly_backend"; + version = "0.1.0"; + src = fetchHex { + pkg = "logger_loggly_backend"; + version = "0.1.0"; + sha256 = + "4b19e284f0b910c824a228093afa176ea4b9c4546893b2ad5da2769aa2bcbc85"; + }; + beamDeps = [ httpoison_0_8_1 ]; + + meta = { + description = ''Loggly logger backend''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/joeyfeldberg/loggly_backend"; + }; + } + ) {}; + + logger_loggly_backend = logger_loggly_backend_0_1_0; + + logger_logstash_backend_1_0_0 = callPackage + ( + { buildMix, fetchHex, timex_1_0_1, exjsx_3_1_0 }: + buildMix { + name = "logger_logstash_backend"; + version = "1.0.0"; + src = fetchHex { + pkg = "logger_logstash_backend"; + version = "1.0.0"; + sha256 = + "ca36f8ab5f738c143da6b72c9d603ede7e201e2a1c7d683b270c2641d14bbcb2"; + }; + beamDeps = [ timex_1_0_1 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"; + }; + } + ) {}; + + logger_logstash_backend = logger_logstash_backend_1_0_0; + + logger_papertrail_backend_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + logger_papertrail_backend = logger_papertrail_backend_0_0_2; + + lolcat_0_0_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + lolcat = lolcat_0_0_1; + + loom_0_0_10 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + loom = loom_0_0_10; + + lru_1_3_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + lru = lru_1_3_1; + + lru_cache_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + lru_cache = lru_cache_0_1_0; + + ltsv_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ltsv = ltsv_0_1_0; + + luhn_0_3_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "luhn"; + version = "0.3.0"; + src = fetchHex { + pkg = "luhn"; + version = "0.3.0"; + sha256 = + "e98e7dac83e18d75dbcb87559f17f7b40c00edf79a38b02b9ab5a7d74b05efc2"; + }; + + meta = { + description = ''Luhn algorithm in Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ma2gedev/luhn_ex"; + }; + } + ) {}; + + luhn = luhn_0_3_0; + + luhnatex_0_5_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + luhnatex = luhnatex_0_5_0; + + lz4_0_2_2 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + lz4 = lz4_0_2_2; + + lz_string_0_0_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + lz_string = lz_string_0_0_3; + + m2x_1_3_1 = callPackage + ( + { buildMix, fetchHex, json_0_3_3, hackney_1_4_8 }: + buildMix { + name = "m2x"; + version = "1.3.1"; + src = fetchHex { + pkg = "m2x"; + version = "1.3.1"; + sha256 = + "3325226ac185b40304469aa94a7376511bf57d535eb1d32b2aca6c2009c54fe2"; + }; + beamDeps = [ json_0_3_3 hackney_1_4_8 ]; + + meta = { + longDescription = ''Elixir client library for the AT&T M2X + (http://m2x.att.com) API. AT&T M2X is a + cloud-based fully managed time-series data + storage service for network connected + machine-to-machine (M2M) devices and the + Internet of Things (IoT).''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/attm2x/m2x-elixir"; + }; + } + ) {}; + + m2x = m2x_1_3_1; + + m2x_erlang_1_3_1 = callPackage + ( + { buildMix, fetchHex, jsx_2_8_0, hackney_1_4_8 }: + buildMix { + name = "m2x_erlang"; + version = "1.3.1"; + src = fetchHex { + pkg = "m2x_erlang"; + version = "1.3.1"; + sha256 = + "873db746f4428490670b54aabcc93fda8d94c3c4e25c94a9aef7275858a8b809"; + }; + beamDeps = [ jsx_2_8_0 hackney_1_4_8 ]; + + meta = { + longDescription = ''Erlang client library for the AT&T M2X + (http://m2x.att.com) API. AT&T M2X is a + cloud-based fully managed time-series data + storage service for network connected + machine-to-machine (M2M) devices and the + Internet of Things (IoT).''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/attm2x/m2x-erlang"; + }; + } + ) {}; + + m2x_erlang = m2x_erlang_1_3_1; + + mad_0_9_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "mad"; + version = "0.9.0"; + src = fetchHex { + pkg = "mad"; + version = "0.9.0"; + sha256 = + "5eeb635094586b517f08000b059b680981c7da5527bab83e7bfa3f54176c0f1e"; + }; + + meta = { + description = ''Small and fast rebar replacement''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/synrc/mad"; + }; + } + ) {}; + + mad = mad_0_9_0; + + mail_0_0_2 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "mail"; + version = "0.0.2"; + src = fetchHex { + pkg = "mail"; + version = "0.0.2"; + sha256 = + "724cea5cac7b0ffdf2fa65a8d89d7c83de72da7eba6d6b31f8669854cb32baa3"; + }; + + meta = { + description = ''Easily build a composable mail message''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/DockYard/elixir-mail"; + }; + } + ) {}; + + mail = mail_0_0_2; + + mailchimp_0_0_5 = callPackage + ( + { buildMix, fetchHex, poison_2_1_0, httpoison_0_7_5 }: + buildMix { + name = "mailchimp"; + version = "0.0.5"; + src = fetchHex { + pkg = "mailchimp"; + version = "0.0.5"; + sha256 = + "e2681ec4a99a3ba59a523e1e6369ca276399733fb34d08fd823a1e0658613de9"; + }; + beamDeps = [ poison_2_1_0 httpoison_0_7_5 ]; + + meta = { + description = ''A basic Elixir wrapper for version 3 of the + MailChimp API.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/duartejc/mailchimp"; + }; + } + ) {}; + + mailchimp = mailchimp_0_0_5; + + mailer_1_0_0 = callPackage + ( + { buildMix, fetchHex, timex_1_0_1, gen_smtp_0_9_0 }: + buildMix { + name = "mailer"; + version = "1.0.0"; + src = fetchHex { + pkg = "mailer"; + version = "1.0.0"; + sha256 = + "cd54048c0cea44b9d96b82352d74fadf078e705b343c62a6e6e27f60de21099b"; + }; + beamDeps = [ timex_1_0_1 gen_smtp_0_9_0 ]; + + meta = { + description = ''Mailer - A simple email client''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/antp/mailer"; + }; + } + ) {}; + + mailer = mailer_1_0_0; + + mailgun_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + mailgun_0_1_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + mailgun = mailgun_0_1_2; + + mailgun_webhook_auth_1_0_0 = callPackage + ( + { buildMix, fetchHex, plug_0_8_1, cowboy_1_0_4 }: + buildMix { + name = "mailgun_webhook_auth"; + version = "1.0.0"; + src = fetchHex { + pkg = "mailgun_webhook_auth"; + version = "1.0.0"; + sha256 = + "0e6c93d8fd37fc948db0f92ee545ecbed99787dc04ceb8981e588b06ad3108eb"; + }; + beamDeps = [ plug_0_8_1 cowboy_1_0_4 ]; + + meta = { + description = ''A Plug for validating Mailgun Webhook requests in + Elixir applications.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/typesend/mailgun_webhook_auth"; + }; + } + ) {}; + + mailgun_webhook_auth = mailgun_webhook_auth_1_0_0; + + mailibex_0_1_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "mailibex"; + version = "0.1.0"; + src = fetchHex { + pkg = "mailibex"; + version = "0.1.0"; + sha256 = + "01f207ee181a58d629c5329d378ee319f9dbab9259e28367751d8860ffe63a36"; + }; + + meta = { + longDescription = ''Mailibex is an email library in Elixir : + currently implements DKIM, SPF, DMARC, MimeMail + (using iconv nif for encoding), MimeType (and + file type detection), a simplified api to modify + or create mimemail as a keyword list. Next step + is a full implementation of SMTP client and + server, to make it possible to use emails as a + routable API for events and messages between + your applications.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/awetzel/mailibex"; + }; + } + ) {}; + + mailibex = mailibex_0_1_0; + + mailman_0_2_1 = callPackage + ( + { + buildMix, fetchHex, gen_smtp_0_9_0, ex_doc_0_11_4, earmark_0_2_1 + }: + buildMix { + name = "mailman"; + version = "0.2.1"; + src = fetchHex { + pkg = "mailman"; + version = "0.2.1"; + sha256 = + "b1594af744dc0e879ed8e42133c7d1d8136468218be2c6dfbf416dd3861b20c7"; + }; + 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"; + }; + } + ) {}; + + mailman = mailman_0_2_1; + + majremind_0_0_1 = callPackage + ( + { buildMix, 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; + }; + } + ) {}; + + majremind = majremind_0_0_1; + + mandrag_0_1_1 = callPackage + ( + { buildMix, fetchHex, exrm_0_15_1 }: + buildMix { + name = "mandrag"; + version = "0.1.1"; + src = fetchHex { + pkg = "mandrag"; + version = "0.1.1"; + sha256 = + "e9e9fcbb844a2a86ecd95f5f8fa7db9f6ff88f3e2a6dca2bd996f4f71bbf125d"; + }; + beamDeps = [ exrm_0_15_1 ]; + + meta = { + description = ''A simple, extremely assumptive deploy script for + Phoenix apps''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/cschiewek/mandrag"; + }; + } + ) {}; + + mandrag = mandrag_0_1_1; + + mandrake_0_0_4 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + mandrake = mandrake_0_0_4; + + mandrill_0_4_1 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_1, exjsx_3_1_0 }: + buildMix { + name = "mandrill"; + version = "0.4.1"; + src = fetchHex { + pkg = "mandrill"; + version = "0.4.1"; + sha256 = + "2d554149c425c511a006d978427acc1d384c8f6d4f3699fdce04e42e24268400"; + }; + beamDeps = [ httpoison_0_8_1 exjsx_3_1_0 ]; + + meta = { + longDescription = ''A Mandrill wrapper for Elixir Requires an + active account with Mandrill + (http://mandrill.com).''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/slogsdon/mandrill-elixir"; + }; + } + ) {}; + + mandrill = mandrill_0_4_1; + + mandrillex_0_2_0 = callPackage + ( + { + buildMix, fetchHex, jsex_2_0_0, httpoison_0_8_1, hackney_1_0_6 + }: + buildMix { + name = "mandrillex"; + version = "0.2.0"; + src = fetchHex { + pkg = "mandrillex"; + version = "0.2.0"; + sha256 = + "840bf36e545cde376797603df4109aae49d2c17b2b06f84a058fff4448d362eb"; + }; + beamDeps = [ jsex_2_0_0 httpoison_0_8_1 hackney_1_0_6 ]; + + meta = { + longDescription = ''A Mandrill wrapper for Elixir Requires an + active account with Mandrill + (http://mandrill.com). ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/slogsdon/mandrillex"; + }; + } + ) {}; + + mandrillex = mandrillex_0_2_0; + + marco_polo_0_2_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + marco_polo = marco_polo_0_2_1; + + mariaex_0_4_3 = callPackage + ( + { buildMix, 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.''; + + homepage = "https://github.com/xerions/mariaex"; + }; + } + ) {}; + + mariaex_0_5_0 = callPackage + ( + { buildMix, fetchHex, decimal_1_1_1 }: + buildMix { + name = "mariaex"; + version = "0.5.0"; + src = fetchHex { + pkg = "mariaex"; + version = "0.5.0"; + sha256 = + "fe2a576c6b4e446c3744af7dda0a3ed6f179f80451a8e412be520b9005bb26c0"; + }; + beamDeps = [ decimal_1_1_1 ]; + + meta = { + description = ''Pure elixir database driver for MariaDB / + MySQL.''; + + homepage = "https://github.com/xerions/mariaex"; + }; + } + ) {}; + + mariaex_0_6_2 = callPackage + ( + { buildMix, fetchHex, decimal_1_1_1, connection_1_0_2 }: + buildMix { + name = "mariaex"; + version = "0.6.2"; + src = fetchHex { + pkg = "mariaex"; + version = "0.6.2"; + sha256 = + "195d9f46e09029872505402159ec713cdfa7b847622cc6b6db658c0d24f85ecd"; + }; + beamDeps = [ decimal_1_1_1 connection_1_0_2 ]; + + meta = { + description = ''Pure elixir database driver for MariaDB / + MySQL.''; + + homepage = "https://github.com/xerions/mariaex"; + }; + } + ) {}; + + mariaex = mariaex_0_6_2; + + marked_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "marked"; + version = "0.0.1"; + src = fetchHex { + pkg = "marked"; + version = "0.0.1"; + sha256 = + "6e16369d41355bef05b18f98230afe08dcb3ccfaaab168382513d86c19721035"; + }; + + meta = { + description = ''CommonMark compatible Markdown parser''; + + }; + } + ) {}; + + marked = marked_0_0_1; + + maru_0_9_3 = callPackage + ( + { buildMix, fetchHex, poison_1_0_3, plug_1_1_1, cowboy_1_0_4 }: + buildMix { + name = "maru"; + version = "0.9.3"; + src = fetchHex { + pkg = "maru"; + version = "0.9.3"; + sha256 = + "6dd160dbc77b72a1954d53c5d584402006f0c28a278f3f28c5ec651246db480d"; + }; + beamDeps = [ poison_1_0_3 plug_1_1_1 cowboy_1_0_4 ]; + + meta = { + description = ''REST-like API micro-framework for elixir inspired + by grape.''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/falood/maru"; + }; + } + ) {}; + + maru = maru_0_9_3; + + maru_entity_0_1_2 = callPackage + ( + { buildMix, 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''; + + }; + } + ) {}; + + maru_entity = maru_entity_0_1_2; + + maru_swagger_0_7_1 = callPackage + ( + { buildMix, fetchHex, maru_0_9_3 }: + buildMix { + name = "maru_swagger"; + version = "0.7.1"; + src = fetchHex { + pkg = "maru_swagger"; + version = "0.7.1"; + sha256 = + "035cfecc126ccdc830694c8c6f6c1d3376b6d037b31d30f31b53334305179940"; + }; + beamDeps = [ maru_0_9_3 ]; + + meta = { + description = ''Add swagger compliant documentation to your maru + API''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/falood/maru_swagger"; + }; + } + ) {}; + + maru_swagger = maru_swagger_0_7_1; + + marvel_1_0_0 = callPackage + ( + { + buildRebar3, + fetchHex, + timex_0_13_5, + poison_1_5_2, + httpoison_0_8_1 + }: + buildRebar3 { + name = "marvel"; + version = "1.0.0"; + src = fetchHex { + pkg = "marvel"; + version = "1.0.0"; + sha256 = + "7b5e99ccfa84954c2e46295aa72ab57b7511e1ec8e0bd13d1c5948efe1a0d23d"; + }; + + beamDeps = [ timex_0_13_5 poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''Marvel API and CLI Client ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bryanjos/marvel"; + }; + } + ) {}; + + marvel = marvel_1_0_0; + + marvin_0_3_0 = callPackage + ( + { + buildMix, + fetchHex, + slack_0_3_0, + poison_2_1_0, + ibrowse_4_2_2, + httpotion_2_2_0 + }: + buildMix { + name = "marvin"; + version = "0.3.0"; + src = fetchHex { + pkg = "marvin"; + version = "0.3.0"; + sha256 = + "722a97aef1d0f7fb783948002897ea1ec67ac77cb471016386bf485bb8bd86c7"; + }; + beamDeps = [ + slack_0_3_0 poison_2_1_0 ibrowse_4_2_2 httpotion_2_2_0 + ]; + + meta = { + description = ''A Slack bot framework.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/willrax/marvin"; + }; + } + ) {}; + + marvin = marvin_0_3_0; + + math_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "math"; + version = "0.0.1"; + src = fetchHex { + pkg = "math"; + version = "0.0.1"; + sha256 = + "ca9c87163b052d2c849a7b4ef3d8664f9400024f26c6add1ce200aa72604a90d"; + }; + + meta = { + description = ''The missing Math module for Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/folz/math"; + }; + } + ) {}; + + math = math_0_0_1; + + matrix_0_3_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + matrix = matrix_0_3_1; + + maybe_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + maybe = maybe_0_0_1; + + mazurka_0_3_32 = callPackage + ( + { + buildMix, + fetchHex, + xml_builder_0_0_8, + poison_2_1_0, + plug_1_1_1, + mimetype_parser_0_1_1, + mazurka_dsl_0_1_1, + html_builder_0_1_0, + etude_0_3_7, + ecto_1_0_7 + }: + buildMix { + name = "mazurka"; + version = "0.3.32"; + src = fetchHex { + pkg = "mazurka"; + version = "0.3.32"; + sha256 = + "93a1a7fe508daae8df47a6bf8d3969d5cf93a206b65a5c350a0ea26005968f6a"; + }; + beamDeps = [ + xml_builder_0_0_8 + poison_2_1_0 + plug_1_1_1 + mimetype_parser_0_1_1 + mazurka_dsl_0_1_1 + html_builder_0_1_0 + etude_0_3_7 + ecto_1_0_7 + ]; + + meta = { + description = ''hypermedia api toolkit''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mazurka/mazurka"; + }; + } + ) {}; + + mazurka = mazurka_0_3_32; + + mazurka_dsl_0_1_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + mazurka_dsl = mazurka_dsl_0_1_1; + + mazurka_mediatype_0_2_0 = callPackage + ( + { buildMix, fetchHex, etude_0_4_0 }: + buildMix { + name = "mazurka_mediatype"; + version = "0.2.0"; + src = fetchHex { + pkg = "mazurka_mediatype"; + version = "0.2.0"; + sha256 = + "4ccd8b27d6405e93cb34861f211d69b79ab46c2dbc5c7874d4ee3c580a5754bb"; + }; + beamDeps = [ etude_0_4_0 ]; + + meta = { + description = ''mazurka mediatype interface''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mazurka/mazurka_mediatype"; + }; + } + ) {}; + + mazurka_mediatype = mazurka_mediatype_0_2_0; + + mazurka_mediatype_hyperjson_0_2_3 = callPackage + ( + { + buildMix, + fetchHex, + poison_1_3_1, + mazurka_mediatype_0_2_0, + etude_0_4_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_0_4_0 ]; + + meta = { + description = ''hyper+json mediatype compiler for mazurka''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/mazurka/mazurka_mediatype_hyperjson"; + }; + } + ) {}; + + mazurka_mediatype_hyperjson = mazurka_mediatype_hyperjson_0_2_3; + + mcrypt_0_1_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "mcrypt"; + version = "0.1.0"; + src = fetchHex { + pkg = "mcrypt"; + version = "0.1.0"; + sha256 = + "508a35ba255190f80309dcabf9c81c88b86b9ec13af180627ad51b8e5cf2a4cd"; + }; + compilePorts = true; + + meta = { + description = ''NIF wrapper around libmcrypt.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/system76/elixir-mcrypt"; + }; + } + ) {}; + + mcrypt = mcrypt_0_1_0; + + mcup_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + mcup = mcup_0_0_2; + + mdns_client_0_1_7 = callPackage + ( + { buildRebar3, fetchHex, lager_2_1_1 }: + buildRebar3 { + name = "mdns_client"; + version = "0.1.7"; + src = fetchHex { + pkg = "mdns_client"; + version = "0.1.7"; + sha256 = + "c707532d693bd19bed8ccd167574b6b0337f07e38b87bd7f9111d9cb9799fac2"; + }; + + beamDeps = [ lager_2_1_1 ]; + + meta = { + description = ''mDNS service discovery client''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Licenser/erlang-mdns-client"; + }; + } + ) {}; + + mdns_client = mdns_client_0_1_7; + + mdns_client_lib_0_1_33 = callPackage + ( + { + buildRebar3, + fetchHex, + pooler_1_4_0, + mdns_client_0_1_7, + lager_2_1_1 + }: + buildRebar3 { + name = "mdns_client_lib"; + version = "0.1.33"; + src = fetchHex { + pkg = "mdns_client_lib"; + version = "0.1.33"; + sha256 = + "9ad3723c929acbdfec70021ceb6606e59c7e6189af97652409bfc9624052e0fe"; + }; + + beamDeps = [ pooler_1_4_0 mdns_client_0_1_7 lager_2_1_1 ]; + + meta = { + description = ''client lib for mdns aware tcp servers''; + license = stdenv.lib.licenses.cddl; + homepage = "https://github.com/Licenser/mdns_client_lib"; + }; + } + ) {}; + + mdns_client_lib = mdns_client_lib_0_1_33; + + mdns_server_0_2_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + mdns_server = mdns_server_0_2_0; + + mdns_server_lib_0_2_3 = callPackage + ( + { + buildRebar3, + 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"; + }; + } + ) {}; + + mdns_server_lib = mdns_server_lib_0_2_3; + + meck_0_8_4 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "meck"; + version = "0.8.4"; + src = fetchHex { + pkg = "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; + + medex_0_1_2 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1, cowboy_1_0_4, consul_1_0_3 }: + buildMix { + name = "medex"; + version = "0.1.2"; + src = fetchHex { + pkg = "medex"; + version = "0.1.2"; + sha256 = + "dd8dd07892a4aedbe7680fa8637b1c17b7615b2aaea0b25b84acad4ed50700d2"; + }; + beamDeps = [ plug_1_1_1 cowboy_1_0_4 consul_1_0_3 ]; + + meta = { + longDescription = ''Medical Examination - application for + register health check callbacks and represent + their state via HTTP.''; + + homepage = "https://github.com/xerions/medex"; + }; + } + ) {}; + + medex = medex_0_1_2; + + meld_0_1_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + meld = meld_0_1_2; + + mellon_0_1_0 = callPackage + ( + { buildMix, fetchHex, poison_2_1_0, plug_1_1_1 }: + buildMix { + name = "mellon"; + version = "0.1.0"; + src = fetchHex { + pkg = "mellon"; + version = "0.1.0"; + sha256 = + "e9252f1abdc4c38a4ad9cc3bd194630f7756ba22a25e6ebf8e937b1600cb9aae"; + }; + beamDeps = [ poison_2_1_0 plug_1_1_1 ]; + + 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"; + }; + } + ) {}; + + mellon = mellon_0_1_0; + + memcache_client_1_0_0 = callPackage + ( + { buildMix, fetchHex, poolboy_1_5_1, poison_1_5_2 }: + buildMix { + name = "memcache_client"; + version = "1.0.0"; + src = fetchHex { + pkg = "memcache_client"; + version = "1.0.0"; + sha256 = + "ef5977dc10fd0d55606887168735ae4a0c481a1edbf2a28e042cab3f53e1f9c3"; + }; + beamDeps = [ poolboy_1_5_1 poison_1_5_2 ]; + + meta = { + description = ''Memcache client library utilizing the memcache + binary protocol.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/tsharju/memcache_client"; + }; + } + ) {}; + + memcache_client = memcache_client_1_0_0; + + message_pack_0_2_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "message_pack"; + version = "0.2.0"; + src = fetchHex { + pkg = "message_pack"; + version = "0.2.0"; + sha256 = + "94f31aa2734989e97562fcd1ad0b159e8571f4b97f591995bfdcbbbcfcaadd83"; + }; + + meta = { + description = ''MessagePack Implementation for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mururu/msgpack-elixir"; + }; + } + ) {}; + + message_pack = message_pack_0_2_0; + + meta_0_0_1 = callPackage + ( + { buildRebar3, fetchHex, forms_0_0_1 }: + buildRebar3 { + name = "meta"; + version = "0.0.1"; + src = fetchHex { + pkg = "meta"; + version = "0.0.1"; + sha256 = + "9aa1be58e265a16eafb9092d9675427672721ca9d3c924664e561b0857c6dcb8"; + }; + + beamDeps = [ forms_0_0_1 ]; + + meta = { + description = ''A metaprogramming library for Erlang''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/efcasado/forms"; + }; + } + ) {}; + + meta = meta_0_0_1; + + metainvestigator_0_0_3 = callPackage + ( + { buildMix, fetchHex, floki_0_7_1 }: + buildMix { + name = "metainvestigator"; + version = "0.0.3"; + src = fetchHex { + pkg = "metainvestigator"; + version = "0.0.3"; + sha256 = + "774b3973090491a9a342a68c5cf099c98581ae0f1b1d313a08a7d2030d541781"; + }; + beamDeps = [ floki_0_7_1 ]; + + meta = { + description = ''A library for web scraping, inspired by + MetaInspector''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/nekova/metainvestigator"; + }; + } + ) {}; + + metainvestigator = metainvestigator_0_0_3; + + metrics_0_2_1 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "metrics"; + version = "0.2.1"; + src = fetchHex { + pkg = "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; + + metrix_0_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + metrix = metrix_0_2_0; + + mex_0_0_5 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + mex = mex_0_0_5; + + microformats2_0_0_1 = callPackage + ( + { buildMix, fetchHex, httpotion_2_2_0, floki_0_7_1 }: + buildMix { + name = "microformats2"; + version = "0.0.1"; + src = fetchHex { + pkg = "microformats2"; + version = "0.0.1"; + sha256 = + "9b14b1065763c422beb7fea518a1374bb17bcbe8f903381612e4deb3c9b8e385"; + }; + beamDeps = [ httpotion_2_2_0 floki_0_7_1 ]; + + meta = { + description = ''A microformats2 parser + (http://microformats.org/wiki/microformats-2) for + Elixir''; + license = stdenv.lib.licenses.agpl3; + homepage = "https://github.com/ckruse/microformats2-elixir"; + }; + } + ) {}; + + microformats2 = microformats2_0_0_1; + + milliseconds_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + milliseconds = milliseconds_0_0_1; + + mime_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + mime = mime_0_0_1; + + mimerl_1_0_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "mimerl"; + version = "1.0.0"; + src = fetchHex { + pkg = "mimerl"; + version = "1.0.0"; + sha256 = + "a30b01104a29bd3a363db8646e4ce0f7980f9ecd23a98707c46c3ced918c41b4"; + }; + + meta = { + description = ''Library to handle mimetypes''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/benoitc/mimerl"; + }; + } + ) {}; + + mimerl_1_0_2 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + mimerl_1_1_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + mimerl = mimerl_1_1_0; + + mimetype_parser_0_1_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "mimetype_parser"; + version = "0.1.1"; + src = fetchHex { + pkg = "mimetype_parser"; + version = "0.1.1"; + sha256 = + "ec26e5e2bb279babd5bd415d626d04040d9f719fc2b0066eb909777a93015fce"; + }; + + meta = { + description = ''parse mimetypes''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/camshaft/mimetype_parser"; + }; + } + ) {}; + + mimetype_parser = mimetype_parser_0_1_1; + + mimex_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + mimex = mimex_0_1_0; + + minmaxlist_0_0_5 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "minmaxlist"; + version = "0.0.5"; + src = fetchHex { + pkg = "minmaxlist"; + version = "0.0.5"; + sha256 = + "6d14c8a55196e803cb6cdfded42f57d61b96e4bd3ce7c31f36e33a3257256d8e"; + }; + + 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"; + }; + } + ) {}; + + minmaxlist = minmaxlist_0_0_5; + + misc_random_0_2_6 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + misc_random = misc_random_0_2_6; + + mix_apidoc_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + mix_apidoc = mix_apidoc_0_1_0; + + mix_deps_tree_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + mix_deps_tree = mix_deps_tree_0_1_0; + + mix_erlang_tasks_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + mix_erlang_tasks = mix_erlang_tasks_0_1_0; + + mix_eunit_0_1_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + mix_eunit = mix_eunit_0_1_2; + + mix_info_0_7_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + mix_info = mix_info_0_7_2; + + mix_test_watch_0_2_5 = callPackage + ( + { buildMix, fetchHex, fs_0_9_2 }: + buildMix { + name = "mix_test_watch"; + version = "0.2.5"; + src = fetchHex { + pkg = "mix_test_watch"; + version = "0.2.5"; + sha256 = + "68ddd24df6d6ca77f8a95d4bb0443998031984122aa574d79434fac25f10da7b"; + }; + 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"; + }; + } + ) {}; + + mix_test_watch = mix_test_watch_0_2_5; + + mixpanel_0_0_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + mixpanel = mixpanel_0_0_3; + + mixpanel_api_ex_0_8_3 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "mixpanel_api_ex"; + version = "0.8.3"; + src = fetchHex { + pkg = "mixpanel_api_ex"; + version = "0.8.3"; + sha256 = + "1ff5eb4aa333495a86868873deb8fcd04c5f2e6f2560d77ac6ccbe07e2e3d7b4"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''Elixir client for the Mixpanel API.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/agevio/mixpanel_api_ex"; + }; + } + ) {}; + + mixpanel_api_ex = mixpanel_api_ex_0_8_3; + + mixpanel_data_client_0_0_2 = callPackage + ( + { buildMix, fetchHex, poison_1_3_1, httpoison_0_8_1 }: + buildMix { + name = "mixpanel_data_client"; + version = "0.0.2"; + src = fetchHex { + pkg = "mixpanel_data_client"; + version = "0.0.2"; + sha256 = + "7f3bbd608ae18153655f27bd50ea01ad85630d6c1cc6ab9ed336e95419f06c86"; + }; + beamDeps = [ poison_1_3_1 httpoison_0_8_1 ]; + + meta = { + description = ''Client library for interacting with the Mixpanel + Data API.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jeregrine/mixpanel_data_client"; + }; + } + ) {}; + + mixpanel_data_client = mixpanel_data_client_0_0_2; + + mixstar_0_0_1 = callPackage + ( + { buildMix, fetchHex, netrc_0_0_2, httpoison_0_8_1 }: + buildMix { + name = "mixstar"; + version = "0.0.1"; + src = fetchHex { + pkg = "mixstar"; + version = "0.0.1"; + sha256 = + "d7f9014711d04049c90a8f835857d1bde04647b326d1ec949e2a90477f4d4a39"; + }; + beamDeps = [ netrc_0_0_2 httpoison_0_8_1 ]; + + meta = { + description = ''MixStar starred GitHub repository that depends on + your project''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ma2gedev/mix-star"; + }; + } + ) {}; + + mixstar = mixstar_0_0_1; + + mixunit_0_9_2 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + mixunit = mixunit_0_9_2; + + mmExchangeRate_0_0_1 = callPackage + ( + { buildMix, fetchHex, jsx_2_8_0, httpotion_1_0_0 }: + buildMix { + name = "mmExchangeRate"; + version = "0.0.1"; + src = fetchHex { + pkg = "mmExchangeRate"; + version = "0.0.1"; + sha256 = + "6daf6e74bf3ce8f9d7cc19b18b023d700201a847dde94a0eef1f263ce65efbac"; + }; + beamDeps = [ jsx_2_8_0 httpotion_1_0_0 ]; + + 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"; + }; + } + ) {}; + + mmExchangeRate = mmExchangeRate_0_0_1; + + mmath_0_1_15 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "mmath"; + version = "0.1.15"; + src = fetchHex { + pkg = "mmath"; + version = "0.1.15"; + sha256 = + "2ad56c5a321dda866f36981df134b9e2f393b46786cd2549ed626d1423458c86"; + }; + compilePorts = true; + + meta = { + description = ''math library for metric sequences and binary + arrays.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/dalmatinerdb/mmath"; + }; + } + ) {}; + + mmath_0_1_16 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "mmath"; + version = "0.1.16"; + src = fetchHex { + pkg = "mmath"; + version = "0.1.16"; + sha256 = + "dcf450b5527ba445e0b33ecdb0d546fa9bff96f6efbf6d314447f32344d37ef6"; + }; + compilePorts = true; + + meta = { + description = ''math library for metric sequences and binary + arrays.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/dalmatinerdb/mmath"; + }; + } + ) {}; + + mmath = mmath_0_1_16; + + mobiledoc_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "mobiledoc"; + version = "0.0.1"; + src = fetchHex { + pkg = "mobiledoc"; + version = "0.0.1"; + sha256 = + "02aaa0168d51cd5d491127128f568ff37a6415115c45076a79bc8f7f449c524a"; + }; + + meta = { + description = ''An HTML renderer for the MobileDoc format used by + the ContentKit editor.''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/zeppelin/mobiledoc-renderer-elixir"; + }; + } + ) {}; + + mobiledoc = mobiledoc_0_0_1; + + mochiweb_2_12_2 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "mochiweb"; + version = "2.12.2"; + src = fetchHex { + pkg = "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; + + mock_0_1_1 = callPackage + ( + { buildRebar3, fetchHex, meck_0_8_4 }: + buildRebar3 { + name = "mock"; + version = "0.1.1"; + src = fetchHex { + pkg = "mock"; + version = "0.1.1"; + sha256 = + "d2d73a2f0621bbf23011fdc6a29eca114381e77098e19b71d0774278ca80bc01"; + }; + + beamDeps = [ meck_0_8_4 ]; + + meta = { + longDescription = ''A mocking libary for the Elixir language. We + use the Erlang meck library to provide module + mocking functionality for Elixir. It uses macros + in Elixir to expose the functionality in a + convenient manner for integrating in Elixir + tests.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jjh42/mock"; + }; + } + ) {}; + + mock = mock_0_1_1; + + module_mocker_0_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + module_mocker = module_mocker_0_2_0; + + moebius_1_0_8 = callPackage + ( + { + buildMix, + fetchHex, + timex_0_19_5, + postgrex_0_9_1, + poison_1_5_2, + json_0_3_3, + inflex_1_5_0 + }: + buildMix { + name = "moebius"; + version = "1.0.8"; + src = fetchHex { + pkg = "moebius"; + version = "1.0.8"; + sha256 = + "6fb42bfb7a85409e5281d990d9db5a5012221019867eef34de2e49fce245b0d9"; + }; + beamDeps = [ + timex_0_19_5 + postgrex_0_9_1 + poison_1_5_2 + json_0_3_3 + inflex_1_5_0 + ]; + + meta = { + description = ''A functional approach to data access with + Elixir''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/robconery/moebius"; + }; + } + ) {}; + + moebius = moebius_1_0_8; + + mogrify_0_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + mogrify = mogrify_0_2_0; + + mojoauth_1_0_2 = callPackage + ( + { buildMix, fetchHex, timex_1_0_1 }: + buildMix { + name = "mojoauth"; + version = "1.0.2"; + src = fetchHex { + pkg = "mojoauth"; + version = "1.0.2"; + sha256 = + "72d8b3fdff6d6571d7dcc9ad46b249823c84e0321920a0e9d6f39ee5f9fc2f23"; + }; + beamDeps = [ timex_1_0_1 ]; + + 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"; + }; + } + ) {}; + + mojoauth = mojoauth_1_0_2; + + moment_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + moment = moment_0_1_0; + + mon_handler_1_0_2 = callPackage + ( + { buildMix, fetchHex, dialyze_0_2_0 }: + buildMix { + name = "mon_handler"; + version = "1.0.2"; + src = fetchHex { + pkg = "mon_handler"; + version = "1.0.2"; + sha256 = + "d18942f95750b94e3da1d9fca7a2ea4b1b1d27c017feff76cb109b29bb308f58"; + }; + beamDeps = [ dialyze_0_2_0 ]; + + 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"; + }; + } + ) {}; + + mon_handler = mon_handler_1_0_2; + + monad_1_0_5 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + monad = monad_1_0_5; + + monadex_1_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + monadex = monadex_1_0_2; + + mondo_0_1_0 = callPackage + ( + { + buildMix, fetchHex, poison_2_1_0, plug_1_1_1, httpoison_0_8_1 + }: + buildMix { + name = "mondo"; + version = "0.1.0"; + src = fetchHex { + pkg = "mondo"; + version = "0.1.0"; + sha256 = + "f557216314e098137f5140f1194e2eba7a2a030d78affc23ea5943f586ab1095"; + }; + beamDeps = [ poison_2_1_0 plug_1_1_1 httpoison_0_8_1 ]; + + meta = { + description = ''An Elixir client for the Mondo API.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/stevedomin/mondo_elixir"; + }; + } + ) {}; + + mondo = mondo_0_1_0; + + monetized_0_3_2 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, ecto_1_1_3, 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_3 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"; + }; + } + ) {}; + + monetized = monetized_0_3_2; + + money_0_0_1_dev = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + money = money_0_0_1_dev; + + mongo_0_5_4 = callPackage + ( + { buildMix, fetchHex, bson_0_4_4 }: + buildMix { + name = "mongo"; + version = "0.5.4"; + src = fetchHex { + pkg = "mongo"; + version = "0.5.4"; + sha256 = + "fb6e0ed11bd2f193e12d0f905eb1968525b52dc99441ecbbf90c7745df246ed8"; + }; + beamDeps = [ bson_0_4_4 ]; + + meta = { + description = ''MongoDB driver for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/checkiz/elixir-mongo"; + }; + } + ) {}; + + mongo = mongo_0_5_4; + + mongodb_0_1_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + mongodb = mongodb_0_1_1; + + mongodb_ecto_0_1_3 = callPackage + ( + { buildMix, fetchHex, mongodb_0_1_1, ecto_1_0_7 }: + buildMix { + name = "mongodb_ecto"; + version = "0.1.3"; + src = fetchHex { + pkg = "mongodb_ecto"; + version = "0.1.3"; + sha256 = + "8befad3e958f3924cb780dbf958d63539d48e23ca680e4e9dc1cf63b6827ce8a"; + }; + 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"; + }; + } + ) {}; + + mongodb_ecto = mongodb_ecto_0_1_3; + + monk_0_1_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + monk = monk_0_1_3; + + morph_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + morph = morph_0_1_0; + + motor_hat_0_6_1 = callPackage + ( + { buildMix, fetchHex, elixir_ale_0_4_1 }: + buildMix { + name = "motor_hat"; + version = "0.6.1"; + src = fetchHex { + pkg = "motor_hat"; + version = "0.6.1"; + sha256 = + "f555e0ec59ee95d4dc6c14cbc3d9d12014f9bd7882c776dde715b9b1674ffa79"; + }; + beamDeps = [ elixir_ale_0_4_1 ]; + + meta = { + longDescription = ''Elixir implementation of the pyhton motor_hat + library from Adafruit for there motor_hat board. + Library: + https://github.com/adafruit/Adafruit-Motor-HAT-Python-Library + Board: https://www.adafruit.com/product/2348''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/matthewphilyaw/motor_hat"; + }; + } + ) {}; + + motor_hat = motor_hat_0_6_1; + + moxie_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + moxie = moxie_0_0_1; + + mpinyin_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + mpinyin = mpinyin_0_0_2; + + msgpack_0_4_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "msgpack"; + version = "0.4.0"; + src = fetchHex { + pkg = "msgpack"; + version = "0.4.0"; + sha256 = + "cb69184b254bcddfd0b3b813fa9ffc87dd4642ad026bb8117e2384b55239eae4"; + }; + + meta = { + description = ''MessagePack serializer/deserializer''; + license = stdenv.lib.licenses.apsl20; + homepage = "http://msgpack.org"; + }; + } + ) {}; + + msgpack = msgpack_0_4_0; + + msgpax_0_7_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "msgpax"; + version = "0.7.0"; + src = fetchHex { + pkg = "msgpax"; + version = "0.7.0"; + sha256 = + "c51838cc08674eada16ff7ff516b1c4028fecba602bdc04747f85a94dca25202"; + }; + + 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"; + }; + } + ) {}; + + msgpax_0_8_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + msgpax = msgpax_0_8_2; + + mstore_0_1_9 = callPackage + ( + { buildRebar3, fetchHex, trie_1_5_0, mmath_0_1_15 }: + buildRebar3 { + name = "mstore"; + version = "0.1.9"; + src = fetchHex { + pkg = "mstore"; + version = "0.1.9"; + sha256 = + "c9b0ac9de587e72d292b923c12fcc1ce8b74946dd688987246a5a4d26679b6ca"; + }; + + beamDeps = [ trie_1_5_0 mmath_0_1_15 ]; + + meta = { + description = ''Fast, flat metric store.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/dalmatinerdb/mstore"; + }; + } + ) {}; + + mstore = mstore_0_1_9; + + mt940_0_4_0 = callPackage + ( + { buildMix, fetchHex, timex_0_19_5, decimal_1_1_1 }: + buildMix { + name = "mt940"; + version = "0.4.0"; + src = fetchHex { + pkg = "mt940"; + version = "0.4.0"; + sha256 = + "7d9f509b4fa43bee0feaba3fa1aceed394145daa522561cd84b584d968be3be4"; + }; + beamDeps = [ timex_0_19_5 decimal_1_1_1 ]; + + meta = { + description = ''MT940 parser for Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/my-flow/mt940"; + }; + } + ) {}; + + mt940 = mt940_0_4_0; + + mtx_1_0_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + mtx = mtx_1_0_0; + + multidef_0_2_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + multidef = multidef_0_2_1; + + multiset_0_0_4 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + multiset = multiset_0_0_4; + + murdoch_0_0_1 = callPackage + ( + { + buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1, goth_0_0_3 + }: + buildMix { + name = "murdoch"; + version = "0.0.1"; + src = fetchHex { + pkg = "murdoch"; + version = "0.0.1"; + sha256 = + "77ec44ca76d6b4a14df7222104a36cb29ed25f7d52fb3ffe30807ddc82a2d9ad"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 goth_0_0_3 ]; + + meta = { + longDescription = ''A library for interacting with Google Cloud + Pub/Sub (PubSub). Supports both publication and + pull subscription''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/peburrows/murdoch"; + }; + } + ) {}; + + murdoch = murdoch_0_0_1; + + murmur_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + murmur = murmur_1_0_0; + + mustache_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + mustache = mustache_0_0_2; + + mustachex_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "mustachex"; + version = "0.0.1"; + src = fetchHex { + pkg = "mustachex"; + version = "0.0.1"; + sha256 = + "356a7268e609c77a5b02d4ea4d98a189684a07709ec7db2dafd2b34da79bb402"; + }; + + meta = { + description = ''Mustache for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jui/mustachex"; + }; + } + ) {}; + + mustachex = mustachex_0_0_1; + + mynumber_1_0_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "mynumber"; + version = "1.0.0"; + src = fetchHex { + pkg = "mynumber"; + version = "1.0.0"; + sha256 = + "9d95bd6c7a2178c1fe3b9dc2712a6d9567885389a1a20b27518ea6067deeb0f7"; + }; + + meta = { + description = ''Mynumber Validation for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/cncgl/elixir_mynumber"; + }; + } + ) {}; + + mynumber = mynumber_1_0_0; + + mysql_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + mysql = mysql_1_0_0; + + mysqlex_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + mysqlex = mysqlex_0_0_1; + + n2o_2_3_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + 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"; + }; + } + ) {}; + + n2o = n2o_2_3_0; + + nacl_0_3_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "nacl"; + version = "0.3.0"; + src = fetchHex { + pkg = "nacl"; + version = "0.3.0"; + sha256 = + "83a626d0ddd17a9c9528aa57a79e0e19746a42def007bc48c4984f0905098a7b"; + }; + compilePorts = true; + + meta = { + description = ''Erlang-NaCl hex package''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/tonyg/erlang-nacl"; + }; + } + ) {}; + + nacl = nacl_0_3_0; + + nadia_0_3_3 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "nadia"; + version = "0.3.3"; + src = fetchHex { + pkg = "nadia"; + version = "0.3.3"; + sha256 = + "8ea94a9a92aac18b98736148892c6ec672fa599cb5aa222757393c1551228b4e"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''Telegram Bot API Wrapper written in Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/zhyu/nadia"; + }; + } + ) {}; + + nadia = nadia_0_3_3; + + nat_set_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + nat_set = nat_set_0_0_1; + + nativegen_0_4_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + nativegen = nativegen_0_4_1; + + nats_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + nats = nats_0_0_1; + + nats_msg_0_3_3 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "nats_msg"; + version = "0.3.3"; + src = fetchHex { + pkg = "nats_msg"; + version = "0.3.3"; + sha256 = + "80b2669f8c53395c156d3a121befe71a5131d7a42f14a38fbd7778a179b498ac"; + }; + + meta = { + description = ''Pure Erlang NATS Protocol Message + Encoder/Decoder''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/yuce/nats_msg"; + }; + } + ) {}; + + nats_msg = nats_msg_0_3_3; + + natsio_0_1_4 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + natsio = natsio_0_1_4; + + natural_sort_0_3_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + natural_sort = natural_sort_0_3_0; + + naughtygram_0_2_0 = callPackage + ( + { + buildMix, + fetchHex, + poison_1_5_2, + httpoison_0_7_5, + floki_0_7_1, + exprintf_0_1_6 + }: + buildMix { + name = "naughtygram"; + version = "0.2.0"; + src = fetchHex { + pkg = "naughtygram"; + version = "0.2.0"; + sha256 = + "7ae4fb6518c06116139bc6a1fe6e3e52fe590acc4d5dc487c01fc2878ba6819d"; + }; + beamDeps = [ + poison_1_5_2 + httpoison_0_7_5 + floki_0_7_1 + exprintf_0_1_6 + ]; + + meta = { + description = ''Instagram Private API client library for + Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/zensavona/naughtygram"; + }; + } + ) {}; + + naughtygram = naughtygram_0_2_0; + + navigation_history_0_2_0 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1 }: + buildMix { + name = "navigation_history"; + version = "0.2.0"; + src = fetchHex { + pkg = "navigation_history"; + version = "0.2.0"; + sha256 = + "9fbddedd831930c3f2e784c53442558d90d68040f9921dfa9441da63d6b8dacc"; + }; + beamDeps = [ plug_1_1_1 ]; + + meta = { + description = ''Navigation history tracking plug''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/tuvistavie/plug-navigation-history"; + }; + } + ) {}; + + navigation_history = navigation_history_0_2_0; + + navigation_tree_0_4_4 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + navigation_tree = navigation_tree_0_4_4; + + neat_ex_1_1_0 = callPackage + ( + { buildMix, 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; + }; + } + ) {}; + + neat_ex = neat_ex_1_1_0; + + neo4j_sips_0_1_12 = callPackage + ( + { + buildMix, + fetchHex, + poolboy_1_5_1, + poison_1_5_2, + httpoison_0_7_5, + con_cache_0_9_0 + }: + buildMix { + name = "neo4j_sips"; + version = "0.1.12"; + src = fetchHex { + pkg = "neo4j_sips"; + version = "0.1.12"; + sha256 = + "7a4547b36abd57856f04c8d0b7f2a39eb9fdf7a8c088fdf5836853559ad7aee2"; + }; + beamDeps = [ + poolboy_1_5_1 + poison_1_5_2 + httpoison_0_7_5 + con_cache_0_9_0 + ]; + + meta = { + description = ''A very simple and versatile Neo4J Elixir + driver''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/florinpatrascu/neo4j_sips"; + }; + } + ) {}; + + neo4j_sips = neo4j_sips_0_1_12; + + neotoma_1_7_3 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "neotoma"; + version = "1.7.3"; + src = fetchHex { + pkg = "neotoma"; + version = "1.7.3"; + sha256 = + "2da322b9b1567ffa0706a7f30f6bbbde70835ae44a1050615f4b4a3d436e0f28"; + }; + + meta = { + description = ''PEG/Packrat toolkit and parser-generator.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/seancribbs/neotoma"; + }; + } + ) {}; + + neotoma = neotoma_1_7_3; + + neotomex_0_1_4 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "neotomex"; + version = "0.1.4"; + src = fetchHex { + pkg = "neotomex"; + version = "0.1.4"; + sha256 = + "0a15f69aa859882699e30a30386ad47a16abb5e862c27aea56e51040d682fa5a"; + }; + + meta = { + description = ''A PEG parser/transformer with a pleasant Elixir + DSL.''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/jtmoulia/neotomex"; + }; + } + ) {}; + + neotomex = neotomex_0_1_4; + + nerves_io_neopixel_0_2_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "nerves_io_neopixel"; + version = "0.2.0"; + src = fetchHex { + pkg = "nerves_io_neopixel"; + version = "0.2.0"; + sha256 = + "662ca0af01330399eba9aff9806c086027ec5b3a2e235af4cd909282a6d09afa"; + }; + + meta = { + description = ''Drive WS2812B "NeoPixel" RGB LED strips from a + Raspberry Pi using Elixir.''; + license = with stdenv.lib.licenses; [ mit free ]; + homepage = "https://github.com/GregMefford/nerves_io_neopixel"; + }; + } + ) {}; + + nerves_io_neopixel = nerves_io_neopixel_0_2_0; + + nest_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + nest = nest_0_0_1; + + nested_set_0_0_1 = callPackage + ( + { buildMix, fetchHex, ecto_1_1_3 }: + buildMix { + name = "nested_set"; + version = "0.0.1"; + src = fetchHex { + pkg = "nested_set"; + version = "0.0.1"; + sha256 = + "cd38faeaef21ad1675d4a4467cff6b439b90ca1c07fac72857ab63804967a00d"; + }; + beamDeps = [ ecto_1_1_3 ]; + + 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"; + }; + } + ) {}; + + nested_set = nested_set_0_0_1; + + netrc_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + netrc = netrc_0_0_2; + + netstrings_2_0_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "netstrings"; + version = "2.0.0"; + src = fetchHex { + pkg = "netstrings"; + version = "2.0.0"; + sha256 = + "f510110b2a821363409fd77942f61309b6c0000a8cdda91a6f653e95f3c36c23"; + }; + + meta = { + description = ''Netstrings implementaton''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mwmiller/netstrings_ex"; + }; + } + ) {}; + + netstrings = netstrings_2_0_0; + + news_0_3_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + news = news_0_3_0; + + ngram_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ngram = ngram_0_0_1; + + nice_nickname_0_0_1 = callPackage + ( + { buildMix, fetchHex, poison_1_4_0 }: + buildMix { + name = "nice_nickname"; + version = "0.0.1"; + src = fetchHex { + pkg = "nice_nickname"; + version = "0.0.1"; + sha256 = + "7d5c635290df8fa7a59dbaa22e519102e13ddb8ac4cae5a7a40018c9ff795b42"; + }; + beamDeps = [ poison_1_4_0 ]; + + meta = { + description = ''A nickname generator and profanity filter for + Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/skylerparr/nice_nickname"; + }; + } + ) {}; + + nice_nickname = nice_nickname_0_0_1; + + nifty_0_0_3 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "nifty"; + version = "0.0.3"; + src = fetchHex { + pkg = "nifty"; + version = "0.0.3"; + sha256 = + "ef5c6ea64835d3371382c7e042c42aec0b85625b232b4b9e1f2587e1c8e5401e"; + }; + + meta = { + longDescription = ''A semi-useful tool to generate boilerplate + when you want to use a NIF in your project. You + don`t really want to use a NIF in your project, + until you do. Then this might save you writing + most of the boilerplate.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rossjones/nifty"; + }; + } + ) {}; + + nifty = nifty_0_0_3; + + nile_0_1_2 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "nile"; + version = "0.1.2"; + src = fetchHex { + pkg = "nile"; + version = "0.1.2"; + sha256 = + "3b7c463f7e0d12a38757b893d41d08772d6f06e5e4a15812409b655acb4b6dfc"; + }; + + meta = { + description = ''Elixir stream extensions''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/camshaft/nile"; + }; + } + ) {}; + + nile = nile_0_1_2; + + ninjaproxies_0_2_0 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "ninjaproxies"; + version = "0.2.0"; + src = fetchHex { + pkg = "ninjaproxies"; + version = "0.2.0"; + sha256 = + "5524329d00944690b362d30fef9c4032c03c401cc44d0ad9e98e147f5792fade"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''Ninjaproxies client library for Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/zensavona/ninjaproxies"; + }; + } + ) {}; + + ninjaproxies = ninjaproxies_0_2_0; + + nio_google_authenticator_1_0_1 = callPackage + ( + { buildMix, fetchHex, pot_0_9_4, ecto_2_0_0_beta_0 }: + buildMix { + name = "nio_google_authenticator"; + version = "1.0.1"; + src = fetchHex { + pkg = "nio_google_authenticator"; + version = "1.0.1"; + sha256 = + "a8a82c6c40e9575e8bea2fc7302af05bcd478b3a6a0e9df212617f807fe23758"; + }; + beamDeps = [ pot_0_9_4 ecto_2_0_0_beta_0 ]; + + meta = { + longDescription = ''NioGoogleAuthenticator is a collection of + Elixir convenience functions to generate secrets + and validate tokens used in conjunction with + Google Authenticator. It also includes functions + that automatically add a secret to an + Ecto.Changeset.''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/maxneuvians/nio_google_authenticator"; + }; + } + ) {}; + + nio_google_authenticator = nio_google_authenticator_1_0_1; + + nio_google_geocoder_0_7_0 = callPackage + ( + { + buildMix, + fetchHex, + poison_1_5_2, + httpoison_0_8_1, + ecto_2_0_0_beta_0 + }: + buildMix { + name = "nio_google_geocoder"; + version = "0.7.0"; + src = fetchHex { + pkg = "nio_google_geocoder"; + version = "0.7.0"; + sha256 = + "ba551ad6138b133d6b90ac96c0443aa31724084049059bf15710dac4c1f3e701"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ecto_2_0_0_beta_0 ]; + + meta = { + longDescription = ''NioGoogleGeocoder is a collection of Elixir + convenience functions to geocode a single, or + list of, addresses. It also includes a function + that automatically adds a geo location to an + `Ecto.Changeset`.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/maxneuvians/nio_google_geocoder"; + }; + } + ) {}; + + nio_google_geocoder = nio_google_geocoder_0_7_0; + + nodefinder_1_5_1 = callPackage + ( + { buildRebar3, fetchHex, erlcloud_0_9_2 }: + buildRebar3 { + name = "nodefinder"; + version = "1.5.1"; + src = fetchHex { + pkg = "nodefinder"; + version = "1.5.1"; + sha256 = + "c617372ee14c344c546a978936d7ceab283609b3b33b6516ed9b3651ad5bfb48"; + }; + + beamDeps = [ erlcloud_0_9_2 ]; + + meta = { + description = ''Strategies For Automatic Node Discovery''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/okeuday/nodefinder"; + }; + } + ) {}; + + nodefinder = nodefinder_1_5_1; + + normalize_email_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + normalize_email = normalize_email_0_0_1; + + normalize_url_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + normalize_url = normalize_url_0_0_2; + + not_qwerty123_1_0_0 = callPackage + ( + { buildMix, fetchHex, gettext_0_10_0 }: + buildMix { + name = "not_qwerty123"; + version = "1.0.0"; + src = fetchHex { + pkg = "not_qwerty123"; + version = "1.0.0"; + sha256 = + "f1ec4634e5608ffae5c1d546696e77abfce8ee1fa415de93e43a2161d70d59d4"; + }; + 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"; + }; + } + ) {}; + + not_qwerty123 = not_qwerty123_1_0_0; + + number_0_4_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + number = number_0_4_1; + + oauth2_0_3_0 = callPackage + ( + { + buildMix, + fetchHex, + poison_1_5_2, + plug_1_1_1, + httpoison_0_8_1, + hackney_1_4_8 + }: + buildMix { + name = "oauth2"; + version = "0.3.0"; + src = fetchHex { + pkg = "oauth2"; + version = "0.3.0"; + sha256 = + "ee23e6fb6ac84abce23713ba93f1df2fd368c9ad7b9288f0ef6fcec0e0249043"; + }; + beamDeps = [ + poison_1_5_2 plug_1_1_1 httpoison_0_8_1 hackney_1_4_8 + ]; + + meta = { + description = ''An Elixir OAuth 2.0 Client Library''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/scrogson/oauth2"; + }; + } + ) {}; + + oauth2_0_5_0 = callPackage + ( + { + buildMix, + fetchHex, + poison_1_5_2, + mimetype_parser_0_1_1, + httpoison_0_8_1 + }: + buildMix { + name = "oauth2"; + version = "0.5.0"; + src = fetchHex { + pkg = "oauth2"; + version = "0.5.0"; + sha256 = + "1bc7d89a27a85fcdd9ebad7a0f4b80c4ae4ae98ed4cf87545667892f92e6a4dd"; + }; + beamDeps = [ poison_1_5_2 mimetype_parser_0_1_1 httpoison_0_8_1 + ]; + + meta = { + description = ''An Elixir OAuth 2.0 Client Library''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/scrogson/oauth2"; + }; + } + ) {}; + + oauth2 = oauth2_0_5_0; + + oauth2_erlang_0_6_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + oauth2_erlang = oauth2_erlang_0_6_1; + + oauth2cli_0_0_4 = callPackage + ( + { + buildMix, + fetchHex, + poison_1_5_2, + plug_0_9_0, + httpoison_0_7_5, + hackney_1_4_8, + cowboy_1_0_4 + }: + buildMix { + name = "oauth2cli"; + version = "0.0.4"; + src = fetchHex { + pkg = "oauth2cli"; + version = "0.0.4"; + sha256 = + "16645e7bb9b3af13d1187da955403ff70c0cdaded278d0c51503ea6c29172b5b"; + }; + beamDeps = [ + poison_1_5_2 + plug_0_9_0 + httpoison_0_7_5 + hackney_1_4_8 + cowboy_1_0_4 + ]; + + meta = { + description = ''Simple OAuth2 client ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mgamini/oauth2cli-elixir"; + }; + } + ) {}; + + oauth2cli = oauth2cli_0_0_4; + + oauth2ex_0_0_8 = callPackage + ( + { + buildMix, + fetchHex, + timex_1_0_0_rc4, + plug_1_1_1, + httpoison_0_8_1, + exjsx_3_2_0, + cowboy_1_0_4 + }: + buildMix { + name = "oauth2ex"; + version = "0.0.8"; + src = fetchHex { + pkg = "oauth2ex"; + version = "0.0.8"; + sha256 = + "0420cc1ee402922a77cdd9a090cb886083fdc42658df9d8401e72d7a1daab4c0"; + }; + beamDeps = [ + timex_1_0_0_rc4 + plug_1_1_1 + httpoison_0_8_1 + exjsx_3_2_0 + cowboy_1_0_4 + ]; + + meta = { + description = ''An OAuth 2.0 client library for elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/parroty/oauth2ex"; + }; + } + ) {}; + + oauth2ex = oauth2ex_0_0_8; + + oauther_1_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + oauther = oauther_1_0_2; + + obelisk_0_10_0 = callPackage + ( + { + buildMix, + fetchHex, + rss_0_2_1, + plug_0_11_3, + mock_0_1_1, + earmark_0_1_19, + cowboy_1_0_4, + chronos_1_0_0, + calliope_0_3_0, + anubis_0_1_0 + }: + buildMix { + name = "obelisk"; + version = "0.10.0"; + src = fetchHex { + pkg = "obelisk"; + version = "0.10.0"; + sha256 = + "faf46188e3f79c8ac512ae104016f18d05598198feb35a09c8936c548dfba06e"; + }; + beamDeps = [ + rss_0_2_1 + plug_0_11_3 + mock_0_1_1 + earmark_0_1_19 + cowboy_1_0_4 + chronos_1_0_0 + calliope_0_3_0 + anubis_0_1_0 + ]; + + meta = { + longDescription = '' obelisk is a static site generator for + Elixir. It is inspired by jekyll, with the goal + of being fast and simple to use and extend. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bennyhallett/obelisk"; + }; + } + ) {}; + + obelisk = obelisk_0_10_0; + + observer_cli_1_0_3 = callPackage + ( + { buildRebar3, fetchHex, recon_2_2_1 }: + buildRebar3 { + name = "observer_cli"; + version = "1.0.3"; + src = fetchHex { + pkg = "observer_cli"; + version = "1.0.3"; + sha256 = + "18e5d9aa5412ec063cf9719bcfe73bf990c5fed5c9a3c8422c2b5d9529fc8b0d"; + }; + + beamDeps = [ recon_2_2_1 ]; + + meta = { + description = ''Visualize Erlang Nodes On The Command Line''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/zhongwencool/observer_cli"; + }; + } + ) {}; + + observer_cli = observer_cli_1_0_3; + + octokit_0_0_3 = callPackage + ( + { + buildMix, fetchHex, timex_1_0_1, poison_2_1_0, httpoison_0_8_1 + }: + buildMix { + name = "octokit"; + version = "0.0.3"; + src = fetchHex { + pkg = "octokit"; + version = "0.0.3"; + sha256 = + "5cc713c2052c3a46e24ac04781bee4199926e2a175597b9f1c4c7d9ddb2b4241"; + }; + beamDeps = [ timex_1_0_1 poison_2_1_0 httpoison_0_8_1 ]; + + meta = { + description = ''An Elixir library for accessing the GitHub + API.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/lee-dohm/octokit.ex"; + }; + } + ) {}; + + octokit = octokit_0_0_3; + + og_0_0_5 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "og"; + version = "0.0.5"; + src = fetchHex { + pkg = "og"; + version = "0.0.5"; + sha256 = + "6260a10988cee65dfc6245e60a719c15a8239167946a7f8f847fb3b9fa624022"; + }; + + meta = { + description = ''Og is a small collection of logger helper + functions in elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/stephenmoloney/og"; + }; + } + ) {}; + + og = og_0_0_5; + + ok_0_1_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ok = ok_0_1_3; + + ok_jose_2_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ok_jose = ok_jose_2_0_0; + + okta_0_0_1 = callPackage + ( + { buildMix, fetchHex, poison_1_4_0, httpoison_0_7_5 }: + buildMix { + name = "okta"; + version = "0.0.1"; + src = fetchHex { + pkg = "okta"; + version = "0.0.1"; + sha256 = + "1fb857a60a917bfe9ff6b1bf87908ba8aa1387ddc4586f9b9465fe19415d825a"; + }; + beamDeps = [ poison_1_4_0 httpoison_0_7_5 ]; + + meta = { + description = ''An Elixir Library for interfacing Okta''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/Cobenian/okta"; + }; + } + ) {}; + + okta = okta_0_0_1; + + omise_0_1_4 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "omise"; + version = "0.1.4"; + src = fetchHex { + pkg = "omise"; + version = "0.1.4"; + sha256 = + "35e7fe1776da9cf5ddeb0138391868d6dbbe976e5a932183c4f445371b1b0c4d"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''Omise client library for Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/teerawat1992/omise"; + }; + } + ) {}; + + omise = omise_0_1_4; + + one_signal_0_0_6 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "one_signal"; + version = "0.0.6"; + src = fetchHex { + pkg = "one_signal"; + version = "0.0.6"; + sha256 = + "d90ec5f9e43d164e2942422d3c1e9a6b26a956ea135eb1a316380e12ef6b27d1"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''Elixir wrapper of OneSignal''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/yoavlt/one_signal"; + }; + } + ) {}; + + one_signal = one_signal_0_0_6; + + onetime_1_0_0 = callPackage + ( + { buildMix, fetchHex, timex_1_0_1 }: + buildMix { + name = "onetime"; + version = "1.0.0"; + src = fetchHex { + pkg = "onetime"; + version = "1.0.0"; + sha256 = + "28481e7e239caa0002a42178af46cb80c3501faca7c1b953558e9d8dbba76c4c"; + }; + beamDeps = [ timex_1_0_1 ]; + + meta = { + description = ''An onetime key-value store''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ryo33/onetime-elixir"; + }; + } + ) {}; + + onetime = onetime_1_0_0; + + oop_0_0_4 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + oop = oop_0_0_4; + + opbeat_0_3_0 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "opbeat"; + version = "0.3.0"; + src = fetchHex { + pkg = "opbeat"; + version = "0.3.0"; + sha256 = + "20977e8ae08a1789326a3e5c0c8fa3265dd0e6ddc1fb6abe25c3a33d3fc9e692"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''Elixir client for opbeat''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/teodor-pripoae/opbeat"; + }; + } + ) {}; + + opbeat = opbeat_0_3_0; + + openmaize_0_15_1 = callPackage + ( + { + buildMix, + fetchHex, + postgrex_0_11_1, + poison_1_5_2, + plug_1_1_1, + ecto_2_0_0_beta_0, + cowboy_1_0_4, + comeonin_2_1_1 + }: + buildMix { + name = "openmaize"; + version = "0.15.1"; + src = fetchHex { + pkg = "openmaize"; + version = "0.15.1"; + sha256 = + "2ef5890c2fa041cd7d11d2b16b76dd7d8b6ac6e5044093732b1441fdaa10fd56"; + }; + beamDeps = [ + postgrex_0_11_1 + poison_1_5_2 + plug_1_1_1 + ecto_2_0_0_beta_0 + cowboy_1_0_4 + comeonin_2_1_1 + ]; + + meta = { + description = ''Authentication library for Elixir using Plug.''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/elixircnx/openmaize"; + }; + } + ) {}; + + openmaize = openmaize_0_15_1; + + openstack_0_0_4 = callPackage + ( + { + buildMix, + fetchHex, + table_0_0_4, + poison_1_5_2, + maybe_0_0_1, + httpoison_0_8_1 + }: + buildMix { + name = "openstack"; + version = "0.0.4"; + src = fetchHex { + pkg = "openstack"; + version = "0.0.4"; + sha256 = + "ddc471e2d95edb26b3f826986f730fbb1fb70de62edaa00a0c1cd7fd6de7fde1"; + }; + beamDeps = [ + table_0_0_4 poison_1_5_2 maybe_0_0_1 httpoison_0_8_1 + ]; + + meta = { + description = ''Openstack Client''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/zweifisch/openstack.ex"; + }; + } + ) {}; + + openstack = openstack_0_0_4; + + ordered_list_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ordered_list = ordered_list_0_1_0; + + os_utils_0_3_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + os_utils = os_utils_0_3_0; + + osc_0_1_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + osc = osc_0_1_1; + + overpass_0_1_1 = callPackage + ( + { + buildMix, fetchHex, sweet_xml_0_5_1, jsx_2_8_0, httpoison_0_7_5 + }: + buildMix { + name = "overpass"; + version = "0.1.1"; + src = fetchHex { + pkg = "overpass"; + version = "0.1.1"; + sha256 = + "6a664bd17e7612825fd7c3a0c3e0039412d83ac6d459c84018caf07e800cb6a8"; + }; + beamDeps = [ sweet_xml_0_5_1 jsx_2_8_0 httpoison_0_7_5 ]; + + meta = { + description = ''A Elixir wrapper to access the Overpass API.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/CodeforChemnitz/elixir-overpass"; + }; + } + ) {}; + + overpass = overpass_0_1_1; + + p1_mysql_1_0_1 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "p1_mysql"; + version = "1.0.1"; + src = fetchHex { + pkg = "p1_mysql"; + version = "1.0.1"; + sha256 = + "4235c0d95d4ec01ed7511ebb253f5c54a9635b766a8b923f41e238ed85008e7d"; + }; + + meta = { + description = ''Pure Erlang MySQL driver''; + license = with stdenv.lib.licenses; [ free asl20 ]; + homepage = "https://github.com/processone/p1_mysql"; + }; + } + ) {}; + + p1_mysql = p1_mysql_1_0_1; + + p1_oauth2_0_6_1 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "p1_oauth2"; + version = "0.6.1"; + src = fetchHex { + pkg = "p1_oauth2"; + version = "0.6.1"; + sha256 = + "304923dcaf1edcc84b7f3f6fab1d5235777604ec3334453cf50de1060300e002"; + }; + + meta = { + description = ''Erlang OAuth 2.0 implementation''; + license = with stdenv.lib.licenses; [ mit asl20 ]; + homepage = "https://github.com/processone/p1_oauth2"; + }; + } + ) {}; + + p1_oauth2 = p1_oauth2_0_6_1; + + p1_pgsql_1_0_1 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "p1_pgsql"; + version = "1.0.1"; + src = fetchHex { + pkg = "p1_pgsql"; + version = "1.0.1"; + sha256 = + "7436d18f320b200e4cab6a0c16d6416aa32115b9dcfabfb05af6e9cbd62d1c0c"; + }; + + meta = { + description = ''PostgreSQL driver''; + license = with stdenv.lib.licenses; [ epl10 asl20 ]; + homepage = "https://github.com/processone/p1_pgsql"; + }; + } + ) {}; + + p1_pgsql = p1_pgsql_1_0_1; + + p1_stringprep_1_0_1 = callPackage + ( + { buildRebar3, fetchHex, p1_utils_1_0_3 }: + buildRebar3 { + name = "p1_stringprep"; + version = "1.0.1"; + src = fetchHex { + pkg = "p1_stringprep"; + version = "1.0.1"; + sha256 = + "e36ce6434010eba2fb6fc18bf4ba65797be3bba17a686f79a2326d26614071c0"; + }; + compilePorts = true; + beamDeps = [ p1_utils_1_0_3 ]; + + meta = { + description = ''Fast Stringprep Erlang / Elixir implementation''; + license = with stdenv.lib.licenses; [ asl20 free ]; + homepage = "https://github.com/processone/stringprep"; + }; + } + ) {}; + + p1_stringprep = p1_stringprep_1_0_1; + + p1_utils_1_0_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "p1_utils"; + version = "1.0.0"; + src = fetchHex { + pkg = "p1_utils"; + version = "1.0.0"; + sha256 = + "b2c6316286b071f2f667fb1c59b44fe0c996917515fa93374a4a3264affc5105"; + }; + + meta = { + description = ''Erlang utility modules from ProcessOne''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/processone/p1_utils"; + }; + } + ) {}; + + p1_utils_1_0_3 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "p1_utils"; + version = "1.0.3"; + src = fetchHex { + pkg = "p1_utils"; + version = "1.0.3"; + sha256 = + "6bf7dc7108eee70e036ea745faf5f55b4354e267f14371ea13338f58ce402d5e"; + }; + + meta = { + description = ''Erlang utility modules from ProcessOne''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/processone/p1_utils"; + }; + } + ) {}; + + p1_utils = p1_utils_1_0_3; + + p1_xml_1_1_1 = callPackage + ( + { buildRebar3, fetchHex, p1_utils_1_0_0 }: + buildRebar3 { + name = "p1_xml"; + version = "1.1.1"; + src = fetchHex { + pkg = "p1_xml"; + version = "1.1.1"; + sha256 = + "ab68956163cc5ff8c749c503507a36c543841259e78c58a2bbe0ebe76a0b7ce3"; + }; + compilePorts = true; + beamDeps = [ p1_utils_1_0_0 ]; + + meta = { + description = ''XML parsing library. Now obsolete. Use fast_xml + instead''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/processone/xml"; + }; + } + ) {}; + + p1_xml = p1_xml_1_1_1; + + p1_xmlrpc_1_15_1 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "p1_xmlrpc"; + version = "1.15.1"; + src = fetchHex { + pkg = "p1_xmlrpc"; + version = "1.15.1"; + sha256 = + "4bca3009ad6b6c37c30255e3d63191a188e0fc6b6db41a428fe111d699d1a330"; + }; + + meta = { + description = ''XML-RPC server''; + license = with stdenv.lib.licenses; [ bsd2 asl20 ]; + homepage = "https://github.com/processone/p1_xmlrpc"; + }; + } + ) {}; + + p1_xmlrpc = p1_xmlrpc_1_15_1; + + pact_0_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + pact = pact_0_2_0; + + pagexduty_0_1_0 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_1, exjsx_3_1_0 }: + buildMix { + name = "pagexduty"; + version = "0.1.0"; + src = fetchHex { + pkg = "pagexduty"; + version = "0.1.0"; + sha256 = + "7292a63eeb27637ff19f91f50910d2bbbc860e1eb0413aa5a5035ef32b41b232"; + }; + beamDeps = [ httpoison_0_8_1 exjsx_3_1_0 ]; + + meta = { + description = ''A Pagerduty client for Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ride/pagexduty"; + }; + } + ) {}; + + pagexduty = pagexduty_0_1_0; + + paginex_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + paginex = paginex_0_0_1; + + painstaking_0_5_6 = callPackage + ( + { buildMix, fetchHex, exoddic_1_2_0 }: + buildMix { + name = "painstaking"; + version = "0.5.6"; + src = fetchHex { + pkg = "painstaking"; + version = "0.5.6"; + sha256 = + "f7efbebacbea3e0bb8adf79ab90ca896e54d179eb76a4da4eb1687411fa4af58"; + }; + beamDeps = [ exoddic_1_2_0 ]; + + meta = { + description = ''Bet stake sizing recommendations''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mwmiller/painstaking"; + }; + } + ) {}; + + painstaking = painstaking_0_5_6; + + palette_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + palette = palette_0_0_2; + + pandex_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + pandex = pandex_0_1_0; + + pangu_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + pangu = pangu_0_1_0; + + parabaikElixirConverter_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + parabaikElixirConverter = parabaikElixirConverter_0_0_1; + + parallel_0_0_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + parallel = parallel_0_0_3; + + parallel_stream_1_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "parallel_stream"; + version = "1.0.1"; + src = fetchHex { + pkg = "parallel_stream"; + version = "1.0.1"; + sha256 = + "de54833225b0e67f21db47333a08685aed50d778a2f11cf7e36ae9e3fe4ee107"; + }; + + meta = { + description = ''Parallel stream operations for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/beatrichartz/parallel_stream"; + }; + } + ) {}; + + parallel_stream = parallel_stream_1_0_1; + + params_1_0_1 = callPackage + ( + { buildMix, fetchHex, ecto_1_1_3 }: + buildMix { + name = "params"; + version = "1.0.1"; + src = fetchHex { + pkg = "params"; + version = "1.0.1"; + sha256 = + "182cfd185f886ad72e350baa7c2b1a5a0f77c52140ddc2604a5efef0f122dd51"; + }; + beamDeps = [ ecto_1_1_3 ]; + + meta = { + description = ''Parameter structure validation and casting with + Ecto.Schema.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/vic/params"; + }; + } + ) {}; + + params = params_1_0_1; + + paratize_2_1_2 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "paratize"; + version = "2.1.2"; + src = fetchHex { + pkg = "paratize"; + version = "2.1.2"; + sha256 = + "3ac2970f8c40979bdd7ea6eebb106fb8c51e64e745e0f068e059cfbecbace433"; + }; + + meta = { + description = ''Elixir library providing some handy parallel + processing facilities.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/seantanly/elixir-paratize"; + }; + } + ) {}; + + paratize = paratize_2_1_2; + + parse_client_0_2_3 = callPackage + ( + { buildMix, fetchHex, httpoison_0_7_5, exjsx_3_0_2 }: + buildMix { + name = "parse_client"; + version = "0.2.3"; + src = fetchHex { + pkg = "parse_client"; + version = "0.2.3"; + sha256 = + "b80b259f9645ea4767824d47c12f719faf51a8031c4162f316fbe99a77b45c23"; + }; + beamDeps = [ httpoison_0_7_5 exjsx_3_0_2 ]; + + meta = { + description = ''Elixir client for the parse.com REST API ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/elixircnx/parse_elixir_client"; + }; + } + ) {}; + + parse_client = parse_client_0_2_3; + + parse_torrent_0_1_0 = callPackage + ( + { buildMix, fetchHex, bencodex_1_0_0 }: + buildMix { + name = "parse_torrent"; + version = "0.1.0"; + src = fetchHex { + pkg = "parse_torrent"; + version = "0.1.0"; + sha256 = + "4dd7e2a51e6da91d0bbf843735ceeee43dda1f704a0d2717cefa11a259dec65d"; + }; + beamDeps = [ bencodex_1_0_0 ]; + + meta = { + description = ''Parses a .torrent file and returns a map''; + license = stdenv.lib.licenses.unlicense; + homepage = "https://github.com/preciz/parse_torrent"; + }; + } + ) {}; + + parse_torrent = parse_torrent_0_1_0; + + parse_trans_2_9_0 = callPackage + ( + { buildRebar3, fetchHex, edown_0_7_0 }: + buildRebar3 { + name = "parse_trans"; + version = "2.9.0"; + src = fetchHex { + pkg = "parse_trans"; + version = "2.9.0"; + sha256 = + "dda020976ad4aafe051ce785c0460a71a11b8b6b8c08a98e2c45b83edfdf2978"; + }; + + beamDeps = [ edown_0_7_0 ]; + + meta = { + description = ''Parse transform utilities for Erlang.''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/uwiger/parse_trans"; + }; + } + ) {}; + + parse_trans = parse_trans_2_9_0; + + parselix_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + parselix = parselix_0_1_0; + + parsex_0_0_2 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_1, poison_1_1_1 }: + buildMix { + name = "parsex"; + version = "0.0.2"; + src = fetchHex { + pkg = "parsex"; + version = "0.0.2"; + sha256 = + "024657ae8d29eba99caf90276ac2d7f27cf435a543d4036859fd4ab6ffbceb75"; + }; + beamDeps = [ httpoison_0_8_1 poison_1_1_1 ]; + + meta = { + description = ''ParsEx is an Elixir HTTP Client for communicating + with Parse.com`s Restful API ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/maarek/ParsEx"; + }; + } + ) {}; + + parsex = parsex_0_0_2; + + passport_0_0_4 = callPackage + ( + { buildMix, fetchHex, phoenix_1_1_4, comeonin_2_1_1 }: + buildMix { + name = "passport"; + version = "0.0.4"; + src = fetchHex { + pkg = "passport"; + version = "0.0.4"; + sha256 = + "10e8e42cfd5fa834d7c3c3276c39274a3824100f2ffeed26adb4ed8475f0be91"; + }; + beamDeps = [ phoenix_1_1_4 comeonin_2_1_1 ]; + + meta = { + description = ''Provides authentication for phoenix + applications''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/opendrops/passport"; + }; + } + ) {}; + + passport = passport_0_0_4; + + pathway_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + pathway = pathway_0_1_0; + + pattern_tap_0_2_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + pattern_tap = pattern_tap_0_2_2; + + pavlov_0_2_3 = callPackage + ( + { buildMix, fetchHex, meck_0_8_4 }: + buildMix { + name = "pavlov"; + version = "0.2.3"; + src = fetchHex { + pkg = "pavlov"; + version = "0.2.3"; + sha256 = + "4d38e96b7581261a49f00d2046603ad3c9af6d52abd26d16bbf6a0a5a82c9643"; + }; + beamDeps = [ meck_0_8_4 ]; + + meta = { + longDescription = ''Pavlov is a BDD library for your Elixir + projects, allowing you to write expressive unit + tests that tell the story of how your + application behaves. The syntax tries to follow + RSpec`s wherever possible.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/sproutapp/pavlov"; + }; + } + ) {}; + + pavlov = pavlov_0_2_3; + + pbkdf2_2_0_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + pbkdf2 = pbkdf2_2_0_0; + + pc_1_2_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + pc = pc_1_2_0; + + pdf2htmlex_0_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + pdf2htmlex = pdf2htmlex_0_2_0; + + pdf_generator_0_3_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + pdf_generator = pdf_generator_0_3_1; + + peatio_client_1_5_0 = callPackage + ( + { + buildMix, + fetchHex, + poison_1_5_2, + httpoison_0_8_1, + hackney_1_4_4, + decimal_1_1_1 + }: + buildMix { + name = "peatio_client"; + version = "1.5.0"; + src = fetchHex { + pkg = "peatio_client"; + version = "1.5.0"; + sha256 = + "701489d2b53b76194bb8745003c2e5665045ba4132ec1020813c63671d19081e"; + }; + beamDeps = [ + poison_1_5_2 + httpoison_0_8_1 + hackney_1_4_4 + decimal_1_1_1 + ]; + + meta = { + description = ''Peatio Exchange compatibility API for Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/peatio/peatio-client-elixir"; + }; + } + ) {}; + + peatio_client = peatio_client_1_5_0; + + peon_2_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + peon = peon_2_0_0; + + pet_0_1_1 = callPackage + ( + { buildMix, fetchHex, yomel_0_5_0 }: + buildMix { + name = "pet"; + version = "0.1.1"; + src = fetchHex { + pkg = "pet"; + version = "0.1.1"; + sha256 = + "5ec25c6c2337e286919c925dce46ecfa4b09311f516ecd922c71391cd4caa697"; + }; + beamDeps = [ yomel_0_5_0 ]; + + meta = { + description = ''Account management tool compatible with pit''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Joe-noh/pet"; + }; + } + ) {}; + + pet = pet_0_1_1; + + petick_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + petick = petick_0_0_1; + + phoenix_0_2_10 = callPackage + ( + { + buildMix, + fetchHex, + inflex_0_2_3, + ex_conf_0_1_2, + plug_0_5_0, + jazz_0_1_1 + }: + buildMix { + name = "phoenix"; + version = "0.2.10"; + src = fetchHex { + pkg = "phoenix"; + version = "0.2.10"; + sha256 = + "bb65584ef5696cf90cb4823fd82d5fd930d7e092f171410687c90924519b0022"; + }; + beamDeps = [ inflex_0_2_3 ex_conf_0_1_2 plug_0_5_0 jazz_0_1_1 ]; + + 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"; + }; + } + ) {}; + + phoenix_0_4_1 = callPackage + ( + { + buildMix, + fetchHex, + cowboy_1_0_4, + plug_0_7_0, + linguist_0_1_5, + poison_1_1_1 + }: + buildMix { + name = "phoenix"; + version = "0.4.1"; + src = fetchHex { + pkg = "phoenix"; + version = "0.4.1"; + sha256 = + "b1e72759e90a814b6a5d4d94e218b2c975bd156ebdfb4c54f8dc8b590267b4e0"; + }; + beamDeps = [ cowboy_1_0_4 plug_0_7_0 linguist_0_1_5 poison_1_1_1 + ]; + + 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"; + }; + } + ) {}; + + phoenix_1_0_4 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, plug_1_1_1, 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_1 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"; + }; + } + ) {}; + + phoenix_1_1_4 = callPackage + ( + { buildMix, fetchHex, poison_1_0_3, plug_1_1_1, cowboy_1_0_4 }: + buildMix { + name = "phoenix"; + version = "1.1.4"; + src = fetchHex { + pkg = "phoenix"; + version = "1.1.4"; + sha256 = + "5765238fd5caef83a8ce9242d63b4302963f44aefe70510a597aae86b5b6cd10"; + }; + beamDeps = [ poison_1_0_3 plug_1_1_1 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"; + }; + } + ) {}; + + phoenix = phoenix_1_1_4; + + phoenix_calendar_0_1_2 = callPackage + ( + { buildMix, fetchHex, phoenix_html_2_5_0, calendar_0_12_3 }: + buildMix { + name = "phoenix_calendar"; + version = "0.1.2"; + src = fetchHex { + pkg = "phoenix_calendar"; + version = "0.1.2"; + sha256 = + "f22968fd2287b419bf9791845b62501bf0177630d01a92b0ba33e5f00978ca3c"; + }; + beamDeps = [ phoenix_html_2_5_0 calendar_0_12_3 ]; + + meta = { + description = ''Integration between Phoenix & Calendar''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/lau/phoenix_calendar"; + }; + } + ) {}; + + phoenix_calendar = phoenix_calendar_0_1_2; + + phoenix_dtl_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "phoenix_dtl"; + version = "0.0.1"; + src = fetchHex { + pkg = "phoenix_dtl"; + version = "0.0.1"; + sha256 = + "04e80730e1437dc624bd96207eaef064320209bb73e48915b4b52a9a01271898"; + }; + + meta = { + description = ''Phoenix Template Engine for the django template + language ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/andihit/phoenix_dtl"; + }; + } + ) {}; + + phoenix_dtl = phoenix_dtl_0_0_1; + + phoenix_ecto_3_0_0_beta_0 = callPackage + ( + { + buildMix, fetchHex, poison_1_0_3, phoenix_html_2_5_0, ecto_0_2_6 + }: + buildMix { + name = "phoenix_ecto"; + version = "3.0.0-beta.0"; + src = fetchHex { + pkg = "phoenix_ecto"; + version = "3.0.0-beta.0"; + sha256 = + "f5e7c174329e9f64e6970c46a122654b6d27c619f3e6184e4db10577b0e5daac"; + }; + beamDeps = [ poison_1_0_3 phoenix_html_2_5_0 ecto_0_2_6 ]; + + meta = { + description = ''Integration between Phoenix & Ecto''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/phoenixframework/phoenix_ecto"; + }; + } + ) {}; + + phoenix_ecto = phoenix_ecto_3_0_0_beta_0; + + phoenix_gen_gulp_jspm_1_0_0 = callPackage + ( + { buildMix, fetchHex, phoenix_1_1_4 }: + buildMix { + name = "phoenix_gen_gulp_jspm"; + version = "1.0.0"; + src = fetchHex { + pkg = "phoenix_gen_gulp_jspm"; + version = "1.0.0"; + sha256 = + "7124ff1f232d82da40619579d2b3a5d15834f9cf3880ba3e8176cb7321b9eb59"; + }; + beamDeps = [ phoenix_1_1_4 ]; + + meta = { + description = ''Replaces Brunch with Gulp and adds JSPM''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bryanjos/phoenix_gen_gulp_jspm"; + }; + } + ) {}; + + phoenix_gen_gulp_jspm = phoenix_gen_gulp_jspm_1_0_0; + + phoenix_generator_0_2_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + phoenix_generator = phoenix_generator_0_2_1; + + phoenix_haml_0_2_0 = callPackage + ( + { + buildMix, + fetchHex, + phoenix_html_2_5_0, + phoenix_1_0_4, + calliope_0_3_0 + }: + buildMix { + name = "phoenix_haml"; + version = "0.2.0"; + src = fetchHex { + pkg = "phoenix_haml"; + version = "0.2.0"; + sha256 = + "ec4f0dae227972a472661f1e8f9c51e8618290c8b6e5ca084ff81f6e7318468e"; + }; + beamDeps = [ phoenix_html_2_5_0 phoenix_1_0_4 calliope_0_3_0 ]; + + meta = { + description = ''Phoenix Template Engine for Haml''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/chrismccord/phoenix_haml"; + }; + } + ) {}; + + phoenix_haml = phoenix_haml_0_2_0; + + phoenix_html_2_5_0 = callPackage + ( + { buildMix, fetchHex, plug_0_8_1 }: + buildMix { + name = "phoenix_html"; + version = "2.5.0"; + src = fetchHex { + pkg = "phoenix_html"; + version = "2.5.0"; + sha256 = + "a3ef7288bf4a8304c65092774f602e3b1120536bed20dba9e90a5d2d41163fd4"; + }; + beamDeps = [ plug_0_8_1 ]; + + meta = { + description = ''Phoenix.HTML functions for working with HTML + strings and templates''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/phoenixframework/phoenix_html"; + }; + } + ) {}; + + phoenix_html = phoenix_html_2_5_0; + + phoenix_html_sanitizer_0_2_0 = callPackage + ( + { + buildMix, fetchHex, phoenix_html_2_5_0, html_sanitize_ex_0_3_1 + }: + buildMix { + name = "phoenix_html_sanitizer"; + version = "0.2.0"; + src = fetchHex { + pkg = "phoenix_html_sanitizer"; + version = "0.2.0"; + sha256 = + "4cb5ae02d5560ff4e24cc378487065d038f0efd4883925a770b05c1c1d56a13c"; + }; + beamDeps = [ phoenix_html_2_5_0 html_sanitize_ex_0_3_1 ]; + + meta = { + description = ''HTML sanitizer for Phoenix''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/elixirstatus/phoenix_html_sanitizer"; + }; + } + ) {}; + + phoenix_html_sanitizer = phoenix_html_sanitizer_0_2_0; + + phoenix_linguist_0_0_1 = callPackage + ( + { + buildMix, fetchHex, phoenix_1_1_4, linguist_0_1_5, cowboy_1_0_4 + }: + buildMix { + name = "phoenix_linguist"; + version = "0.0.1"; + src = fetchHex { + pkg = "phoenix_linguist"; + version = "0.0.1"; + sha256 = + "4a27898ab733b3b55c9fe38bd7ae299a92cfb290dc7d9bc940e1af653de1b1eb"; + }; + beamDeps = [ phoenix_1_1_4 linguist_0_1_5 cowboy_1_0_4 ]; + + meta = { + longDescription = ''A project that integrates Phoenix with + Linguist, providing a plug and view helpers''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jxs/phoenix_linguist"; + }; + } + ) {}; + + phoenix_linguist = phoenix_linguist_0_0_1; + + phoenix_live_reload_1_0_3 = callPackage + ( + { buildMix, fetchHex, phoenix_0_2_10, fs_0_9_2 }: + buildMix { + name = "phoenix_live_reload"; + version = "1.0.3"; + src = fetchHex { + pkg = "phoenix_live_reload"; + version = "1.0.3"; + sha256 = + "fbb65b7e4f4205b2e5d7061480889bd34d5c943a56feebd20b3dd949332fed85"; + }; + beamDeps = [ phoenix_0_2_10 fs_0_9_2 ]; + + meta = { + description = ''Provides live-reload functionality for Phoenix''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/phoenixframework/phoenix_live_reload"; + }; + } + ) {}; + + phoenix_live_reload = phoenix_live_reload_1_0_3; + + phoenix_pubsub_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + phoenix_pubsub = phoenix_pubsub_0_0_1; + + phoenix_pubsub_postgres_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + phoenix_pubsub_postgres = phoenix_pubsub_postgres_0_0_2; + + phoenix_pubsub_rabbitmq_0_0_1 = callPackage + ( + { buildMix, fetchHex, poolboy_1_4_2, amqp_0_1_4 }: + buildMix { + name = "phoenix_pubsub_rabbitmq"; + version = "0.0.1"; + src = fetchHex { + pkg = "phoenix_pubsub_rabbitmq"; + version = "0.0.1"; + sha256 = + "e2158052cb3adfedca953fe8318dd5633d276728cc4fae6daa54d0dd7b7401c6"; + }; + beamDeps = [ poolboy_1_4_2 amqp_0_1_4 ]; + + meta = { + description = ''RabbitMQ adapter for the Phoenix framework PubSub + layer. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/pma/phoenix_pubsub_rabbitmq"; + }; + } + ) {}; + + phoenix_pubsub_rabbitmq = phoenix_pubsub_rabbitmq_0_0_1; + + phoenix_pubsub_redis_2_0_0 = callPackage + ( + { + buildMix, fetchHex, redo_2_0_1, poolboy_1_2_1, phoenix_1_1_4 + }: + buildMix { + name = "phoenix_pubsub_redis"; + version = "2.0.0"; + src = fetchHex { + pkg = "phoenix_pubsub_redis"; + version = "2.0.0"; + sha256 = + "a10e9f4c419bed62d807e8be82f9ed5c9d8dfaef302165a0eec3e51ed1cb1cfa"; + }; + beamDeps = [ redo_2_0_1 poolboy_1_2_1 phoenix_1_1_4 ]; + + meta = { + description = ''The Redis PubSub adapter for the Phoenix + framework''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/phoenixframework/phoenix_pubsub_redis"; + }; + } + ) {}; + + phoenix_pubsub_redis = phoenix_pubsub_redis_2_0_0; + + phoenix_pubsub_vernemq_0_0_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + phoenix_pubsub_vernemq = phoenix_pubsub_vernemq_0_0_3; + + phoenix_simple_form_0_0_2 = callPackage + ( + { buildMix, fetchHex, phoenix_html_2_5_0 }: + buildMix { + name = "phoenix_simple_form"; + version = "0.0.2"; + src = fetchHex { + pkg = "phoenix_simple_form"; + version = "0.0.2"; + sha256 = + "e059ada8c507168d2267d6a1db1790192c063ca5e2a3579dfd2d1b07e25e9f45"; + }; + beamDeps = [ phoenix_html_2_5_0 ]; + + meta = { + description = ''Easy form handling for phoenix''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/sbrink/phoenix_simple_form"; + }; + } + ) {}; + + phoenix_simple_form = phoenix_simple_form_0_0_2; + + phoenix_slim_0_4_1 = callPackage + ( + { + buildMix, + fetchHex, + slim_fast_0_10_0, + phoenix_html_2_5_0, + phoenix_1_1_4 + }: + buildMix { + name = "phoenix_slim"; + version = "0.4.1"; + src = fetchHex { + pkg = "phoenix_slim"; + version = "0.4.1"; + sha256 = + "4225e74608e29c93c603c6cde61766b604495e04ef65d6ca325ff1a9a492c563"; + }; + beamDeps = [ slim_fast_0_10_0 phoenix_html_2_5_0 phoenix_1_1_4 + ]; + + meta = { + description = ''Phoenix Template Engine for Slim''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/doomspork/phoenix_slim"; + }; + } + ) {}; + + phoenix_slim = phoenix_slim_0_4_1; + + phoenix_slime_0_4_1 = callPackage + ( + { + buildMix, + fetchHex, + slime_0_12_1, + phoenix_html_2_5_0, + phoenix_1_1_4, + cowboy_1_0_4 + }: + buildMix { + name = "phoenix_slime"; + version = "0.4.1"; + src = fetchHex { + pkg = "phoenix_slime"; + version = "0.4.1"; + sha256 = + "aa4036f88a0cab517ca8fa506c7c465fbb89f9857270c5711f6b83cec1cb8849"; + }; + beamDeps = [ + slime_0_12_1 + phoenix_html_2_5_0 + phoenix_1_1_4 + cowboy_1_0_4 + ]; + + meta = { + description = ''Phoenix Template Engine for Slim-like + templates''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/slime-lang/phoenix_slime"; + }; + } + ) {}; + + phoenix_slime = phoenix_slime_0_4_1; + + phoenix_timex_0_0_3 = callPackage + ( + { buildMix, fetchHex, timex_1_0_1, phoenix_html_2_5_0 }: + buildMix { + name = "phoenix_timex"; + version = "0.0.3"; + src = fetchHex { + pkg = "phoenix_timex"; + version = "0.0.3"; + sha256 = + "47b2c32de83581ef12b58bdd9518c8180684ec7161cc7944d3b27542e414bc84"; + }; + beamDeps = [ timex_1_0_1 phoenix_html_2_5_0 ]; + + meta = { + description = ''Phoenix and Timex integration''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Paradem/phoenix_timex"; + }; + } + ) {}; + + phoenix_timex = phoenix_timex_0_0_3; + + phoenix_token_auth_0_4_0 = callPackage + ( + { + buildMix, + fetchHex, + timex_1_0_0_rc4, + secure_random_0_1_1, + postgrex_0_11_1, + poison_1_4_0, + phoenix_1_1_4, + mailgun_0_1_2, + joken_0_13_1, + ecto_2_0_0_beta_0, + cowboy_1_0_4, + comeonin_2_0_3 + }: + buildMix { + name = "phoenix_token_auth"; + version = "0.4.0"; + src = fetchHex { + pkg = "phoenix_token_auth"; + version = "0.4.0"; + sha256 = + "be1f3ed9d770b4d8650a30b6c091513d44e0c0331616366457713db77de2a620"; + }; + beamDeps = [ + timex_1_0_0_rc4 + secure_random_0_1_1 + postgrex_0_11_1 + poison_1_4_0 + phoenix_1_1_4 + mailgun_0_1_2 + joken_0_13_1 + ecto_2_0_0_beta_0 + cowboy_1_0_4 + comeonin_2_0_3 + ]; + + meta = { + longDescription = ''Solution for token auth in Phoenix apps. + Provides an api for registration, account + confirmation and logging in.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/manukall/phoenix_token_auth"; + }; + } + ) {}; + + phoenix_token_auth = phoenix_token_auth_0_4_0; + + phst_transform_0_9_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + phst_transform = phst_transform_0_9_0; + + picosat_0_1_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "picosat"; + version = "0.1.0"; + src = fetchHex { + pkg = "picosat"; + version = "0.1.0"; + sha256 = + "d9bfa31240906306a6dae6bdd6fb1cb452e9462a391efa63017b17b2877cab51"; + }; + compilePorts = true; + + meta = { + description = ''Erlang bindings for PicoSAT''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/tsloughter/picosat"; + }; + } + ) {}; + + picosat = picosat_0_1_0; + + pigeon_0_3_0 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_7_5 }: + buildMix { + name = "pigeon"; + version = "0.3.0"; + src = fetchHex { + pkg = "pigeon"; + version = "0.3.0"; + sha256 = + "cb332c872656fc426b10309f0c840635549727f35df4deb52816f2c6b920639c"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_7_5 ]; + + meta = { + description = ''HTTP2-compliant wrapper for sending iOS and + Android push notifications.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/codedge-llc/pigeon"; + }; + } + ) {}; + + pigeon = pigeon_0_3_0; + + pin_elixir_0_0_1 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpotion_2_1_0 }: + buildMix { + name = "pin_elixir"; + version = "0.0.1"; + src = fetchHex { + pkg = "pin_elixir"; + version = "0.0.1"; + sha256 = + "0140eecb7c714f9dadbcec26c45e2b2d770735029b7dcf98cdba9d793d80130a"; + }; + beamDeps = [ poison_1_5_2 httpotion_2_1_0 ]; + + meta = { + description = ''A library to wrap the Pin Payments API''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mfeckie/pin_elixir"; + }; + } + ) {}; + + pin_elixir = pin_elixir_0_0_1; + + pinglix_1_1_1 = callPackage + ( + { buildMix, fetchHex, timex_0_19_5, poison_1_4_0, plug_1_1_1 }: + buildMix { + name = "pinglix"; + version = "1.1.1"; + src = fetchHex { + pkg = "pinglix"; + version = "1.1.1"; + sha256 = + "bff8166655cc143518c0089aca104755ab188816707fb73a5739dd094f45e895"; + }; + beamDeps = [ timex_0_19_5 poison_1_4_0 plug_1_1_1 ]; + + meta = { + longDescription = ''Plug compatible health check system in Elixir + based on + https://github.com/jbarnette/pinglish.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/pvdvreede/pinglix"; + }; + } + ) {}; + + pinglix = pinglix_1_1_1; + + pinyin_0_1_4 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + pinyin = pinyin_0_1_4; + + pipe_0_0_2 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + pipe = pipe_0_0_2; + + pipe_here_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + pipe_here = pipe_here_1_0_0; + + pipe_while_ok_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + pipe_while_ok = pipe_while_ok_0_0_2; + + pipette_0_0_4 = callPackage + ( + { buildMix, fetchHex, mock_0_1_1 }: + buildMix { + name = "pipette"; + version = "0.0.4"; + src = fetchHex { + pkg = "pipette"; + version = "0.0.4"; + sha256 = + "8742ea9b115071c3aa7cec4ddacfa161ff63fd647e0491ac442cb118d7198e26"; + }; + beamDeps = [ mock_0_1_1 ]; + + meta = { + description = ''new_data = pipette(data, template)''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/liquidz/pipette"; + }; + } + ) {}; + + pipette = pipette_0_0_4; + + pixie_0_3_3 = callPackage + ( + { + buildMix, + fetchHex, + timex_0_19_5, + secure_random_0_2_0, + poolboy_1_5_1, + poison_1_5_2, + plug_1_0_3, + gproc_0_5_0, + exredis_0_2_3, + ex_minimatch_0_0_1, + ex_doc_0_11_4, + cowboy_1_0_4, + con_cache_0_9_0 + }: + buildMix { + name = "pixie"; + version = "0.3.3"; + src = fetchHex { + pkg = "pixie"; + version = "0.3.3"; + sha256 = + "b89f9b3db05b68ce79656a4b188bae1065e96b286b5422321c37fcd508350b32"; + }; + beamDeps = [ + timex_0_19_5 + secure_random_0_2_0 + poolboy_1_5_1 + poison_1_5_2 + plug_1_0_3 + gproc_0_5_0 + exredis_0_2_3 + ex_minimatch_0_0_1 + ex_doc_0_11_4 + cowboy_1_0_4 + con_cache_0_9_0 + ]; + + meta = { + description = ''Bayeux compatible server written in Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/messagerocket/pixie"; + }; + } + ) {}; + + pixie = pixie_0_3_3; + + pkcs7_1_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + pkcs7 = pkcs7_1_0_2; + + placid_0_1_3 = callPackage + ( + { + buildMix, + fetchHex, + xml_builder_0_0_8, + poison_1_2_1, + plug_0_9_0, + linguist_0_1_5, + http_router_0_0_8, + cowboy_1_0_4 + }: + buildMix { + name = "placid"; + version = "0.1.3"; + src = fetchHex { + pkg = "placid"; + version = "0.1.3"; + sha256 = + "78d30028ba9238c9b2cb7c5f91dc818aa3746c1c410a38fec9732de8a3c20146"; + }; + beamDeps = [ + xml_builder_0_0_8 + poison_1_2_1 + plug_0_9_0 + linguist_0_1_5 + http_router_0_0_8 + cowboy_1_0_4 + ]; + + meta = { + longDescription = ''A REST toolkit for building highly-scalable + and fault-tolerant HTTP APIs with Elixir ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/slogsdon/placid"; + }; + } + ) {}; + + placid = placid_0_1_3; + + plasm_0_1_0 = callPackage + ( + { buildMix, fetchHex, postgrex_0_11_1, ecto_2_0_0_beta_0 }: + buildMix { + name = "plasm"; + version = "0.1.0"; + src = fetchHex { + pkg = "plasm"; + version = "0.1.0"; + sha256 = + "0eb476cae0b02dedbbc558f59ca22f0791221129d15fba570c0a3b96401d6836"; + }; + beamDeps = [ postgrex_0_11_1 ecto_2_0_0_beta_0 ]; + + meta = { + longDescription = ''Plasm is a composable query library for Ecto + containing several common query transforms to + make working with Ecto easier.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/atomic-fads/plasm"; + }; + } + ) {}; + + plasm = plasm_0_1_0; + + plist_0_0_2 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "plist"; + version = "0.0.2"; + src = fetchHex { + pkg = "plist"; + version = "0.0.2"; + sha256 = + "e3560e6d94c4464b7479bb42a0fc1450e89fe99e67af099fb5cb2b2c7402409f"; + }; + + 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"; + }; + } + ) {}; + + plist = plist_0_0_2; + + plug_0_11_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + plug_0_12_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + plug_0_13_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + plug_0_14_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + plug_0_5_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "plug"; + version = "0.5.0"; + src = fetchHex { + pkg = "plug"; + version = "0.5.0"; + sha256 = + "e34388510cdf725521cc772a8e711a090e1684bd964ced89d86b53dfd7a66ff5"; + }; + + meta = { + description = ''A specification and conveniences for composable + modules between web applications''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/elixir-lang/plug"; + }; + } + ) {}; + + plug_0_7_0 = callPackage + ( + { buildMix, fetchHex, cowboy_1_0_4 }: + buildMix { + name = "plug"; + version = "0.7.0"; + src = fetchHex { + pkg = "plug"; + version = "0.7.0"; + sha256 = + "c25ceaacbdd0085653d84f8187c179e523b2edd54d393673df2d761f85795867"; + }; + 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"; + }; + } + ) {}; + + plug_0_8_1 = callPackage + ( + { buildMix, fetchHex, cowboy_1_0_4 }: + buildMix { + name = "plug"; + version = "0.8.1"; + src = fetchHex { + pkg = "plug"; + version = "0.8.1"; + sha256 = + "bf16b2ac50df99b6179b25dd35737d5fb9dda1442f00bbeb54190244de5d8617"; + }; + 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"; + }; + } + ) {}; + + plug_0_8_4 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + plug_0_9_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + plug_1_0_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + plug_1_1_1 = callPackage + ( + { buildMix, fetchHex, cowboy_1_0_4 }: + buildMix { + name = "plug"; + version = "1.1.1"; + src = fetchHex { + pkg = "plug"; + version = "1.1.1"; + sha256 = + "15a8ebd70bc8e545ee96212f26751d57908a3ea63cd5ca1d664a5d70038b8071"; + }; + 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"; + }; + } + ) {}; + + plug = plug_1_1_1; + + plug_abort_2_1_1 = callPackage + ( + { buildMix, fetchHex, plug_0_8_1, cowboy_1_0_4, poison_1_0_3 }: + buildMix { + name = "plug_abort"; + version = "2.1.1"; + src = fetchHex { + pkg = "plug_abort"; + version = "2.1.1"; + sha256 = + "8da98a882ea79e08443e7d26c94ee2b572560efca3f0a5922c69e508ac02d883"; + }; + beamDeps = [ plug_0_8_1 cowboy_1_0_4 poison_1_0_3 ]; + + meta = { + description = ''Easily abort the processing of a plug stack ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/onkel-dirtus/plug_abort"; + }; + } + ) {}; + + plug_abort = plug_abort_2_1_1; + + plug_accept_language_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + plug_accept_language = plug_accept_language_0_1_0; + + plug_accesslog_0_10_0 = callPackage + ( + { + buildMix, + fetchHex, + tzdata_0_5_6, + timex_1_0_1, + plug_1_1_1, + cowboy_1_0_4 + }: + buildMix { + name = "plug_accesslog"; + version = "0.10.0"; + src = fetchHex { + pkg = "plug_accesslog"; + version = "0.10.0"; + sha256 = + "c7cb4562e6ee51f9329b0aea877c3c82d5c109a1946b40b19f7311b7290d474a"; + }; + beamDeps = [ tzdata_0_5_6 timex_1_0_1 plug_1_1_1 cowboy_1_0_4 ]; + + meta = { + description = ''Plug for writing access logs''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/mneudert/plug_accesslog"; + }; + } + ) {}; + + plug_accesslog = plug_accesslog_0_10_0; + + plug_assign_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + plug_assign = plug_assign_1_0_0; + + plug_auth_0_2_0 = callPackage + ( + { buildMix, fetchHex, plug_0_8_1, cowboy_1_0_4 }: + buildMix { + name = "plug_auth"; + version = "0.2.0"; + src = fetchHex { + pkg = "plug_auth"; + version = "0.2.0"; + sha256 = + "beb4fe7afce35714055b7cf362b1bd31665c0f4f2f2f6e59076d70ed60c48dc8"; + }; + beamDeps = [ plug_0_8_1 cowboy_1_0_4 ]; + + meta = { + description = ''A collection of authentication-related plugs''; + license = stdenv.lib.licenses.isc; + homepage = "https://github.com/bitgamma/plug_auth"; + }; + } + ) {}; + + plug_auth = plug_auth_0_2_0; + + plug_basic_auth_1_1_0 = callPackage + ( + { buildMix, fetchHex, plug_0_8_1, cowboy_1_0_4 }: + buildMix { + name = "plug_basic_auth"; + version = "1.1.0"; + src = fetchHex { + pkg = "plug_basic_auth"; + version = "1.1.0"; + sha256 = + "6763e5ad0f17d6693e296cc3a69c1db627f9b66bda2bcded4ddfcc84a42f0c03"; + }; + beamDeps = [ plug_0_8_1 cowboy_1_0_4 ]; + + meta = { + description = ''A Plug for using HTTP Basic Authentication in + Plug applications''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/rbishop/plug_basic_auth"; + }; + } + ) {}; + + plug_basic_auth = plug_basic_auth_1_1_0; + + plug_byte_serve_0_3_2 = callPackage + ( + { buildMix, fetchHex, plug_0_11_3 }: + buildMix { + name = "plug_byte_serve"; + version = "0.3.2"; + src = fetchHex { + pkg = "plug_byte_serve"; + version = "0.3.2"; + sha256 = + "f6e4873373b3efd207877ca5f797f4ea539cf2a885aae895c6c3df73ce9b75ac"; + }; + beamDeps = [ plug_0_11_3 ]; + + meta = { + description = ''A Plug for using HTTP Byte Serving in Plug + applications.''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/masteinhauser/plug_byte_serve"; + }; + } + ) {}; + + plug_byte_serve = plug_byte_serve_0_3_2; + + plug_cloudflare_1_2_1 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1, cidr_0_5_0 }: + buildMix { + name = "plug_cloudflare"; + version = "1.2.1"; + src = fetchHex { + pkg = "plug_cloudflare"; + version = "1.2.1"; + sha256 = + "854e202c40f86c50e0b95c373c5335106f21f9059fc74d8379915ab560ecf8b6"; + }; + beamDeps = [ plug_1_1_1 cidr_0_5_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"; + }; + } + ) {}; + + plug_cloudflare = plug_cloudflare_1_2_1; + + plug_cors_0_8_2 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1, cowboy_1_0_4 }: + buildMix { + name = "plug_cors"; + version = "0.8.2"; + src = fetchHex { + pkg = "plug_cors"; + version = "0.8.2"; + sha256 = + "286a36b000989538c168d115f6a017aaa15a4031e4f867d300878d81c3b8c6aa"; + }; + beamDeps = [ plug_1_1_1 cowboy_1_0_4 ]; + + meta = { + description = ''Deprecated: CORS Plug Middleware. Please use + corsica instead''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/bryanjos/plug_cors"; + }; + } + ) {}; + + plug_cors = plug_cors_0_8_2; + + plug_exception_handler_0_0_4 = callPackage + ( + { buildMix, fetchHex, plug_0_8_1, cowboy_1_0_4 }: + buildMix { + name = "plug_exception_handler"; + version = "0.0.4"; + src = fetchHex { + pkg = "plug_exception_handler"; + version = "0.0.4"; + sha256 = + "477ea599e516bcf8efb399ca43ca3d9cecd50982222b1f5f259092d4c99fca28"; + }; + beamDeps = [ plug_0_8_1 cowboy_1_0_4 ]; + + meta = { + description = ''Rescue exceptions from your plug stack''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/onkel-dirtus/plug_exception_handler"; + }; + } + ) {}; + + plug_exception_handler = plug_exception_handler_0_0_4; + + plug_forwarded_peer_0_0_2 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1 }: + 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_1 ]; + + 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"; + }; + } + ) {}; + + plug_forwarded_peer = plug_forwarded_peer_0_0_2; + + plug_fprof_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + plug_fprof = plug_fprof_0_0_1; + + plug_geoip2_0_4_2 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1, 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_1 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; + }; + } + ) {}; + + plug_geoip2 = plug_geoip2_0_4_2; + + plug_graphql_0_1_5 = callPackage + ( + { + buildMix, + fetchHex, + poison_1_5_2, + plug_0_8_1, + graphql_0_1_2, + cowboy_1_0_4 + }: + buildMix { + name = "plug_graphql"; + version = "0.1.5"; + src = fetchHex { + pkg = "plug_graphql"; + version = "0.1.5"; + sha256 = + "a0a93dfe74a701393428bd0963dd2b93db5e418f8bf095a0b1f9bdab854ef0b7"; + }; + beamDeps = [ poison_1_5_2 plug_0_8_1 graphql_0_1_2 cowboy_1_0_4 + ]; + + meta = { + description = ''A Plug integration for GraphQL Elixir''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/graphql-elixir/plug_graphql"; + }; + } + ) {}; + + plug_graphql = plug_graphql_0_1_5; + + plug_heartbeat_0_2_0 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1, 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_1 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"; + }; + } + ) {}; + + plug_heartbeat = plug_heartbeat_0_2_0; + + plug_json_parser_0_0_6 = callPackage + ( + { buildMix, fetchHex, plug_0_8_1, cowboy_1_0_4, poison_1_1_1 }: + buildMix { + name = "plug_json_parser"; + version = "0.0.6"; + src = fetchHex { + pkg = "plug_json_parser"; + version = "0.0.6"; + sha256 = + "4c07f3adade5ad8730b6ec5d33d50b5dbe1a960e2be29a764b415c5234c79204"; + }; + beamDeps = [ plug_0_8_1 cowboy_1_0_4 poison_1_1_1 ]; + + meta = { + description = ''JSON parse for Plug.Parsers ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/onkel-dirtus/plug_json_parser"; + }; + } + ) {}; + + plug_json_parser = plug_json_parser_0_0_6; + + plug_jwt_0_7_1 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1, joken_0_16_1, cowboy_1_0_4 }: + buildMix { + name = "plug_jwt"; + version = "0.7.1"; + src = fetchHex { + pkg = "plug_jwt"; + version = "0.7.1"; + sha256 = + "a87cd8815454093c3300bdae4f2af7ec8c671fd22ce55f598309b5bed4ac3a2a"; + }; + beamDeps = [ plug_1_1_1 joken_0_16_1 cowboy_1_0_4 ]; + + meta = { + description = ''JWT Plug Middleware''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/bryanjos/plug_jwt.git"; + }; + } + ) {}; + + plug_jwt = plug_jwt_0_7_1; + + plug_media_type_router_0_0_2 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1 }: + 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_1 ]; + + 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"; + }; + } + ) {}; + + plug_media_type_router = plug_media_type_router_0_0_2; + + plug_rails_cookie_session_store_0_1_0 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1, 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_1 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"; + }; + } + ) {}; + + plug_rails_cookie_session_store = + plug_rails_cookie_session_store_0_1_0; + + plug_redirect_https_0_0_4 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1 }: + buildMix { + name = "plug_redirect_https"; + version = "0.0.4"; + src = fetchHex { + pkg = "plug_redirect_https"; + version = "0.0.4"; + sha256 = + "b0cf8d86bb6d39653923e48067e6259beb6daee3f0e6ea6beff9ddcbef22b4d5"; + }; + beamDeps = [ plug_1_1_1 ]; + + 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"; + }; + } + ) {}; + + plug_redirect_https = plug_redirect_https_0_0_4; + + plug_require_header_0_8_0 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, plug_1_1_1 }: + 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_1 ]; + + 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"; + }; + } + ) {}; + + plug_require_header = plug_require_header_0_8_0; + + plug_response_header_0_2_1 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1 }: + 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_1 ]; + + meta = { + description = ''This plug allows manipulation of HTTP response + headers''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/c-rack/plug_response_header"; + }; + } + ) {}; + + plug_response_header = plug_response_header_0_2_1; + + plug_ribbon_0_2_1 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1 }: + buildMix { + name = "plug_ribbon"; + version = "0.2.1"; + src = fetchHex { + pkg = "plug_ribbon"; + version = "0.2.1"; + sha256 = + "34fcbffb6fc3adde6bb167506934ab19787d2fff82b6bf93918e0000159bfe9d"; + }; + beamDeps = [ plug_1_1_1 ]; + + meta = { + description = ''Injects a ribbon to your web application + depending on the environment''; + license = stdenv.lib.licenses.mit; + homepage = "https://git.io/plug_ribbon"; + }; + } + ) {}; + + plug_ribbon = plug_ribbon_0_2_1; + + plug_runtime_0_0_1 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1 }: + buildMix { + name = "plug_runtime"; + version = "0.0.1"; + src = fetchHex { + pkg = "plug_runtime"; + version = "0.0.1"; + sha256 = + "b47ec0f5870e3c6adcad708c37ecbdd69ec25cd1f5bf1c15e21f78b518b7eb1c"; + }; + beamDeps = [ plug_1_1_1 ]; + + 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"; + }; + } + ) {}; + + plug_runtime = plug_runtime_0_0_1; + + plug_secure_headers_0_0_1 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1 }: + buildMix { + name = "plug_secure_headers"; + version = "0.0.1"; + src = fetchHex { + pkg = "plug_secure_headers"; + version = "0.0.1"; + sha256 = + "727c5b7216aaa4bec2e0f88ed72199082820341602fad49cfc4c74477f55a905"; + }; + beamDeps = [ plug_1_1_1 ]; + + meta = { + description = ''HTTP security headers with validatation for + Phoenix/Plug''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/anotherhale/plug_secure_headers"; + }; + } + ) {}; + + plug_secure_headers = plug_secure_headers_0_0_1; + + plug_session_memcached_0_3_3 = callPackage + ( + { + buildMix, + fetchHex, + plug_1_1_1, + 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_1 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"; + }; + } + ) {}; + + plug_session_memcached = plug_session_memcached_0_3_3; + + plug_session_redis_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + plug_session_redis = plug_session_redis_0_1_0; + + plug_statsd_0_4_0 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1, 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_1 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"; + }; + } + ) {}; + + plug_statsd = plug_statsd_0_4_0; + + plug_test_helpers_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + plug_test_helpers = plug_test_helpers_0_1_0; + + plug_wait1_0_1_4 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + plug_wait1 = plug_wait1_0_1_4; + + plug_x_forwarded_for_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + plug_x_forwarded_for = plug_x_forwarded_for_0_1_0; + + plugin_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + plugin = plugin_0_1_0; + + plugs_0_1_0 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1, 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_1 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"; + }; + } + ) {}; + + plugs = plugs_0_1_0; + + plugsnag_1_0_1 = callPackage + ( + { buildMix, fetchHex, bugsnag_1_1_1 }: + buildMix { + name = "plugsnag"; + version = "1.0.1"; + src = fetchHex { + pkg = "plugsnag"; + version = "1.0.1"; + sha256 = + "cf6c257d400b872787ced1a7175adb7332a7aa9d12d1a6ac6abcd8cf799bd06c"; + }; + beamDeps = [ bugsnag_1_1_1 ]; + + meta = { + description = ''Bugsnag reporter for Elixir`s Plug''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jarednorman/plugsnag"; + }; + } + ) {}; + + plugsnag = plugsnag_1_0_1; + + plumber_girl_0_9_6 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + plumber_girl = plumber_girl_0_9_6; + + png_0_1_1 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "png"; + version = "0.1.1"; + src = fetchHex { + pkg = "png"; + version = "0.1.1"; + sha256 = + "f8d4a17c118dcc16bb18d0fda6e26947001f9312bc6c061d2236b424fc3dd9ea"; + }; + + 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"; + }; + } + ) {}; + + png = png_0_1_1; + + pocketex_0_1_0 = callPackage + ( + { buildMix, fetchHex, poison_1_3_1, httpoison_0_8_1 }: + buildMix { + name = "pocketex"; + version = "0.1.0"; + src = fetchHex { + pkg = "pocketex"; + version = "0.1.0"; + sha256 = + "b832df8e3f3102b69892cc5cfab4418de876a6ecc5780805458b9946aa407cbf"; + }; + beamDeps = [ poison_1_3_1 httpoison_0_8_1 ]; + + meta = { + description = ''Pocketex is an Elixir client for the Pocket read + later service (getpocket.com) ''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/essenciary/pocketex"; + }; + } + ) {}; + + pocketex = pocketex_0_1_0; + + poison_1_0_3 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "poison"; + version = "1.0.3"; + src = fetchHex { + pkg = "poison"; + version = "1.0.3"; + sha256 = + "632b9f5c4c2e56987f123b9f35e52b356c2de28ce7692d66becf12df10cc1012"; + }; + + meta = { + description = ''An incredibly fast, pure Elixir JSON library''; + license = stdenv.lib.licenses.unlicense; + homepage = "https://github.com/devinus/poison"; + }; + } + ) {}; + + poison_1_1_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "poison"; + version = "1.1.1"; + src = fetchHex { + pkg = "poison"; + version = "1.1.1"; + sha256 = + "57e77cdafe34769dcc114c6c249847b66304e5489891306b9762e3211520d767"; + }; + + meta = { + description = ''An incredibly fast, pure Elixir JSON library''; + license = stdenv.lib.licenses.unlicense; + homepage = "https://github.com/devinus/poison"; + }; + } + ) {}; + + poison_1_2_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "poison"; + version = "1.2.1"; + src = fetchHex { + pkg = "poison"; + version = "1.2.1"; + sha256 = + "7be9f3b2688efdcc689062ccd21e340ee5fd3ef9dcd142136034beb5ed1c2e23"; + }; + + meta = { + description = ''An incredibly fast, pure Elixir JSON library''; + license = stdenv.lib.licenses.unlicense; + homepage = "https://github.com/devinus/poison"; + }; + } + ) {}; + + poison_1_3_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + poison_1_4_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + poison_1_5_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + poison_1_5_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + poison_2_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + poison_2_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + poison = poison_2_1_0; + + poker_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + poker = poker_0_0_2; + + polyglot_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + polyglot = polyglot_0_0_1; + + polyvox_id3_0_2_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + polyvox_id3 = polyvox_id3_0_2_1; + + pool_0_0_2 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "pool"; + version = "0.0.2"; + src = fetchHex { + pkg = "pool"; + version = "0.0.2"; + sha256 = + "7be2ade7f9c000393d474dd96751680d5cb567cd68d3ee02c4c8e465d3a4395a"; + }; + + meta = { + description = ''Socket acceptor pool Not ready for use at this + time. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/slogsdon/pool"; + }; + } + ) {}; + + pool = pool_0_0_2; + + pool_ring_0_1_5 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + pool_ring = pool_ring_0_1_5; + + poolboy_1_2_1 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "poolboy"; + version = "1.2.1"; + src = fetchHex { + pkg = "poolboy"; + version = "1.2.1"; + sha256 = + "5e134d817f04e00b17187c50e7a38362812b7053591479a62f0025c45d622369"; + }; + + meta = { + description = ''A hunky Erlang worker pool factory''; + license = with stdenv.lib.licenses; [ unlicense asl20 ]; + homepage = "https://github.com/devinus/poolboy"; + }; + } + ) {}; + + poolboy_1_4_2 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + poolboy_1_5_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + poolboy = poolboy_1_5_1; + + pooler_1_4_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "pooler"; + version = "1.4.0"; + src = fetchHex { + pkg = "pooler"; + version = "1.4.0"; + sha256 = + "08ca384be64045b257a22a3569571c9ef33dafdac44212c7f0596f255e5a0d5c"; + }; + + meta = { + description = ''An OTP Process Pool Application''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/seth/pooler"; + }; + } + ) {}; + + pooler_1_5_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "pooler"; + version = "1.5.0"; + src = fetchHex { + pkg = "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; + + populator_0_4_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + populator = populator_0_4_0; + + porcelain_2_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + porcelain = porcelain_2_0_1; + + portal_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "portal"; + version = "0.0.1"; + src = fetchHex { + pkg = "portal"; + version = "0.0.1"; + sha256 = + "975d2aa4b4e155092214bee9ecc547d4c6603001c78eb824669823e1e116c84c"; + }; + + meta = { + longDescription = ''A shooting fault-tolerant doors for + distributed portal data-transfer application in + Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/josevalim/portal"; + }; + } + ) {}; + + portal = portal_0_0_1; + + porterstemmer_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "porterstemmer"; + version = "0.0.1"; + src = fetchHex { + pkg = "porterstemmer"; + version = "0.0.1"; + sha256 = + "8b3987cce8602d6ad16829fd4fefc848f01efcdc46d9e806059eec6a1b9d7cc8"; + }; + + meta = { + longDescription = '' Porter stemmer in Elixir. It does not stem + words beginning with an uppercase letter. This + is to prevent stemming of acronyms or names. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/frpaulas/porterstemmer.git"; + }; + } + ) {}; + + porterstemmer = porterstemmer_0_0_1; + + posterize_0_9_2 = callPackage + ( + { buildMix, fetchHex, postgrex_0_11_1 }: + buildMix { + name = "posterize"; + version = "0.9.2"; + src = fetchHex { + pkg = "posterize"; + version = "0.9.2"; + sha256 = + "c88f4fdefb2bc0cad5a7b19eca21fe9954f0a6b88a3af7eb685ee5df324b0ce2"; + }; + beamDeps = [ postgrex_0_11_1 ]; + + meta = { + description = ''erlang wrapper for postgrex''; + license = with stdenv.lib.licenses; [ asl20 mit ]; + homepage = "https://github.com/talentdeficit/posterize"; + }; + } + ) {}; + + posterize = posterize_0_9_2; + + postgrex_0_11_1 = callPackage + ( + { + buildMix, + fetchHex, + decimal_1_1_1, + db_connection_0_2_3, + 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_3 connection_1_0_2 + ]; + + meta = { + description = ''PostgreSQL driver for Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/ericmj/postgrex"; + }; + } + ) {}; + + postgrex = postgrex_0_11_1; + + postgrex_0_6_0 = callPackage + ( + { buildMix, fetchHex, decimal_0_2_5 }: + buildMix { + name = "postgrex"; + version = "0.6.0"; + src = fetchHex { + pkg = "postgrex"; + version = "0.6.0"; + sha256 = + "aa2aede73938a952ffbbe2b1173ac52c377a2055fd3e44ac1843bef782f5f8d4"; + }; + beamDeps = [ decimal_0_2_5 ]; + + meta = { + description = ''PostgreSQL driver for Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/ericmj/postgrex"; + }; + } + ) {}; + + postgrex_0_9_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + pot_0_9_4 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + pot = pot_0_9_4; + + power_assert_0_0_8 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + power_assert = power_assert_0_0_8; + + pqueue_1_5_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + pqueue = pqueue_1_5_1; + + prefecture_jp_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + prefecture_jp = prefecture_jp_0_0_2; + + presentex_0_0_10 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + presentex = presentex_0_0_10; + + pretty_hex_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + pretty_hex = pretty_hex_0_0_1; + + pricing_0_0_1 = callPackage + ( + { buildMix, fetchHex, timex_1_0_1, 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_1 porcelain_2_0_1 ]; + + meta = { + description = ''Pricing financial instruments in Elixir''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/arthurcolle/pricing"; + }; + } + ) {}; + + pricing = pricing_0_0_1; + + progress_bar_1_4_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + progress_bar = progress_bar_1_4_0; + + proper_1_1_1_beta = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "proper"; + version = "1.1.1-beta"; + src = fetchHex { + pkg = "proper"; + version = "1.1.1-beta"; + sha256 = + "bde5c0fef0f8d804a7c06aab4f293d19f42149e5880b3412b75efa608e86d342"; + }; + + meta = { + description = ''QuickCheck-inspired property-based testing tool + for Erlang.''; + license = stdenv.lib.licenses.gpl3; + homepage = "https://github.com/manopapad/proper"; + }; + } + ) {}; + + proper = proper_1_1_1_beta; + + proplist_1_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + proplist = proplist_1_1_0; + + protobuffs_0_8_2 = callPackage + ( + { buildRebar3, fetchHex, meck_0_8_4 }: + buildRebar3 { + name = "protobuffs"; + version = "0.8.2"; + src = fetchHex { + pkg = "protobuffs"; + version = "0.8.2"; + sha256 = + "b77e9d03518927b290cc5bb5cc9622a177e70289100fea9ccb57873573e54553"; + }; + + beamDeps = [ meck_0_8_4 ]; + + meta = { + longDescription = ''An implementation of Google`s Protocol + Buffers for Erlang, based on + ngerakines/erlang_protobuffs.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/basho/erlang_protobuffs"; + }; + } + ) {}; + + protobuffs = protobuffs_0_8_2; + + provider_asn1_0_1_2 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "provider_asn1"; + version = "0.1.2"; + src = fetchHex { + pkg = "provider_asn1"; + version = "0.1.2"; + sha256 = + "b310c46a2d5675431737f10a55d6b37347c11bf3efc4c1d7b63e710e3842c1bb"; + }; + + meta = { + description = ''Compile ASN.1 with Rebar3''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/knusbaum/provider_asn1"; + }; + } + ) {}; + + provider_asn1 = provider_asn1_0_1_2; + + providers_1_4_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + providers_1_6_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + providers = providers_1_6_0; + + proxy_0_0_1 = callPackage + ( + { + buildMix, fetchHex, plug_1_1_1, httpoison_0_8_1, cowboy_1_0_4 + }: + buildMix { + name = "proxy"; + version = "0.0.1"; + src = fetchHex { + pkg = "proxy"; + version = "0.0.1"; + sha256 = + "74691b18a0918d6e14df1f254ee9f342a547bc280151a4d88a540839ae75bbae"; + }; + beamDeps = [ plug_1_1_1 httpoison_0_8_1 cowboy_1_0_4 ]; + + meta = { + description = ''Proxy plug for upstream servers''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/chadwpry/elixir-proxy"; + }; + } + ) {}; + + proxy = proxy_0_0_1; + + pubnub_ex_0_0_2 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_1, exjsx_3_2_0 }: + buildMix { + name = "pubnub_ex"; + version = "0.0.2"; + src = fetchHex { + pkg = "pubnub_ex"; + version = "0.0.2"; + sha256 = + "83d270cfe2be6728fb96d9145371a87ddc876a97f91cdca2584cc82c2a0b91cb"; + }; + beamDeps = [ httpoison_0_8_1 exjsx_3_2_0 ]; + + meta = { + description = ''A pubsub tool for pubnub.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ryuone/pubnub_ex"; + }; + } + ) {}; + + pubnub_ex = pubnub_ex_0_0_2; + + pubsub_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + pubsub = pubsub_0_0_2; + + pulse_libs_1_0_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "pulse_libs"; + version = "1.0.0"; + src = fetchHex { + pkg = "pulse_libs"; + version = "1.0.0"; + sha256 = + "fda2aee58af502bb58752f6a6fcc3f97b2d6eed1a63d39ab91937e5811dbb2fc"; + }; + + meta = { + description = ''Elixir standard libraries instrumented with + PULSE.''; + license = stdenv.lib.licenses.asl20; + }; + } + ) {}; + + pulse_libs = pulse_libs_1_0_0; + + pusher_0_1_2 = callPackage + ( + { + buildMix, + fetchHex, + signaturex_0_0_8, + httpoison_0_8_1, + exjsx_3_2_0 + }: + buildMix { + name = "pusher"; + version = "0.1.2"; + src = fetchHex { + pkg = "pusher"; + version = "0.1.2"; + sha256 = + "6a21b65a7a1e6a4fe7b1cd0d555ca25c871e68441cef3373dc5771ab0c2a47c2"; + }; + beamDeps = [ signaturex_0_0_8 httpoison_0_8_1 exjsx_3_2_0 ]; + + meta = { + description = ''Pusher HTTP client''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/edgurgel/pusher"; + }; + } + ) {}; + + pusher = pusher_0_1_2; + + qdate_0_4_2 = callPackage + ( + { + buildRebar3, + 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"; + }; + } + ) {}; + + qdate = qdate_0_4_2; + + qiita_ex_0_0_2 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_1, exjsx_3_2_0 }: + buildMix { + name = "qiita_ex"; + version = "0.0.2"; + src = fetchHex { + pkg = "qiita_ex"; + version = "0.0.2"; + sha256 = + "0bb9a5535c0915c426ff13350b907cbd2b455bb99d8bcb8324ffadb6c9bcf1eb"; + }; + beamDeps = [ httpoison_0_8_1 exjsx_3_2_0 ]; + + meta = { + description = ''Qiita API v2 Interface for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ma2gedev/qiita_ex"; + }; + } + ) {}; + + qiita_ex = qiita_ex_0_0_2; + + qiniu_0_2_2 = callPackage + ( + { buildMix, fetchHex, poison_1_3_1, httpoison_0_7_5 }: + buildMix { + name = "qiniu"; + version = "0.2.2"; + src = fetchHex { + pkg = "qiniu"; + version = "0.2.2"; + sha256 = + "6c03aeb2d58a1d44f2476eba83640978f166267b07a4e7ce6cb4b498be5cb1c5"; + }; + beamDeps = [ poison_1_3_1 httpoison_0_7_5 ]; + + meta = { + description = ''Qiniu Resource (Cloud) Storage SDK for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/tony612/qiniu"; + }; + } + ) {}; + + qiniu = qiniu_0_2_2; + + qlc_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + qlc = qlc_1_0_0; + + quantum_1_6_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "quantum"; + version = "1.6.1"; + src = fetchHex { + pkg = "quantum"; + version = "1.6.1"; + sha256 = + "877ef048391ff0c0268cc17078dd707351241af0c04041bc432398017b998bbf"; + }; + + meta = { + description = ''Cron-like job scheduler for Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/c-rack/quantum-elixir"; + }; + } + ) {}; + + quantum = quantum_1_6_1; + + quark_1_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + quark = quark_1_0_2; + + queuex_0_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + queuex = queuex_0_2_0; + + quickrand_1_5_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + quickrand = quickrand_1_5_1; + + quinn_0_0_4 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "quinn"; + version = "0.0.4"; + src = fetchHex { + pkg = "quinn"; + version = "0.0.4"; + sha256 = + "6cafeb8e6d9635b3a26caf1768c70751f0bbdc6afb9acd7067a52316b22c8de2"; + }; + + meta = { + description = ''Quinn is Elixir xml parser. ''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/nhu313/Quinn"; + }; + } + ) {}; + + quinn = quinn_0_0_4; + + quintana_0_2_0 = callPackage + ( + { buildRebar3, 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''; + + }; + } + ) {}; + + quintana_0_2_1 = callPackage + ( + { buildRebar3, 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''; + + }; + } + ) {}; + + quintana = quintana_0_2_1; + + rabbitElixir_1_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + rabbitElixir = rabbitElixir_1_0_1; + + rabbit_common_3_5_6 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + rabbit_common = rabbit_common_3_5_6; + + rackla_0_1_0 = callPackage + ( + { + buildMix, + fetchHex, + poison_1_5_2, + plug_0_14_0, + hackney_1_4_8, + cowboy_1_0_4 + }: + buildMix { + name = "rackla"; + version = "0.1.0"; + src = fetchHex { + pkg = "rackla"; + version = "0.1.0"; + sha256 = + "640b77e8a78e66085a49fc4af6fc3b028b2db8af39ee4c950e4a812c15c8657f"; + }; + beamDeps = [ poison_1_5_2 plug_0_14_0 hackney_1_4_8 cowboy_1_0_4 + ]; + + meta = { + description = ''Rackla is library for building API-gateways.''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/AntonFagerberg/rackla"; + }; + } + ) {}; + + rackla = rackla_0_1_0; + + radpath_0_0_5 = callPackage + ( + { buildMix, fetchHex, excoveralls_0_5_1 }: + buildMix { + name = "radpath"; + version = "0.0.5"; + src = fetchHex { + pkg = "radpath"; + version = "0.0.5"; + sha256 = + "0da59ca494b833988c9e2b64e075a63949adf8716bf4470d738754723de9bdca"; + }; + beamDeps = [ excoveralls_0_5_1 ]; + + meta = { + description = ''A path library for Elixir inspired by Python path + libraries ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/lowks/Radpath"; + }; + } + ) {}; + + radpath = radpath_0_0_5; + + rails_4_2_0 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1 }: + buildMix { + name = "rails"; + version = "4.2.0"; + src = fetchHex { + pkg = "rails"; + version = "4.2.0"; + sha256 = + "731692769aa106a20c87b12dca15336fd1d16a7f02e2615ad76f6ce83a2b0b46"; + }; + beamDeps = [ plug_1_1_1 ]; + + 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"; + }; + } + ) {}; + + rails = rails_4_2_0; + + ranch_1_1_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + 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"; + }; + } + ) {}; + + ranch_1_2_1 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + 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"; + }; + } + ) {}; + + ranch = ranch_1_2_1; + + random_0_2_2 = callPackage + ( + { buildMix, fetchHex, tinymt_0_3_1 }: + buildMix { + name = "random"; + version = "0.2.2"; + src = fetchHex { + pkg = "random"; + version = "0.2.2"; + sha256 = + "504b6bd71c149a8b24c77df3b64c7261112f48811c91b5b8ab71f54d338c6b37"; + }; + beamDeps = [ tinymt_0_3_1 ]; + + meta = { + longDescription = ''This module contains pseudo-random number + generators for various distributions ported from + Python 3 random module for Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/yuce/random"; + }; + } + ) {}; + + random = random_0_2_2; + + random_string_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + random_string = random_string_0_0_1; + + range_extras_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + range_extras = range_extras_0_1_0; + + rankmatcher_0_1_2 = callPackage + ( + { buildRebar3, fetchHex, libsnarlmatch_0_1_5 }: + buildRebar3 { + name = "rankmatcher"; + version = "0.1.2"; + src = fetchHex { + pkg = "rankmatcher"; + version = "0.1.2"; + sha256 = + "8ea5974be574159e6ac188fc4309ef86889d6b227df44b1426f39b02b7d533e7"; + }; + + beamDeps = [ libsnarlmatch_0_1_5 ]; + + meta = { + description = ''Library to rank and match lists''; + license = stdenv.lib.licenses.cddl; + homepage = "https://github.com/dalmatinerdb/mstore"; + }; + } + ) {}; + + rankmatcher = rankmatcher_0_1_2; + + rapidax_0_0_3 = callPackage + ( + { + buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1, cowboy_1_0_4 + }: + buildMix { + name = "rapidax"; + version = "0.0.3"; + src = fetchHex { + pkg = "rapidax"; + version = "0.0.3"; + sha256 = + "9912b79b3d2729465bf66315bd955e031aeb038f05a63faa2dc0414026edb18c"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 cowboy_1_0_4 ]; + + meta = { + description = ''Rapidly develop your API client - based on + rapidash gem''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/victorlcampos/rapidax"; + }; + } + ) {}; + + rapidax = rapidax_0_0_3; + + rational_0_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + rational = rational_0_2_0; + + ratx_0_1_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + 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"; + }; + } + ) {}; + + ratx = ratx_0_1_0; + + raven_0_0_5 = callPackage + ( + { buildMix, fetchHex, hackney_1_0_6, uuid_0_1_5, poison_1_2_1 }: + buildMix { + name = "raven"; + version = "0.0.5"; + src = fetchHex { + pkg = "raven"; + version = "0.0.5"; + sha256 = + "dac032f4a14adbd174927508709585bd34f9baa2836ff3987b4d071790cb229a"; + }; + beamDeps = [ hackney_1_0_6 uuid_0_1_5 poison_1_2_1 ]; + + meta = { + description = ''Raven is an Elixir client for Sentry''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/vishnevskiy/raven-elixir"; + }; + } + ) {}; + + raven = raven_0_0_5; + + raygun_0_2_0 = callPackage + ( + { + buildMix, + fetchHex, + timex_1_0_1, + poison_1_5_2, + plug_1_1_1, + httpoison_0_8_1 + }: + buildMix { + name = "raygun"; + version = "0.2.0"; + src = fetchHex { + pkg = "raygun"; + version = "0.2.0"; + sha256 = + "742fe2fef4fff5933802566375ce8efe27eaa2afbb8609c1bca50ef43f30bc3f"; + }; + beamDeps = [ timex_1_0_1 poison_1_5_2 plug_1_1_1 httpoison_0_8_1 + ]; + + meta = { + longDescription = ''Send errors in your application to Raygun. + Raygun captures all your application errors in + one place. It can be used as a Plug, via Logger + and/or programmatically.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/cobenian/raygun"; + }; + } + ) {}; + + raygun = raygun_0_2_0; + + reactive_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "reactive"; + version = "0.0.1"; + src = fetchHex { + pkg = "reactive"; + version = "0.0.1"; + sha256 = + "af17deb3beedd24319940000e286a1f8d9f29beb498980475e16cc57857469f9"; + }; + + meta = { + description = ''Reactive Programming for Elixir''; + + }; + } + ) {}; + + reactive = reactive_0_0_1; + + readme_md_doc_0_1_2 = callPackage + ( + { buildMix, fetchHex, ex_doc_0_11_4, argument_parser_0_1_1 }: + 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_1 ]; + + meta = { + description = ''README.md generation tool for small Elixir + project''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/jisaacstone/readme_md_docgen"; + }; + } + ) {}; + + readme_md_doc = readme_md_doc_0_1_2; + + reagent_0_1_5 = callPackage + ( + { buildMix, fetchHex, exts_0_2_2, socket_0_2_8 }: + buildMix { + name = "reagent"; + version = "0.1.5"; + src = fetchHex { + pkg = "reagent"; + version = "0.1.5"; + sha256 = + "bc2765571d6358098c2c90f7870aa5111bf726a1abef2ad131f02b9aa55c5c9c"; + }; + beamDeps = [ exts_0_2_2 socket_0_2_8 ]; + + meta = { + description = ''You need more reagents to conjure this server''; + license = stdenv.lib.licenses.wtfpl; + homepage = "https://github.com/meh/reagent"; + }; + } + ) {}; + + reagent = reagent_0_1_5; + + reap_0_1_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + reap = reap_0_1_3; + + reaxive_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + reaxive = reaxive_0_1_0; + + reaxt_0_3_2 = callPackage + ( + { + buildMix, + fetchHex, + poolboy_1_5_1, + poison_1_4_0, + plug_1_1_1, + exos_1_0_0, + cowboy_1_0_4 + }: + buildMix { + name = "reaxt"; + version = "0.3.2"; + src = fetchHex { + pkg = "reaxt"; + version = "0.3.2"; + sha256 = + "48413f06e14e26b10ea513f7006625684c8db23ea18bfd61eaa5732c588f769c"; + }; + beamDeps = [ + poolboy_1_5_1 + poison_1_4_0 + plug_1_1_1 + exos_1_0_0 + cowboy_1_0_4 + ]; + + meta = { + longDescription = ''Use your react components into your elixir + application, using webpack compilation.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/awetzel/reaxt"; + }; + } + ) {}; + + reaxt = reaxt_0_3_2; + + rebar3_abnfc_plugin_0_1_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "rebar3_abnfc_plugin"; + version = "0.1.0"; + src = fetchHex { + pkg = "rebar3_abnfc_plugin"; + version = "0.1.0"; + sha256 = + "7c9cf5608888c0fe149cfc4d25a5911e604a1e63f7c0c73c3cf8792a33be9a7b"; + }; + + meta = { + description = ''A rebar plugin for abnfc''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/surik/rebar3_abnfc_plugin"; + }; + } + ) {}; + + rebar3_abnfc_plugin = rebar3_abnfc_plugin_0_1_0; + + rebar3_appup_plugin_1_0_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + rebar3_appup_plugin = rebar3_appup_plugin_1_0_0; + + rebar3_asn1_compiler_1_0_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + rebar3_asn1_compiler = rebar3_asn1_compiler_1_0_0; + + rebar3_auto_0_3_0 = callPackage + ( + { buildRebar3, fetchHex, enotify_0_1_0 }: + buildRebar3 { + name = "rebar3_auto"; + version = "0.3.0"; + src = fetchHex { + pkg = "rebar3_auto"; + version = "0.3.0"; + sha256 = + "9fcca62411b0b7680426bd911002c0769690aef3838829583ffa4547fd5038b5"; + }; + + beamDeps = [ enotify_0_1_0 ]; + + meta = { + description = ''Rebar3 plugin for auto compiling on changes''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/tsloughter/rebar3_auto"; + }; + } + ) {}; + + rebar3_auto = rebar3_auto_0_3_0; + + rebar3_autotest_0_1_1 = callPackage + ( + { buildRebar3, fetchHex, enotify_0_1_0 }: + buildRebar3 { + name = "rebar3_autotest"; + version = "0.1.1"; + src = fetchHex { + pkg = "rebar3_autotest"; + version = "0.1.1"; + sha256 = + "7f5856336e772b14a578f0c01ce14b2a195c41d5b595c83662ffd130f7874eac"; + }; + + beamDeps = [ enotify_0_1_0 ]; + + meta = { + description = ''A rebar3 plugin to run tests automatically when + there are changes.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/NobbZ/rebar3_autotest"; + }; + } + ) {}; + + rebar3_autotest = rebar3_autotest_0_1_1; + + rebar3_cuttlefish_0_5_0 = callPackage + ( + { buildRebar3, fetchHex, cuttlefish_2_0_7 }: + buildRebar3 { + name = "rebar3_cuttlefish"; + version = "0.5.0"; + src = fetchHex { + pkg = "rebar3_cuttlefish"; + version = "0.5.0"; + sha256 = + "dd2cdb1e6cbcf5cdb92adec0e359a3ec5f407c49a6182e7fdfcde1b45e790348"; + }; + + beamDeps = [ cuttlefish_2_0_7 ]; + + meta = { + description = ''A rebar plugin''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/tsloughter/rebar3_cuttlefish"; + }; + } + ) {}; + + rebar3_cuttlefish = rebar3_cuttlefish_0_5_0; + + rebar3_diameter_compiler_0_3_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + rebar3_diameter_compiler = rebar3_diameter_compiler_0_3_1; + + rebar3_elixirc_0_1_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + rebar3_elixirc = rebar3_elixirc_0_1_0; + + rebar3_eqc_0_0_8 = callPackage + ( + { buildRebar3, fetchHex, cf_0_1_2 }: + buildRebar3 { + name = "rebar3_eqc"; + version = "0.0.8"; + src = fetchHex { + pkg = "rebar3_eqc"; + version = "0.0.8"; + sha256 = + "0a5cd09106a23ccad2b528e5c2f68f7884cba367b03e81c055f1f3fc742d1526"; + }; + + beamDeps = [ cf_0_1_2 ]; + + meta = { + description = ''Plugin to run EQC properties''; + license = stdenv.lib.licenses.apsl20; + homepage = + "https://github.com/kellymclaughlin/rebar3-eqc-plugin"; + }; + } + ) {}; + + rebar3_eqc = rebar3_eqc_0_0_8; + + rebar3_exunit_0_1_1 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "rebar3_exunit"; + version = "0.1.1"; + src = fetchHex { + pkg = "rebar3_exunit"; + version = "0.1.1"; + sha256 = + "910d2f2038dcf2b32deb40a36082ad5435389106b2dbd6266e0ee3a20a688650"; + }; + + meta = { + description = ''Plugin to run exUnit tests''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/processone/rebar3_exunit_plugin"; + }; + } + ) {}; + + rebar3_exunit = rebar3_exunit_0_1_1; + + rebar3_gpb_plugin_1_2_0 = callPackage + ( + { buildRebar3, fetchHex, gpb_3_18_8 }: + buildRebar3 { + name = "rebar3_gpb_plugin"; + version = "1.2.0"; + src = fetchHex { + pkg = "rebar3_gpb_plugin"; + version = "1.2.0"; + sha256 = + "a5b305359d17399a2f4bfc26c6f4fd12ad846966642241ff85eb6e04bd1e97b6"; + }; + + beamDeps = [ gpb_3_18_8 ]; + + meta = { + description = ''A rebar3 gpb plugin for compiling .proto files''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/lrascao/rebar3_gpb_plugin"; + }; + } + ) {}; + + rebar3_gpb_plugin = rebar3_gpb_plugin_1_2_0; + + rebar3_hex_1_19_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + rebar3_hex = rebar3_hex_1_19_0; + + rebar3_idl_compiler_0_3_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + rebar3_idl_compiler = rebar3_idl_compiler_0_3_0; + + rebar3_live_0_1_3 = callPackage + ( + { buildRebar3, fetchHex, enotify_0_1_0 }: + buildRebar3 { + name = "rebar3_live"; + version = "0.1.3"; + src = fetchHex { + pkg = "rebar3_live"; + version = "0.1.3"; + sha256 = + "d9ee2ff022fc73ac94f206c13ff8aa7591a536704f49c4cbacabf37d181a4391"; + }; + + beamDeps = [ enotify_0_1_0 ]; + + meta = { + description = ''Rebar3 live plugin''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/pvmart/rebar3_live"; + }; + } + ) {}; + + rebar3_live = rebar3_live_0_1_3; + + rebar3_neotoma_plugin_0_2_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + rebar3_neotoma_plugin = rebar3_neotoma_plugin_0_2_0; + + rebar3_proper_0_5_0 = callPackage + ( + { buildRebar3, fetchHex, proper_1_1_1_beta }: + buildRebar3 { + name = "rebar3_proper"; + version = "0.5.0"; + src = fetchHex { + pkg = "rebar3_proper"; + version = "0.5.0"; + sha256 = + "c73549e279454f6a5887d564addafb779a4dd276460f17af5c26045ef8f44059"; + }; + + beamDeps = [ proper_1_1_1_beta ]; + + meta = { + description = ''Run PropEr test suites''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/ferd/rebar3_proper"; + }; + } + ) {}; + + rebar3_proper = rebar3_proper_0_5_0; + + rebar3_proper_plugin_0_1_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "rebar3_proper_plugin"; + version = "0.1.0"; + src = fetchHex { + pkg = "rebar3_proper_plugin"; + version = "0.1.0"; + sha256 = + "7071555afb623e73a2c572de6d4379f9c197b44e68608944eb2835617faed10d"; + }; + + meta = { + description = ''A rebar plugin''; + + }; + } + ) {}; + + rebar3_proper_plugin = rebar3_proper_plugin_0_1_0; + + rebar3_protobuffs_0_2_0 = callPackage + ( + { buildRebar3, fetchHex, protobuffs_0_8_2 }: + buildRebar3 { + name = "rebar3_protobuffs"; + version = "0.2.0"; + src = fetchHex { + pkg = "rebar3_protobuffs"; + version = "0.2.0"; + sha256 = + "b5422c5aee1dcea90fa44e4b769c01e8cefe8b1ab09e44b4d2008d465e80c49c"; + }; + + beamDeps = [ protobuffs_0_8_2 ]; + + meta = { + description = ''A rebar plugin''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/benoitc/rebar3_protobuffs"; + }; + } + ) {}; + + rebar3_protobuffs = rebar3_protobuffs_0_2_0; + + rebar3_run_0_2_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "rebar3_run"; + version = "0.2.0"; + src = fetchHex { + pkg = "rebar3_run"; + version = "0.2.0"; + sha256 = + "321e0647893957d1bb05a88d940a8a3b9129097d63529e13f815c4857bf29497"; + }; + compilePorts = true; + + meta = { + description = ''A rebar plugin''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/tsloughter/rebar3_run"; + }; + } + ) {}; + + rebar3_run = rebar3_run_0_2_0; + + rebar3_yang_plugin_0_2_1 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "rebar3_yang_plugin"; + version = "0.2.1"; + src = fetchHex { + pkg = "rebar3_yang_plugin"; + version = "0.2.1"; + sha256 = + "8a68890ba67baf25b539acfd20783732a90b57f75f7d868cb62d1f7f061449fa"; + }; + + meta = { + description = ''A rebar plugin for yang''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/surik/rebar3_yang_plugin"; + }; + } + ) {}; + + rebar3_yang_plugin = rebar3_yang_plugin_0_2_1; + + rebar_alias_0_1_0 = callPackage + ( + { buildRebar3, 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''; + + }; + } + ) {}; + + rebar_alias = rebar_alias_0_1_0; + + rebar_erl_vsn_0_1_0 = callPackage + ( + { buildRebar3, 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; + }; + } + ) {}; + + rebar_erl_vsn = rebar_erl_vsn_0_1_0; + + rebar_protobuffs_0_1_0 = callPackage + ( + { buildRebar3, fetchHex, gpb_3_18_8 }: + buildRebar3 { + name = "rebar_protobuffs"; + version = "0.1.0"; + src = fetchHex { + pkg = "rebar_protobuffs"; + version = "0.1.0"; + sha256 = + "1345b2135aed454855bfc74b760feb420924824c937157098b1f8668deb919b5"; + }; + + beamDeps = [ gpb_3_18_8 ]; + + meta = { + description = ''A rebar plugin''; + + }; + } + ) {}; + + rebar_protobuffs = rebar_protobuffs_0_1_0; + + rebind_0_1_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + rebind = rebind_0_1_3; + + recaptcha_1_1_1 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "recaptcha"; + version = "1.1.1"; + src = fetchHex { + pkg = "recaptcha"; + version = "1.1.1"; + sha256 = + "ebfa37443d23d2c70366f3f84f00bd50d59da5583ffde2673bc5ea83667b5751"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''A simple reCaptcha package for Phoenix + applications.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/JustMikey/recaptcha"; + }; + } + ) {}; + + recaptcha = recaptcha_1_1_1; + + recon_2_2_1 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "recon"; + version = "2.2.1"; + src = fetchHex { + pkg = "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.bsd3; + homepage = "https://github.com/ferd/recon"; + }; + } + ) {}; + + recon = recon_2_2_1; + + recon_ex_0_9_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "recon_ex"; + version = "0.9.0"; + src = fetchHex { + pkg = "recon_ex"; + version = "0.9.0"; + sha256 = + "7a24dcb173e74c0e65357deb6e084cd71b1f24915b4801e12ec38bd4d587c2dd"; + }; + + meta = { + description = ''Elixir wrapper for Recon, diagnostic tools for + production use''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/tatsuya6502/recon_ex"; + }; + } + ) {}; + + recon_ex = recon_ex_0_9_0; + + record_translator_0_0_3 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "record_translator"; + version = "0.0.3"; + src = fetchHex { + pkg = "record_translator"; + version = "0.0.3"; + sha256 = + "d6a30b2b23194e58c282c86cc0d3f61a738e1840afcee4007fdbb10e7ad7bf76"; + }; + + meta = { + description = ''Erlang`s file of records to Elixir`s maps''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/massn/record_translator"; + }; + } + ) {}; + + record_translator = record_translator_0_0_3; + + red_0_0_5 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + red = red_0_0_5; + + red_black_tree_1_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + red_black_tree = red_black_tree_1_2_0; + + reddhl_0_0_1 = callPackage + ( + { buildRebar3, fetchHex, poison_1_4_0, httpoison_0_8_1 }: + buildRebar3 { + name = "reddhl"; + version = "0.0.1"; + src = fetchHex { + pkg = "reddhl"; + version = "0.0.1"; + sha256 = + "4b2a5b1e3119b5b44e57c10e395fc817d977bf7fd72464605efff08266336871"; + }; + + beamDeps = [ poison_1_4_0 httpoison_0_8_1 ]; + + meta = { + description = ''An headline and link puller for Reddit and its + various subreddits ''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/MonkeyIsNull/reddhl"; + }; + } + ) {}; + + reddhl = reddhl_0_0_1; + + redis_poolex_0_0_5 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + redis_poolex = redis_poolex_0_0_5; + + redix_0_3_4 = callPackage + ( + { buildMix, fetchHex, connection_1_0_2 }: + buildMix { + name = "redix"; + version = "0.3.4"; + src = fetchHex { + pkg = "redix"; + version = "0.3.4"; + sha256 = + "111acb6b4250f2c2aa1757bf9404176a5fc1e2a70cfd2413cbf26e217f61927e"; + }; + 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"; + }; + } + ) {}; + + redix = redix_0_3_4; + + redo_2_0_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + redo = redo_2_0_1; + + redtube_1_0_0 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "redtube"; + version = "1.0.0"; + src = fetchHex { + pkg = "redtube"; + version = "1.0.0"; + sha256 = + "f9c5b83c3f860c448328079f1250b54f06749d9c1adb593f7e11e45fe8131a0d"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''API Wrapper for Redtube''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/kkirsche/Redtube_Elixir"; + }; + } + ) {}; + + redtube = redtube_1_0_0; + + ref_inspector_0_8_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ref_inspector = ref_inspector_0_8_0; + + relax_0_3_0 = callPackage + ( + { + buildMix, + fetchHex, + poison_1_5_2, + plug_1_1_1, + ja_serializer_0_7_1, + ecto_2_0_0_beta_0, + cowboy_1_0_4 + }: + buildMix { + name = "relax"; + version = "0.3.0"; + src = fetchHex { + pkg = "relax"; + version = "0.3.0"; + sha256 = + "04382f1d8a6d14e3a9b2177a318aa02129665fa3e00fb52d0042e286ea9af392"; + }; + beamDeps = [ + poison_1_5_2 + plug_1_1_1 + ja_serializer_0_7_1 + ecto_2_0_0_beta_0 + cowboy_1_0_4 + ]; + + meta = { + longDescription = ''A jsonapi.org serializer and optional server + implementation in Elixir. Relax can be used as a + standalone API with Relax.Router and + Relax.Resources, or integrated into Phoenix + using Relax.Serializer.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/AgilionApps/relax"; + }; + } + ) {}; + + relax = relax_0_3_0; + + relflow_1_0_4 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "relflow"; + version = "1.0.4"; + src = fetchHex { + pkg = "relflow"; + version = "1.0.4"; + sha256 = + "e6d9652ed7511aea18fa012d5abc19301acd8cbe81a44a159391086a5be12e1f"; + }; + + meta = { + description = ''Rebar3 release workflow plugin''; + license = stdenv.lib.licenses.apsl20; + }; + } + ) {}; + + relflow = relflow_1_0_4; + + relief_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + relief = relief_0_0_1; + + relisa_0_1_0 = callPackage + ( + { buildMix, fetchHex, exrm_0_18_8 }: + buildMix { + name = "relisa"; + version = "0.1.0"; + src = fetchHex { + pkg = "relisa"; + version = "0.1.0"; + sha256 = + "e771fa9da8363571765374a0cf3f1237da8c1be35ea4109165928ca42895954c"; + }; + beamDeps = [ exrm_0_18_8 ]; + + meta = { + description = ''Fast, simple, and composable deployment library + for Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/SenecaSystems/relisa"; + }; + } + ) {}; + + relisa = relisa_0_1_0; + + relocker_0_0_6 = callPackage + ( + { buildMix, fetchHex, exredis_0_2_3 }: + buildMix { + name = "relocker"; + version = "0.0.6"; + src = fetchHex { + pkg = "relocker"; + version = "0.0.6"; + sha256 = + "8aaaa5f7d118b543764005fa7af47a77d9c74d606603c29005b0637ef1c192df"; + }; + 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"; + }; + } + ) {}; + + relocker = relocker_0_0_6; + + reltool_util_1_5_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + reltool_util = reltool_util_1_5_1; + + relx_3_17_0 = callPackage + ( + { + buildRebar3, + fetchHex, + providers_1_6_0, + getopt_0_8_2, + erlware_commons_0_18_0, + cf_0_2_1, + bbmustache_1_0_4 + }: + buildRebar3 { + name = "relx"; + version = "3.17.0"; + src = fetchHex { + pkg = "relx"; + version = "3.17.0"; + sha256 = + "c22f3d8400394787cb67191dea4de1acccf1563f6cd2f1934bf2a13a525c5ef6"; + }; + + beamDeps = [ + providers_1_6_0 + getopt_0_8_2 + erlware_commons_0_18_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"; + }; + } + ) {}; + + relx = relx_3_17_0; + + relx_3_3_1 = callPackage + ( + { + buildRebar3, + fetchHex, + providers_1_4_1, + getopt_0_8_2, + erlware_commons_0_14_0, + bbmustache_1_0_3 + }: + buildRebar3 { + name = "relx"; + version = "3.3.1"; + src = fetchHex { + pkg = "relx"; + version = "3.3.1"; + sha256 = + "782fdce1daccb5dca6b372cdffb979cda3431ac245db5fafe93247f4fdab049b"; + }; + + beamDeps = [ + providers_1_4_1 + getopt_0_8_2 + erlware_commons_0_14_0 + bbmustache_1_0_3 + ]; + + meta = { + description = ''Release assembler for Erlang/OTP Releases''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/erlware/relx"; + }; + } + ) {}; + + relx_3_5_0 = callPackage + ( + { + buildRebar3, + 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"; + }; + } + ) {}; + + remix_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + remix = remix_0_0_2; + + remodel_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + remodel = remodel_0_0_1; + + rendezvous_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "rendezvous"; + version = "0.0.1"; + src = fetchHex { + pkg = "rendezvous"; + version = "0.0.1"; + sha256 = + "92aa7157aa2d0c1dcfc1dfeddeaef023aca6f5f0790fd8040828c831f3f7f893"; + }; + + meta = { + longDescription = ''Implementation of the Rendezvous or Highest + Random Weight (HRW) hashing algorithm''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Puddah/Rendezvous"; + }; + } + ) {}; + + rendezvous = rendezvous_0_0_1; + + repoquery_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + repoquery = repoquery_0_0_2; + + reporter_0_4_1 = callPackage + ( + { + buildMix, + fetchHex, + poison_2_1_0, + httpoison_0_8_1, + floki_0_7_1, + feeder_ex_0_0_2 + }: + buildMix { + name = "reporter"; + version = "0.4.1"; + src = fetchHex { + pkg = "reporter"; + version = "0.4.1"; + sha256 = + "414bc7874fd551d5559907b88617a9a58aacb556d8b6adf6270cbef34656ebac"; + }; + beamDeps = [ + poison_2_1_0 + httpoison_0_8_1 + floki_0_7_1 + feeder_ex_0_0_2 + ]; + + meta = { + description = ''Simple getting reviews library from AppStore and + GooglePlay''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/KazuCocoa/simple_app_reporter_ex"; + }; + } + ) {}; + + reporter = reporter_0_4_1; + + reprise_0_5_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + reprise = reprise_0_5_0; + + resin_0_4_1 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1 }: + buildMix { + name = "resin"; + version = "0.4.1"; + src = fetchHex { + pkg = "resin"; + version = "0.4.1"; + sha256 = + "c6bdfd13e91cbc289df91440e216b91aa590a7dafe59958b0197cedd8cfef792"; + }; + beamDeps = [ plug_1_1_1 ]; + + meta = { + description = ''Pour resin in your plug pipeline to add + (configurable) enterpriseyness!''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Frost/resin"; + }; + } + ) {}; + + resin = resin_0_4_1; + + rest_1_5_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + rest = rest_1_5_0; + + rest_client_0_0_1 = callPackage + ( + { + buildMix, + fetchHex, + poison_1_5_2, + mock_0_1_1, + inflex_1_4_1, + httpotion_2_1_0 + }: + buildMix { + name = "rest_client"; + version = "0.0.1"; + src = fetchHex { + pkg = "rest_client"; + version = "0.0.1"; + sha256 = + "b537f9bc91fbf09ecb6c5890c0e5a01f20de869bc804f730688f61d6acd96cf8"; + }; + beamDeps = [ + poison_1_5_2 mock_0_1_1 inflex_1_4_1 httpotion_2_1_0 + ]; + + meta = { + longDescription = ''RestClient is a generic REST client library. + It generates structs and functions for use with + APIs.''; + + homepage = "https://github.com/phikes/elixir-restclient"; + }; + } + ) {}; + + rest_client = rest_client_0_0_1; + + rethinkdb_0_3_2 = callPackage + ( + { buildMix, fetchHex, poison_1_0_3, connection_1_0_2 }: + buildMix { + name = "rethinkdb"; + version = "0.3.2"; + src = fetchHex { + pkg = "rethinkdb"; + version = "0.3.2"; + sha256 = + "b97da3f1281575ac4e24d1cc0ce20a7f5a2e05bc7d212e4e58e0c9f2411a1c8a"; + }; + beamDeps = [ poison_1_0_3 connection_1_0_2 ]; + + meta = { + description = ''RethinkDB driver for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/hamiltop/rethinkdb-elixir"; + }; + } + ) {}; + + rethinkdb = rethinkdb_0_3_2; + + reup_0_1_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "reup"; + version = "0.1.0"; + src = fetchHex { + pkg = "reup"; + version = "0.1.0"; + sha256 = + "949a672190119f8b24160167e3685fdd5397474f98dc875ccfd31378ebd68506"; + }; + + meta = { + description = ''dev watcher that auto compiles and reloads + modules''; + license = stdenv.lib.licenses.apsl20; + }; + } + ) {}; + + reup = reup_0_1_0; + + reverse_proxy_0_1_0 = callPackage + ( + { + buildMix, fetchHex, plug_1_0_3, httpoison_0_7_5, cowboy_1_0_4 + }: + buildMix { + name = "reverse_proxy"; + version = "0.1.0"; + src = fetchHex { + pkg = "reverse_proxy"; + version = "0.1.0"; + sha256 = + "77ab07ca68e758d5ce07878ae4effab8522545e6d491f9ae96c87814f35cbab2"; + }; + beamDeps = [ plug_1_0_3 httpoison_0_7_5 cowboy_1_0_4 ]; + + meta = { + longDescription = ''A Plug based, reverse proxy server. Upstream + servers can be listed per-domain in the + following forms: - List of remote nodes, e.g. + `["host:4000", "host:4001"]` - A `{plug, + options}` tuple, useful for umbrella + applications''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/slogsdon/elixir-reverse-proxy"; + }; + } + ) {}; + + reverse_proxy = reverse_proxy_0_1_0; + + revision_plate_ex_0_1_0 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1, 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_1 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"; + }; + } + ) {}; + + revision_plate_ex = revision_plate_ex_0_1_0; + + rfc3339_0_2_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "rfc3339"; + version = "0.2.0"; + src = fetchHex { + pkg = "rfc3339"; + version = "0.2.0"; + sha256 = + "992ebf382d6982f2fff48928394d4d50d413b7a4abe576ba518b92c82ac2eb99"; + }; + + meta = { + description = ''an rfc3339 parser and formatter''; + license = with stdenv.lib.licenses; [ asl20 mit ]; + homepage = "https://github.com/talentdeficit/rfc3339"; + }; + } + ) {}; + + rfc3339 = rfc3339_0_2_0; + + riak_1_0_0 = callPackage + ( + { + buildMix, fetchHex, riakc_2_1_1, pooler_1_5_0, linguist_0_1_5 + }: + buildMix { + name = "riak"; + version = "1.0.0"; + src = fetchHex { + pkg = "riak"; + version = "1.0.0"; + sha256 = + "4171c6e40aba67f8464c807bd70c68e8bf63c9cecf3d28dde88ef1e8f5a21930"; + }; + beamDeps = [ riakc_2_1_1 pooler_1_5_0 linguist_0_1_5 ]; + + meta = { + description = ''A Riak client written in Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/drewkerrigan/riak-elixir-client"; + }; + } + ) {}; + + riak = riak_1_0_0; + + riak_dt_2_1_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + riak_dt = riak_dt_2_1_1; + + riak_ensemble_2_1_3 = callPackage + ( + { buildRebar3, fetchHex, lager_3_0_2, eleveldb_2_1_3 }: + buildRebar3 { + name = "riak_ensemble"; + version = "2.1.3"; + src = fetchHex { + pkg = "riak_ensemble"; + version = "2.1.3"; + sha256 = + "593c68745ce3117c2e0beaa57e36ad2971bd3540645f233df866a19468970ae2"; + }; + + beamDeps = [ lager_3_0_2 eleveldb_2_1_3 ]; + + meta = { + description = ''Multi-Paxos framework in Erlang''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/basho/riak_ensemble"; + }; + } + ) {}; + + riak_ensemble = riak_ensemble_2_1_3; + + riak_pb_2_1_0 = callPackage + ( + { buildRebar3, fetchHex, protobuffs_0_8_2, hamcrest_0_1_1 }: + buildRebar3 { + name = "riak_pb"; + version = "2.1.0"; + src = fetchHex { + pkg = "riak_pb"; + version = "2.1.0"; + sha256 = + "76309b9b831d276bf9abf92362183030ed63910a2e153f1f8a389e97dec6c287"; + }; + + beamDeps = [ protobuffs_0_8_2 hamcrest_0_1_1 ]; + + meta = { + description = ''Riak Protocol Buffers Messages''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/basho/riak_pb"; + }; + } + ) {}; + + riak_pb = riak_pb_2_1_0; + + riak_sysmon_2_1_2 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + riak_sysmon = riak_sysmon_2_1_2; + + riakc_2_1_1 = callPackage + ( + { buildRebar3, fetchHex, riak_pb_2_1_0 }: + buildRebar3 { + name = "riakc"; + version = "2.1.1"; + src = fetchHex { + pkg = "riakc"; + version = "2.1.1"; + sha256 = + "4f7141c03529d4f1c28c71eafcd797be0a538ba21d5d6923a17a9ca9e64e744e"; + }; + + beamDeps = [ riak_pb_2_1_0 ]; + + meta = { + description = ''Erlang clients for Riak.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/basho/riak-erlang-client"; + }; + } + ) {}; + + riakc = riakc_2_1_1; + + riboflavin_0_0_2 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "riboflavin"; + version = "0.0.2"; + src = fetchHex { + pkg = "riboflavin"; + version = "0.0.2"; + sha256 = + "cc4ac4c80b6d591deaea136a3d055eba4ead6bbe2fc9b220a4432f160d0ddec6"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''Backblaze B2 client.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/silentdragonz/riboflavin"; + }; + } + ) {}; + + riboflavin = riboflavin_0_0_2; + + riemann_0_0_14 = callPackage + ( + { buildMix, fetchHex, honeydew_0_0_8, exprotobuf_0_13_0 }: + buildMix { + name = "riemann"; + version = "0.0.14"; + src = fetchHex { + pkg = "riemann"; + version = "0.0.14"; + sha256 = + "05656878f8aee98f1baa601ca762338014cf2440d1fb043f682669241314a2d5"; + }; + beamDeps = [ honeydew_0_0_8 exprotobuf_0_13_0 ]; + + meta = { + description = ''A client for the Riemann event stream + processor''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/koudelka/elixir-riemann"; + }; + } + ) {}; + + riemann = riemann_0_0_14; + + robotex_0_0_1 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_1, exjsx_3_1_0 }: + buildMix { + name = "robotex"; + version = "0.0.1"; + src = fetchHex { + pkg = "robotex"; + version = "0.0.1"; + sha256 = + "ae1c618b20e3847f4c372350bdda3b0dc577e1491310ef97fd5869c4f750533e"; + }; + beamDeps = [ httpoison_0_8_1 exjsx_3_1_0 ]; + + meta = { + description = ''Robotex is a client for the Telegram Bot API.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/EddyShure/robotex"; + }; + } + ) {}; + + robotex = robotex_0_0_1; + + rogger_0_1_0 = callPackage + ( + { buildRebar3, fetchHex, timex_0_13_5, amqp_0_1_1 }: + buildRebar3 { + name = "rogger"; + version = "0.1.0"; + src = fetchHex { + pkg = "rogger"; + version = "0.1.0"; + sha256 = + "2e68650f9ee8f1047410538163e930567c049d91f883cbc96d9f52aea6052b61"; + }; + + beamDeps = [ timex_0_13_5 amqp_0_1_1 ]; + + meta = { + description = ''Elixir logger to publish log messages in + RabbitMQ. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/duartejc/rogger"; + }; + } + ) {}; + + rogger = rogger_0_1_0; + + rollbax_0_5_3 = callPackage + ( + { buildMix, fetchHex, poison_1_0_3, hackney_1_4_8 }: + buildMix { + name = "rollbax"; + version = "0.5.3"; + src = fetchHex { + pkg = "rollbax"; + version = "0.5.3"; + sha256 = + "0f24d041c932043915a14ab4e186bd3f1613bccee30ad251bb79a60533680336"; + }; + beamDeps = [ poison_1_0_3 hackney_1_4_8 ]; + + meta = { + description = ''Exception tracking and logging from Elixir to + Rollbar''; + license = stdenv.lib.licenses.isc; + homepage = "https://github.com/elixir-addicts/rollbax"; + }; + } + ) {}; + + rollbax = rollbax_0_5_3; + + rollex_0_4_0 = callPackage + ( + { buildMix, fetchHex, sfmt_0_12_2 }: + buildMix { + name = "rollex"; + version = "0.4.0"; + src = fetchHex { + pkg = "rollex"; + version = "0.4.0"; + sha256 = + "53410bbd7687ff751b51b9737965bff1ba9c3d0673af65752f4ae3be0de1b44c"; + }; + beamDeps = [ sfmt_0_12_2 ]; + + meta = { + description = ''Elixir library using a Pratt Parser algorithm to + calculate dice rolls.''; + license = stdenv.lib.licenses.mit; + }; + } + ) {}; + + rollex = rollex_0_4_0; + + roman_numerals_1_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + roman_numerals = roman_numerals_1_0_1; + + romanex_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + romanex = romanex_0_1_0; + + romeo_0_4_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + romeo = romeo_0_4_0; + + roombex_0_0_4 = callPackage + ( + { buildMix, fetchHex, serial_0_1_2 }: + buildMix { + name = "roombex"; + version = "0.0.4"; + src = fetchHex { + pkg = "roombex"; + version = "0.0.4"; + sha256 = + "93ff6124016e14e2ecdf90628b638f80eb97cc0b21f2c50288585d33fc5d3d54"; + }; + beamDeps = [ serial_0_1_2 ]; + + meta = { + longDescription = ''Implements the Roomba binary protocol. Send + and receive binary data using elixir data + structures and simple functions.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mmmries/roombex"; + }; + } + ) {}; + + roombex = roombex_0_0_4; + + rop_0_5_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + rop = rop_0_5_3; + + rotor_0_2_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + rotor = rotor_0_2_2; + + rquote_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + rquote = rquote_0_0_1; + + rsa_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + rsa = rsa_0_0_1; + + rss_0_2_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "rss"; + version = "0.2.1"; + src = fetchHex { + pkg = "rss"; + version = "0.2.1"; + sha256 = + "1af49c787fc789740a0fa7e0e197a7cb779a63c4eb703f013fea400126eac1f2"; + }; + + meta = { + description = ''A super simple RSS feed builder ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bennyhallett/elixir-rss"; + }; + } + ) {}; + + rss = rss_0_2_1; + + rubix_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + rubix = rubix_0_0_2; + + rulex_0_2_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "rulex"; + version = "0.2.0"; + src = fetchHex { + pkg = "rulex"; + version = "0.2.0"; + sha256 = + "41429f27164bb05f2fa4c6326b63a8773f61c89ef9ef0bd93937cbc473d03ab5"; + }; + + meta = { + longDescription = ''Rulex contains a very simple macro "defrule" + allowing you to write a rule system using Elixir + pattern matching. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/awetzel/rulex"; + }; + } + ) {}; + + rulex = rulex_0_2_0; + + russian_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + russian = russian_0_1_0; + + safetybox_0_1_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + safetybox = safetybox_0_1_2; + + saltie_0_3_2 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "saltie"; + version = "0.3.2"; + src = fetchHex { + pkg = "saltie"; + version = "0.3.2"; + sha256 = + "6d1eb4b3d0f3a494990a28af3a5e6f79221f230ed7b24063cdfa2ea34c8794f2"; + }; + + meta = { + description = ''**DEPRECATED**. See hex.pm/packages/hashids''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/alco/saltie"; + }; + } + ) {}; + + saltie = saltie_0_3_2; + + sap_0_0_2 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1, 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_1 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"; + }; + } + ) {}; + + sap = sap_0_0_2; + + sasl_ex_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + sasl_ex = sasl_ex_0_1_0; + + sass_elixir_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "sass_elixir"; + version = "0.0.1"; + src = fetchHex { + pkg = "sass_elixir"; + version = "0.0.1"; + sha256 = + "565dc1c40057a9a7ae3a3c27151a8dd87a3d672d346fcc5b4829152d22c4a511"; + }; + + meta = { + description = ''A SASS plugin for elixir projects''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/zamith/sass_elixir"; + }; + } + ) {}; + + sass_elixir = sass_elixir_0_0_1; + + savory_0_0_2 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "savory"; + version = "0.0.2"; + src = fetchHex { + pkg = "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 + ( + { buildRebar3, 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"; + }; + } + ) {}; + + sbroker = sbroker_0_7_0; + + scaffold_0_0_5 = callPackage + ( + { buildMix, fetchHex, gitex_0_1_0, configparser_ex_0_2_0 }: + 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_0 ]; + + 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"; + }; + } + ) {}; + + scaffold = scaffold_0_0_5; + + schedule_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + schedule = schedule_0_1_0; + + schizo_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + schizo = schizo_0_0_1; + + scrape_1_0_4 = callPackage + ( + { + buildMix, + fetchHex, + timex_1_0_0_rc4, + parallel_0_0_3, + httpoison_0_8_1, + floki_0_7_1, + codepagex_0_1_2 + }: + buildMix { + name = "scrape"; + version = "1.0.4"; + src = fetchHex { + pkg = "scrape"; + version = "1.0.4"; + sha256 = + "ff26574b5ab5a6cf1f9aaa1369c2b9880bce2cf53b261a65160fdf9b4e11a361"; + }; + beamDeps = [ + timex_1_0_0_rc4 + parallel_0_0_3 + httpoison_0_8_1 + floki_0_7_1 + codepagex_0_1_2 + ]; + + meta = { + description = ''Scrape any website, article or RSS/Atom feed with + ease!''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/Anonyfox/elixir-scrape"; + }; + } + ) {}; + + scrape = scrape_1_0_4; + + scrivener_1_1_2 = callPackage + ( + { buildMix, fetchHex, postgrex_0_11_1, ecto_2_0_0_beta_0 }: + buildMix { + name = "scrivener"; + version = "1.1.2"; + src = fetchHex { + pkg = "scrivener"; + version = "1.1.2"; + sha256 = + "9be46bdce0d8179ece431226eb9eddbe13bc158d647a3daee64a49bc26ca9dcf"; + }; + beamDeps = [ postgrex_0_11_1 ecto_2_0_0_beta_0 ]; + + meta = { + description = ''Paginate your Ecto queries''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/drewolson/scrivener"; + }; + } + ) {}; + + scrivener = scrivener_1_1_2; + + scrivener_html_1_0_8 = callPackage + ( + { + buildMix, + fetchHex, + scrivener_1_1_2, + phoenix_html_2_5_0, + phoenix_1_1_4 + }: + buildMix { + name = "scrivener_html"; + version = "1.0.8"; + src = fetchHex { + pkg = "scrivener_html"; + version = "1.0.8"; + sha256 = + "1bea661f9940acae0ef28949c35e61dd1d314d0ac93c333ed85c7a37593a6406"; + }; + beamDeps = [ scrivener_1_1_2 phoenix_html_2_5_0 phoenix_1_1_4 ]; + + meta = { + description = ''HTML helpers for Scrivener''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mgwidmann/scrivener_html"; + }; + } + ) {}; + + scrivener_html = scrivener_html_1_0_8; + + secure_headers_0_0_1 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1, pipe_0_0_2 }: + buildMix { + name = "secure_headers"; + version = "0.0.1"; + src = fetchHex { + pkg = "secure_headers"; + version = "0.0.1"; + sha256 = + "df5ffa08c91a270da9a167edac6181c87a8467e7c98d65651bd6b1c928e75cb1"; + }; + beamDeps = [ plug_1_1_1 pipe_0_0_2 ]; + + meta = { + description = ''HTTP Security Headers for Phoenix or Plug''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/anotherhale/secure_headers"; + }; + } + ) {}; + + secure_headers = secure_headers_0_0_1; + + secure_password_0_3_1 = callPackage + ( + { buildMix, fetchHex, ecto_2_0_0_beta_0, comeonin_2_1_1 }: + buildMix { + name = "secure_password"; + version = "0.3.1"; + src = fetchHex { + pkg = "secure_password"; + version = "0.3.1"; + sha256 = + "04d91c55486177940d480e802f28f8ee4b5ac6590ed1e0a3ab16603d39c35673"; + }; + beamDeps = [ ecto_2_0_0_beta_0 comeonin_2_1_1 ]; + + meta = { + description = ''A port of Rails has_secure_password for Ecto + models''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/tuvistavie/ecto-secure-password"; + }; + } + ) {}; + + secure_password = secure_password_0_3_1; + + secure_random_0_1_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + secure_random_0_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + secure_random = secure_random_0_2_0; + + segment_0_1_0 = callPackage + ( + { buildMix, fetchHex, poison_1_3_1, httpotion_2_1_0 }: + buildMix { + name = "segment"; + version = "0.1.0"; + src = fetchHex { + pkg = "segment"; + version = "0.1.0"; + sha256 = + "1747bf7a3f8d524d28890ce4499ef30a635f91c826d62e2b95711061faf02423"; + }; + beamDeps = [ poison_1_3_1 httpotion_2_1_0 ]; + + meta = { + description = ''analytics_elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/stueccles/analytics-elixir"; + }; + } + ) {}; + + segment = segment_0_1_0; + + select_0_0_1 = callPackage + ( + { buildMix, fetchHex, mochiweb_2_12_2 }: + buildMix { + name = "select"; + version = "0.0.1"; + src = fetchHex { + pkg = "select"; + version = "0.0.1"; + sha256 = + "9f579c2f342b51f6e42d414110a889c8b6a4430e49697b724ccdbbf8265853e9"; + }; + beamDeps = [ mochiweb_2_12_2 ]; + + meta = { + longDescription = ''An Elixir library to extract useful data from + HTML documents, suitable for web scraping.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/utkarshkukreti/select.ex"; + }; + } + ) {}; + + select = select_0_0_1; + + semver_0_1_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + semver = semver_0_1_2; + + sentient_0_0_2 = callPackage + ( + { buildMix, 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''; + + }; + } + ) {}; + + sentient = sentient_0_0_2; + + sentinel_0_0_4 = callPackage + ( + { + buildMix, + fetchHex, + ueberauth_0_2_0, + secure_random_0_2_0, + postgrex_0_11_1, + phoenix_1_1_4, + jose_1_6_1, + guardian_db_0_4_0, + guardian_0_9_1, + ex_doc_0_11_4, + ecto_2_0_0_beta_0, + earmark_0_2_1, + cowboy_1_0_4, + comeonin_2_1_1 + }: + buildMix { + name = "sentinel"; + version = "0.0.4"; + src = fetchHex { + pkg = "sentinel"; + version = "0.0.4"; + sha256 = + "a97e13dd2c629eea7f5b6f2b818869e6f206a320eb3bfcfc9b315aa08cbeeac4"; + }; + beamDeps = [ + ueberauth_0_2_0 + secure_random_0_2_0 + postgrex_0_11_1 + phoenix_1_1_4 + jose_1_6_1 + guardian_db_0_4_0 + guardian_0_9_1 + ex_doc_0_11_4 + ecto_2_0_0_beta_0 + earmark_0_2_1 + cowboy_1_0_4 + comeonin_2_1_1 + ]; + + meta = { + longDescription = ''Adds helpful extras to Guardian like default + mailer support, as well as out of the box + controllers and routes''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/britton-jb/sentinel"; + }; + } + ) {}; + + sentinel = sentinel_0_0_4; + + sentry_0_3_2 = callPackage + ( + { buildMix, fetchHex, ecto_2_0_0_beta_0, comeonin_1_6_0 }: + buildMix { + name = "sentry"; + version = "0.3.2"; + src = fetchHex { + pkg = "sentry"; + version = "0.3.2"; + sha256 = + "fd4aa8c6b5d51b85e452a01292fbd437dfbfc5d37515c13f4a9a94441dc89609"; + }; + beamDeps = [ ecto_2_0_0_beta_0 comeonin_1_6_0 ]; + + meta = { + description = ''Simplified authentication and authorization + package for Phoenix''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/imranismail/sentry"; + }; + } + ) {}; + + sentry = sentry_0_3_2; + + serial_0_1_2 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "serial"; + version = "0.1.2"; + src = fetchHex { + pkg = "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; + + service_1_5_1 = callPackage + ( + { buildRebar3, fetchHex, cloudi_core_1_5_1 }: + buildRebar3 { + name = "service"; + version = "1.5.1"; + src = fetchHex { + pkg = "service"; + version = "1.5.1"; + sha256 = + "283d29bee5e2170a08c1eccb87f89368e9ce831cc52fb0715ed811f43847d2f8"; + }; + + beamDeps = [ cloudi_core_1_5_1 ]; + + meta = { + description = ''Erlang/Elixir Cloud Framework Service Behavior''; + license = stdenv.lib.licenses.bsd3; + homepage = "http://cloudi.org"; + }; + } + ) {}; + + service = service_1_5_1; + + setup_1_7_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + setup = setup_1_7_0; + + sfmt_0_12_2 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "sfmt"; + version = "0.12.2"; + src = fetchHex { + pkg = "sfmt"; + version = "0.12.2"; + sha256 = + "8c541998bedb7d6bfe699ba6ee319f563190ead5a01f30c02ff504c20f4e8e2a"; + }; + compilePorts = true; + + meta = { + description = ''SIMD-oriented Fast Mersenne Twister (SFMT) for + Erlang.''; + license = stdenv.lib.licenses.bsd2; + homepage = "https://github.com/jj1bdx/sfmt-erlang/"; + }; + } + ) {}; + + sfmt_0_13_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "sfmt"; + version = "0.13.0"; + src = fetchHex { + pkg = "sfmt"; + version = "0.13.0"; + sha256 = + "aaacd4824f2b3e439d360bcce6079863da1e7f564014602e9e7815f8740b6358"; + }; + compilePorts = true; + + meta = { + description = ''SIMD-oriented Fast Mersenne Twister (SFMT) for + Erlang.''; + license = stdenv.lib.licenses.bsd2; + homepage = "https://github.com/jj1bdx/sfmt-erlang/"; + }; + } + ) {}; + + sfmt = sfmt_0_13_0; + + sfsobject_0_0_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + sfsobject = sfsobject_0_0_3; + + sh_1_1_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + sh = sh_1_1_2; + + shameless_plug_1_0_0 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1 }: + buildMix { + name = "shameless_plug"; + version = "1.0.0"; + src = fetchHex { + pkg = "shameless_plug"; + version = "1.0.0"; + sha256 = + "65c8af34d1853e85c8412d6ca15fd39354668c09c124cbc8e35cffea59d3a617"; + }; + beamDeps = [ plug_1_1_1 ]; + + 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"; + }; + } + ) {}; + + shameless_plug = shameless_plug_1_0_0; + + shape_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + shape = shape_0_0_2; + + short_maps_0_1_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + short_maps = short_maps_0_1_1; + + shotgun_0_2_2 = callPackage + ( + { buildRebar3, fetchHex, gun_1_0_0_pre_1 }: + buildRebar3 { + 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"; + }; + } + ) {}; + + shotgun_0_2_3 = callPackage + ( + { buildRebar3, fetchHex, gun_1_0_0_pre_1, cowlib_1_0_2 }: + buildRebar3 { + 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"; + }; + } + ) {}; + + shotgun = shotgun_0_2_3; + + shouldi_0_3_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + shouldi = shouldi_0_3_0; + + shove_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + shove = shove_0_0_1; + + shrivel_0_0_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + shrivel = shrivel_0_0_3; + + sidejob_2_0_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + sidejob = sidejob_2_0_0; + + sidetask_1_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + sidetask = sidetask_1_1_0; + + signaturex_0_0_8 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "signaturex"; + version = "0.0.8"; + src = fetchHex { + pkg = "signaturex"; + version = "0.0.8"; + sha256 = + "5897373a265e41245a251d828e4782457f129d5c49179a29079ff86139beeb0e"; + }; + + meta = { + description = ''Simple key/secret based authentication for + APIs''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/edgurgel/signaturex"; + }; + } + ) {}; + + signaturex_1_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + signaturex = signaturex_1_0_1; + + simetric_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + simetric = simetric_0_1_0; + + simple_agent_0_0_7 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + simple_agent = simple_agent_0_0_7; + + simple_bar_0_0_7 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + simple_bar = simple_bar_0_0_7; + + simple_format_0_1_0 = callPackage + ( + { buildMix, fetchHex, phoenix_html_2_5_0 }: + buildMix { + name = "simple_format"; + version = "0.1.0"; + src = fetchHex { + pkg = "simple_format"; + version = "0.1.0"; + sha256 = + "747cc74f743f89bcced219282f8639743f679b65183defecc7721f46e31dfcd0"; + }; + beamDeps = [ phoenix_html_2_5_0 ]; + + meta = { + description = ''Rail`s simple_format helper for Phoenix.HTML''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/michalmuskala/simple_format"; + }; + } + ) {}; + + simple_format = simple_format_0_1_0; + + simple_secrets_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + simple_secrets = simple_secrets_1_0_0; + + simplex_0_4_0 = callPackage + ( + { + buildMix, + fetchHex, + timex_1_0_1, + sweet_xml_0_6_1, + poison_1_5_2, + ibrowse_4_2_2, + httpotion_2_2_0 + }: + buildMix { + name = "simplex"; + version = "0.4.0"; + src = fetchHex { + pkg = "simplex"; + version = "0.4.0"; + sha256 = + "43dfdc62aa2c4919464615b5acc4f03b028b3b9875fa72c128563e7d794ba2a2"; + }; + beamDeps = [ + timex_1_0_1 + sweet_xml_0_6_1 + poison_1_5_2 + ibrowse_4_2_2 + httpotion_2_2_0 + ]; + + meta = { + description = ''An Elixir library for interacting with the Amazon + SimpleDB API.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/adamkittelson/simplex"; + }; + } + ) {}; + + simplex = simplex_0_4_0; + + siphash_3_0_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "siphash"; + version = "3.0.0"; + src = fetchHex { + pkg = "siphash"; + version = "3.0.0"; + sha256 = + "91b8efc8f3e26713c1bb91a91c9b6a8f6a5f949986622b1d548e8fee1cde7347"; + }; + compilePorts = true; + + meta = { + description = ''Elixir implementation of the SipHash hash + family''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/zackehh/siphash-elixir"; + }; + } + ) {}; + + siphash = siphash_3_0_0; + + sips_downloader_0_2_2 = callPackage + ( + { + buildMix, + fetchHex, + httpoison_0_8_1, + html_entities_0_3_0, + floki_0_7_1 + }: + buildMix { + name = "sips_downloader"; + version = "0.2.2"; + src = fetchHex { + pkg = "sips_downloader"; + version = "0.2.2"; + sha256 = + "358d10e61f2d8b03e644194d09f1ca6c9c339bb9c80371eba21576571a857f94"; + }; + beamDeps = [ httpoison_0_8_1 html_entities_0_3_0 floki_0_7_1 ]; + + meta = { + description = ''Automatically download new ElixirSips episodes''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/DavsX/SipsDownloader"; + }; + } + ) {}; + + sips_downloader = sips_downloader_0_2_2; + + skills_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + skills = skills_0_0_1; + + skroutz_0_0_1 = callPackage + ( + { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_1 }: + buildMix { + name = "skroutz"; + version = "0.0.1"; + src = fetchHex { + pkg = "skroutz"; + version = "0.0.1"; + sha256 = + "08d6703c21e2371e68cae0c559d7a1ff119f767662e2f76a0f3a53551742721b"; + }; + beamDeps = [ poison_2_1_0 httpoison_0_8_1 ]; + + meta = { + description = ''Elixir library for accessing the Skroutz API''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/skroutz/skroutz.ex"; + }; + } + ) {}; + + skroutz = skroutz_0_0_1; + + slack_0_3_0 = callPackage + ( + { buildMix, fetchHex, httpoison_0_7_5, exjsx_3_1_0 }: + buildMix { + name = "slack"; + version = "0.3.0"; + src = fetchHex { + pkg = "slack"; + version = "0.3.0"; + sha256 = + "43983932db6460a915822e12a0d499df5380804184bae3c170f9f918670f5454"; + }; + beamDeps = [ httpoison_0_7_5 exjsx_3_1_0 ]; + + meta = { + description = ''A Slack Real Time Messaging API client.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/BlakeWilliams/Elixir-Slack"; + }; + } + ) {}; + + slack_0_4_2 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_1, exjsx_3_1_0 }: + buildMix { + name = "slack"; + version = "0.4.2"; + src = fetchHex { + pkg = "slack"; + version = "0.4.2"; + sha256 = + "a32ced7527706b6adaae428eb03836260bdcf560be6ef92662ea6ec1541e687f"; + }; + beamDeps = [ httpoison_0_8_1 exjsx_3_1_0 ]; + + meta = { + description = ''A Slack Real Time Messaging API client.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/BlakeWilliams/Elixir-Slack"; + }; + } + ) {}; + + slack = slack_0_4_2; + + slack_webhook_0_0_2 = callPackage + ( + { buildMix, fetchHex, httpoison_0_7_5 }: + buildMix { + name = "slack_webhook"; + version = "0.0.2"; + src = fetchHex { + pkg = "slack_webhook"; + version = "0.0.2"; + sha256 = + "7099c22a5b07fd47914a5336469e3696ebe5d5402798ba1e06eec7287d5551ad"; + }; + beamDeps = [ httpoison_0_7_5 ]; + + meta = { + description = ''Sends simple messages to Slack channel using + webhook API.''; + license = stdenv.lib.licenses.cc0; + homepage = "https://github.com/remiq/slack_webhook"; + }; + } + ) {}; + + slack_webhook = slack_webhook_0_0_2; + + slacker_0_0_2 = callPackage + ( + { + buildMix, fetchHex, poison_1_5_2, inflex_1_0_0, httpoison_0_8_1 + }: + buildMix { + name = "slacker"; + version = "0.0.2"; + src = fetchHex { + pkg = "slacker"; + version = "0.0.2"; + sha256 = + "4d3a110772e7b273a6d771bf4bc869fd13cb3bb9e99bca8f038e58d384f0ef1b"; + }; + beamDeps = [ poison_1_5_2 inflex_1_0_0 httpoison_0_8_1 ]; + + meta = { + description = ''A bot library for the Slack chat service.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/koudelka/slacker"; + }; + } + ) {}; + + slacker = slacker_0_0_2; + + slackex_0_0_1 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_1, exjsx_3_2_0 }: + buildMix { + name = "slackex"; + version = "0.0.1"; + src = fetchHex { + pkg = "slackex"; + version = "0.0.1"; + sha256 = + "bdd1d523cd576ff054ed3eee4efe22eee87ded127054332ca5a3bc1d6a997f33"; + }; + beamDeps = [ httpoison_0_8_1 exjsx_3_2_0 ]; + + meta = { + longDescription = ''A Slack wrapper for Elixir Requires an active + account with Slack (http://slack.com).''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/davidstump/slackex"; + }; + } + ) {}; + + slackex = slackex_0_0_1; + + slim_fast_0_10_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + slim_fast = slim_fast_0_10_0; + + slime_0_12_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "slime"; + version = "0.12.1"; + src = fetchHex { + pkg = "slime"; + version = "0.12.1"; + sha256 = + "0a2f92f2f7523118efadcb20fe54611ddfb65428c6a21b69182fc247e361dc1e"; + }; + + meta = { + description = ''An Elixir library for rendering Slim-like + templates.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/slime-lang/slime"; + }; + } + ) {}; + + slime = slime_0_12_1; + + slp_0_0_2 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "slp"; + version = "0.0.2"; + src = fetchHex { + pkg = "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; + + slugger_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + slugger = slugger_0_1_0; + + smex_0_0_1 = callPackage + ( + { buildMix, fetchHex, murmur_1_0_0, amqp_0_1_4 }: + buildMix { + name = "smex"; + version = "0.0.1"; + src = fetchHex { + pkg = "smex"; + version = "0.0.1"; + sha256 = + "3a84a2b3b3f09965bb0c2d57d04ba435b33c47319ee308feb4a182ddd9e69867"; + }; + beamDeps = [ murmur_1_0_0 amqp_0_1_4 ]; + + meta = { + description = ''An Elixir library for simplifying the sending of + protocol buffers over rabbitmq.''; + + }; + } + ) {}; + + smex = smex_0_0_1; + + smurf_0_1_3 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + smurf = smurf_0_1_3; + + snappy_1_1_1 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "snappy"; + version = "1.1.1"; + src = fetchHex { + pkg = "snappy"; + version = "1.1.1"; + sha256 = + "7faed3ec6bcac363c2a6f09b4f000a12c8166b42b3bf70228d532f8afcfbcb6a"; + }; + compilePorts = true; + + meta = { + description = ''snappy compressor/decompressor Erlang NIF + wrapper''; + + homepage = "https://github.com/barrel-db/snappy"; + }; + } + ) {}; + + snappy = snappy_1_1_1; + + socket_0_2_8 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "socket"; + version = "0.2.8"; + src = fetchHex { + pkg = "socket"; + version = "0.2.8"; + sha256 = + "dc711caa318c31eea35e0cfec62e9a376fda6c1365356de59d9a78a4ebb635c9"; + }; + + meta = { + description = ''Socket handling library for Elixir''; + license = stdenv.lib.licenses.wtfpl; + homepage = "https://github.com/meh/elixir-socket"; + }; + } + ) {}; + + socket_0_3_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "socket"; + version = "0.3.1"; + src = fetchHex { + pkg = "socket"; + version = "0.3.1"; + sha256 = + "f016b4e0c2643926cce846b6a744b0cd7c8352106052dcb7c396bf1b7f55d21c"; + }; + + meta = { + description = ''Socket handling library for Elixir''; + license = stdenv.lib.licenses.wtfpl; + homepage = "https://github.com/meh/elixir-socket"; + }; + } + ) {}; + + socket = socket_0_3_1; + + sorted_set_1_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + sorted_set = sorted_set_1_1_0; + + spaceapi_0_1_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + spaceapi = spaceapi_0_1_2; + + spaced_repetitions_0_0_1 = callPackage + ( + { buildMix, fetchHex, timex_0_16_2 }: + buildMix { + name = "spaced_repetitions"; + version = "0.0.1"; + src = fetchHex { + pkg = "spaced_repetitions"; + version = "0.0.1"; + sha256 = + "67e846a7fe32d7ab5b10373dd9f80eccccacc05ad2b9f3e6ca3de09da8b8abc5"; + }; + beamDeps = [ timex_0_16_2 ]; + + meta = { + description = ''Spaced repetitions library with basic sm2 + implementation''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mrluc/exreps"; + }; + } + ) {}; + + spaced_repetitions = spaced_repetitions_0_0_1; + + sparkpost_0_1_0 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpotion_2_1_0 }: + buildMix { + name = "sparkpost"; + version = "0.1.0"; + src = fetchHex { + pkg = "sparkpost"; + version = "0.1.0"; + sha256 = + "704fa320132235db00c4b40b6990e63ec3c2581d681d86c0765ef930c88a2694"; + }; + beamDeps = [ poison_1_5_2 httpotion_2_1_0 ]; + + meta = { + description = ''The official Elixir package for the SparkPost + API''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/SparkPost/elixir-sparkpost"; + }; + } + ) {}; + + sparkpost = sparkpost_0_1_0; + + spawndir_0_1_1 = callPackage + ( + { buildMix, fetchHex, exrm_0_15_1 }: + buildMix { + name = "spawndir"; + version = "0.1.1"; + src = fetchHex { + pkg = "spawndir"; + version = "0.1.1"; + sha256 = + "c407c9eb1f6f8ebb622df28b2f19a34447add6555f87208446a458b60ea9750c"; + }; + beamDeps = [ exrm_0_15_1 ]; + + meta = { + longDescription = ''# SpawnDir Spawns commands from the file + system. This exists to provide a simple + mechanism for spawning and managing processes: + simply add an executable, or a symbolic link to + one, to a monitored directory. The config allows + arguments to be specified by file or directory. + While not as flexible as upstart, monit, et al., + SpawnDir`s use of the filesystem provides a + simpler UNIX-ish interface. ## Usage To use the + escript executable: ./spawndir DIR [ARGS ...] + where `DIR` is the directory to be monitored, + and each command will be started with the + supplied `ARGS` To run using mix: mix run + --no-halt You can configure what is watched via + the `:spawndir` application environment + variables: :default_opts :: [opt] :watch :: [cmd + | {cmd, [opt]}] where opt :: string() cmd :: + string() ## Future Additions - Check for + executable flag - Package installation - Monitor + filesystem for commands being added/removed + Copyright (c) Thomas Moulia, 2014 ''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/jtmoulia/spawndir"; + }; + } + ) {}; + + spawndir = spawndir_0_1_1; + + spell_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + spell = spell_0_1_0; + + spf_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + spf = spf_0_0_1; + + spherical_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + spherical = spherical_0_0_1; + + spirit_0_0_1 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, plug_0_14_0, cowboy_1_0_4 }: + buildMix { + name = "spirit"; + version = "0.0.1"; + src = fetchHex { + pkg = "spirit"; + version = "0.0.1"; + sha256 = + "ffaa22ccfd4999eacaee60464eb494bb9da597a8dad0dcad575fb506e06ee3b6"; + }; + beamDeps = [ poison_1_5_2 plug_0_14_0 cowboy_1_0_4 ]; + + meta = { + description = ''Elixir microframework for web development.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/emancu/spirit"; + }; + } + ) {}; + + spirit = spirit_0_0_1; + + spotify_ex_0_0_4 = callPackage + ( + { + buildMix, fetchHex, poison_1_5_2, plug_1_1_1, httpoison_0_8_1 + }: + buildMix { + name = "spotify_ex"; + version = "0.0.4"; + src = fetchHex { + pkg = "spotify_ex"; + version = "0.0.4"; + sha256 = + "f2e8647410096d34d9baecf8d9622896214320641ed72c11c711f9a463e4a961"; + }; + beamDeps = [ poison_1_5_2 plug_1_1_1 httpoison_0_8_1 ]; + + meta = { + description = ''An Elixir wrapper for Spotify API O-Auth.''; + license = stdenv.lib.licenses.mit; + homepage = "https://www.github.com/jsncmgs1/spotify_ex"; + }; + } + ) {}; + + spotify_ex = spotify_ex_0_0_4; + + spreedly_0_1_1 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "spreedly"; + version = "0.1.1"; + src = fetchHex { + pkg = "spreedly"; + version = "0.1.1"; + sha256 = + "a8aa76698a4fe95cb4c5cb77be2cfc4e085685570aacb25382fffdca4c7e1a6f"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''A wrapper for the Spreedly API.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/duff/spreedly-elixir"; + }; + } + ) {}; + + spreedly = spreedly_0_1_1; + + sql_dust_0_1_5 = callPackage + ( + { buildMix, fetchHex, inflex_1_5_0, ecto_2_0_0_beta_0 }: + buildMix { + name = "sql_dust"; + version = "0.1.5"; + src = fetchHex { + pkg = "sql_dust"; + version = "0.1.5"; + sha256 = + "8b8ec15b23c964e74e020cc7bd9ff9456d302ceb173465ebd0cc04c10bc3775d"; + }; + beamDeps = [ inflex_1_5_0 ecto_2_0_0_beta_0 ]; + + meta = { + longDescription = ''Easy. Simple. Powerful. Generate (complex) + SQL queries using magical Elixir SQL dust.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bettyblocks/sql_dust"; + }; + } + ) {}; + + sql_dust = sql_dust_0_1_5; + + sqlite3_1_1_5 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "sqlite3"; + version = "1.1.5"; + src = fetchHex { + pkg = "sqlite3"; + version = "1.1.5"; + sha256 = + "fc2beb8b09deec6cf68bd6203ecf28bf827d2073915bc7131c9cd56d5ff27260"; + }; + compilePorts = true; + + meta = { + description = ''SQLite3 Interface''; + license = stdenv.lib.licenses.epl10; + homepage = "https://github.com/processone/erlang-sqlite3"; + }; + } + ) {}; + + sqlite3 = sqlite3_1_1_5; + + sqlite_ecto_1_1_0 = callPackage + ( + { + buildMix, + fetchHex, + sqlitex_0_8_2, + poison_1_5_2, + ecto_2_0_0_beta_0 + }: + buildMix { + name = "sqlite_ecto"; + version = "1.1.0"; + src = fetchHex { + pkg = "sqlite_ecto"; + version = "1.1.0"; + sha256 = + "88951b424e909d8047f0d03c13418c321df9e94560ac30241d8b1f7e48f49201"; + }; + beamDeps = [ sqlitex_0_8_2 poison_1_5_2 ecto_2_0_0_beta_0 ]; + + meta = { + description = ''SQLite3 adapter for Ecto''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jazzyb/sqlite_ecto"; + }; + } + ) {}; + + sqlite_ecto = sqlite_ecto_1_1_0; + + sqlitex_0_8_2 = callPackage + ( + { + buildMix, fetchHex, pipe_0_0_2, esqlite_0_2_2, decimal_1_1_1 + }: + buildMix { + name = "sqlitex"; + version = "0.8.2"; + src = fetchHex { + pkg = "sqlitex"; + version = "0.8.2"; + sha256 = + "8485c24f945ce9c04ad894aff14cb965dcae3e93e08fbdca51a18ea85e9719df"; + }; + beamDeps = [ pipe_0_0_2 esqlite_0_2_2 decimal_1_1_1 ]; + + meta = { + description = ''A thin Elixir wrapper around esqlite''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mmmries/sqlitex"; + }; + } + ) {}; + + sqlitex = sqlitex_0_8_2; + + ssdb_0_3_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "ssdb"; + version = "0.3.0"; + src = fetchHex { + pkg = "ssdb"; + version = "0.3.0"; + sha256 = + "a6b71533949a38ef193ccded89d620d2b6808b1b55a2e0f16dae7e1abad9874f"; + }; + + meta = { + description = ''SSDB client for Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/lidashuang/ssdb-elixir"; + }; + } + ) {}; + + ssdb = ssdb_0_3_0; + + ssdb_elixir_0_2_2 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "ssdb_elixir"; + version = "0.2.2"; + src = fetchHex { + pkg = "ssdb_elixir"; + version = "0.2.2"; + sha256 = + "3aa4d2b90b4a4c0f73b1fec3e67b90dfee081bce4653f942a05857082b65bc99"; + }; + + meta = { + description = ''SSDB client for Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/lidashuang/ssdb_elixir"; + }; + } + ) {}; + + ssdb_elixir = ssdb_elixir_0_2_2; + + sshex_1_1_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "sshex"; + version = "1.1.0"; + src = fetchHex { + pkg = "sshex"; + version = "1.1.0"; + sha256 = + "4e4415547e9dde608d08bf7fff094b6705614a584089356ffbdb6f97821f49ff"; + }; + + meta = { + description = ''Simple SSH helpers for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rubencaro/sshex"; + }; + } + ) {}; + + sshex_2_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + sshex = sshex_2_1_0; + + ssl_verify_hostname_1_0_1 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "ssl_verify_hostname"; + version = "1.0.1"; + src = fetchHex { + pkg = "ssl_verify_hostname"; + version = "1.0.1"; + sha256 = + "630baab6b1dd68f516b779353b368e4c605f1a022f3e544833b1667fdd321493"; + }; + + 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_5 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "ssl_verify_hostname"; + version = "1.0.5"; + src = fetchHex { + pkg = "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 + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "ssl_verify_hostname"; + version = "1.0.6"; + src = fetchHex { + pkg = "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; + + stackd_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "stackd"; + version = "0.0.1"; + src = fetchHex { + pkg = "stackd"; + version = "0.0.1"; + sha256 = + "41749dc834f92af4954988b5e9155d45fcbf63224ecfcabce6f1fc80f3aff8f9"; + }; + + meta = { + description = ''Stackd''; + + }; + } + ) {}; + + stackd = stackd_0_0_1; + + stash_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + stash = stash_1_0_0; + + statistics_0_4_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "statistics"; + version = "0.4.0"; + src = fetchHex { + pkg = "statistics"; + version = "0.4.0"; + sha256 = + "550390b85fcb32dcf2e3498b06076352aa332b0a5002830b0438bb3fdb8da37a"; + }; + + meta = { + description = ''Functions for descriptive statistics and common + distributions''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/msharp/elixir-statistics"; + }; + } + ) {}; + + statistics = statistics_0_4_0; + + statix_0_7_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + statix = statix_0_7_0; + + std_json_io_0_1_0 = callPackage + ( + { + buildMix, + 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''; + + }; + } + ) {}; + + std_json_io = std_json_io_0_1_0; + + steamex_0_0_3 = callPackage + ( + { buildMix, fetchHex, sweet_xml_0_4_0, httpoison_0_7_5 }: + buildMix { + name = "steamex"; + version = "0.0.3"; + src = fetchHex { + pkg = "steamex"; + version = "0.0.3"; + sha256 = + "4e9a5da88acb54897593dadc3e8a4cbdae86a31e7662888105463d20c0430dd8"; + }; + beamDeps = [ sweet_xml_0_4_0 httpoison_0_7_5 ]; + + meta = { + description = ''Steam API and Auth (with Phoenix/Plug + integration) for Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/antipax/steamex"; + }; + } + ) {}; + + steamex = steamex_0_0_3; + + stemex_0_1_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + stemex = stemex_0_1_1; + + stmd_0_0_2 = callPackage + ( + { buildMix, fetchHex, ex_doc_0_11_4, earmark_0_2_1 }: + buildMix { + name = "stmd"; + version = "0.0.2"; + src = fetchHex { + pkg = "stmd"; + version = "0.0.2"; + sha256 = + "3b45578da652e881b1974bbe836d9b8e0e8db8d6ef0042aee69340d5eaf2d9b3"; + }; + beamDeps = [ ex_doc_0_11_4 earmark_0_2_1 ]; + + meta = { + description = ''[DEPRECATED] New package: cmark''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/asaaki/cmark.ex"; + }; + } + ) {}; + + stmd = stmd_0_0_2; + + stockastic_0_0_2 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_1, exjsx_3_2_0 }: + buildMix { + name = "stockastic"; + version = "0.0.2"; + src = fetchHex { + pkg = "stockastic"; + version = "0.0.2"; + sha256 = + "f180915a21d4aa4a64f660696b77c5788334d4bae2639a58814565af0d75ca56"; + }; + beamDeps = [ httpoison_0_8_1 exjsx_3_2_0 ]; + + meta = { + description = ''Simple Elixir wrapper for the Stockfighter API''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/shanewilton/stockastic"; + }; + } + ) {}; + + stockastic = stockastic_0_0_2; + + stockfighter_0_0_1 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "stockfighter"; + version = "0.0.1"; + src = fetchHex { + pkg = "stockfighter"; + version = "0.0.1"; + sha256 = + "d72726cf055068e2b62ef9091ec17ab9292b60bc7f4a7306c17cad6d022a3bd7"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''a simple wrapper of stockfighter http api''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/lerencao/stockfighter"; + }; + } + ) {}; + + stockfighter = stockfighter_0_0_1; + + stopwatch_0_0_7 = callPackage + ( + { buildMix, fetchHex, timex_1_0_1 }: + buildMix { + name = "stopwatch"; + version = "0.0.7"; + src = fetchHex { + pkg = "stopwatch"; + version = "0.0.7"; + sha256 = + "de20ad70ca3b0f70d0a2000858e80c0afd4163101e18d0428ee62a58e7c8360a"; + }; + beamDeps = [ timex_1_0_1 ]; + + 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"; + }; + } + ) {}; + + stopwatch = stopwatch_0_0_7; + + stream_runner_1_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + stream_runner = stream_runner_1_1_0; + + stream_weaver_0_0_2 = callPackage + ( + { buildMix, 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''; + + }; + } + ) {}; + + stream_weaver = stream_weaver_0_0_2; + + strftimerl_0_1_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + strftimerl = strftimerl_0_1_1; + + strict_comparison_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + strict_comparison = strict_comparison_0_0_1; + + stringprep_1_0_2 = callPackage + ( + { buildRebar3, fetchHex, p1_utils_1_0_3 }: + buildRebar3 { + name = "stringprep"; + version = "1.0.2"; + src = fetchHex { + pkg = "stringprep"; + version = "1.0.2"; + sha256 = + "6990e6d9d9bc241a77ceb54d4afd7332319710dbebdae8f4f0c627186194c520"; + }; + compilePorts = true; + beamDeps = [ p1_utils_1_0_3 ]; + + meta = { + description = ''Fast Stringprep Erlang / Elixir implementation''; + license = with stdenv.lib.licenses; [ asl20 free ]; + homepage = "https://github.com/processone/stringprep"; + }; + } + ) {}; + + stringprep = stringprep_1_0_2; + + stripe_0_0_1 = callPackage + ( + { buildMix, fetchHex, jazz_0_2_1, httpotion_1_0_0 }: + buildMix { + name = "stripe"; + version = "0.0.1"; + src = fetchHex { + pkg = "stripe"; + version = "0.0.1"; + sha256 = + "99f9920ce562109abb70a1998a4f6b5bcd07f5063237cf28dd81387163df3f02"; + }; + beamDeps = [ jazz_0_2_1 httpotion_1_0_0 ]; + + meta = { + longDescription = ''Wrapper around Stripe`s API. Full + documentation can be found at + https://stripe.com/docs/api ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/SenecaSystems/stripe"; + }; + } + ) {}; + + stripe = stripe_0_0_1; + + stripex_0_1_0 = callPackage + ( + { buildMix, fetchHex, gateway_0_0_6 }: + buildMix { + name = "stripex"; + version = "0.1.0"; + src = fetchHex { + pkg = "stripex"; + version = "0.1.0"; + sha256 = + "49959c78e677d3e30edd808cce7a013a7120f337705d0e2fd646c000d9b30853"; + }; + beamDeps = [ gateway_0_0_6 ]; + + meta = { + longDescription = ''A much more ruby-stripe-like wrapper around + Stripe`s API (built with Poison). Full + documentation can be found at + https://stripe.com/docs/api''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/foxnewsnetwork/stripex"; + }; + } + ) {}; + + stripex = stripex_0_1_0; + + stripity_stripe_1_2_0 = callPackage + ( + { + buildMix, + fetchHex, + poison_1_5_2, + httpoison_0_8_1, + hackney_1_4_8, + earmark_0_2_1 + }: + buildMix { + name = "stripity_stripe"; + version = "1.2.0"; + src = fetchHex { + pkg = "stripity_stripe"; + version = "1.2.0"; + sha256 = + "25cb8c92ce83354a8d160514f183167a6c67ec3f1221e925cff3750da0fe4cd6"; + }; + beamDeps = [ + poison_1_5_2 + httpoison_0_8_1 + hackney_1_4_8 + earmark_0_2_1 + ]; + + meta = { + description = ''A Stripe Library for Elixir''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/robconery/stripity-stripe"; + }; + } + ) {}; + + stripity_stripe = stripity_stripe_1_2_0; + + struct_fields_0_2_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "struct_fields"; + version = "0.2.0"; + src = fetchHex { + pkg = "struct_fields"; + version = "0.2.0"; + sha256 = + "245be58f06535a05247b6539e2640eb649c25eb896010452f2ee43b5e2604b72"; + }; + + 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"; + }; + } + ) {}; + + struct_fields = struct_fields_0_2_0; + + structurez_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "structurez"; + version = "0.0.1"; + src = fetchHex { + pkg = "structurez"; + version = "0.0.1"; + sha256 = + "acacce1dfcd92854e75f891468c264689aa8223c21c88064f5c6883e11f3ae12"; + }; + + meta = { + description = ''Additional Data Structures for use in Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/hamiltop/structurez"; + }; + } + ) {}; + + structurez = structurez_0_0_1; + + stun_1_0_1 = callPackage + ( + { buildRebar3, fetchHex, p1_utils_1_0_3, fast_tls_1_0_1 }: + buildRebar3 { + name = "stun"; + version = "1.0.1"; + src = fetchHex { + pkg = "stun"; + version = "1.0.1"; + sha256 = + "77c9713436dd51e334698ce1de3e17e3601552c40ced76e2bd321eb5eaa33374"; + }; + + beamDeps = [ p1_utils_1_0_3 fast_tls_1_0_1 ]; + + meta = { + description = ''STUN and TURN library for Erlang / Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/processone/stun"; + }; + } + ) {}; + + stun = stun_1_0_1; + + sugar_0_4_10 = callPackage + ( + { + buildMix, + fetchHex, + templates_0_0_5, + postgrex_0_11_1, + poison_1_5_2, + plugs_0_1_0, + plug_1_1_1, + http_router_0_0_8, + ecto_2_0_0_beta_0, + cowboy_1_0_4 + }: + buildMix { + name = "sugar"; + version = "0.4.10"; + src = fetchHex { + pkg = "sugar"; + version = "0.4.10"; + sha256 = + "6a0fe8e12032aa4c8932801c000bb361ddec4ea6cb64e756e56e26306ea08a99"; + }; + beamDeps = [ + templates_0_0_5 + postgrex_0_11_1 + poison_1_5_2 + plugs_0_1_0 + plug_1_1_1 + http_router_0_0_8 + ecto_2_0_0_beta_0 + cowboy_1_0_4 + ]; + + meta = { + description = ''Modular web framework''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/sugar-framework/sugar"; + }; + } + ) {}; + + sugar = sugar_0_4_10; + + supermemo_1_0_0 = callPackage + ( + { buildMix, fetchHex, timex_0_13_5 }: + buildMix { + name = "supermemo"; + version = "1.0.0"; + src = fetchHex { + pkg = "supermemo"; + version = "1.0.0"; + sha256 = + "d8afa9ed4f8d18d835eb60b68c36ef4ee8489d0abed5051fde20dc433ea8a076"; + }; + beamDeps = [ timex_0_13_5 ]; + + meta = { + longDescription = ''An Elixir implementation of the Supermemo 2 + Algorithm as described here: + http://www.supermemo.com/english/ol/sm2.htm. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/edubkendo/supermemo"; + }; + } + ) {}; + + supermemo = supermemo_1_0_0; + + supervisord_0_1_0 = callPackage + ( + { buildMix, fetchHex, xmlrpc_0_9_1, httpoison_0_7_5 }: + buildMix { + name = "supervisord"; + version = "0.1.0"; + src = fetchHex { + pkg = "supervisord"; + version = "0.1.0"; + sha256 = + "628bd1f94bff68048e270fec788250ca4adf888a9b9e20e6963958dec43f8ee0"; + }; + beamDeps = [ xmlrpc_0_9_1 httpoison_0_7_5 ]; + + meta = { + description = ''Supervisord library for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/pocketberserker/elixir-supervisord"; + }; + } + ) {}; + + supervisord = supervisord_0_1_0; + + supool_1_5_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + supool = supool_1_5_1; + + swaggerdoc_0_0_1 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, phoenix_1_0_4, ecto_1_0_7 }: + buildMix { + name = "swaggerdoc"; + version = "0.0.1"; + src = fetchHex { + pkg = "swaggerdoc"; + version = "0.0.1"; + sha256 = + "8131fc20821e2dc4f9dd3322dc2e0b8ff1cd25c36338c3eb7d725440edd01405"; + }; + beamDeps = [ poison_1_5_2 phoenix_1_0_4 ecto_1_0_7 ]; + + meta = { + longDescription = ''The SwaggerDoc module provides a convenience + task for generating Swagger API documentation + for Phoenix and Ecto-based projects.''; + license = stdenv.lib.licenses.mpl20; + homepage = "https://github.com/OpenAperture/swaggerdoc.git"; + }; + } + ) {}; + + swaggerdoc = swaggerdoc_0_0_1; + + sweet_xml_0_4_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "sweet_xml"; + version = "0.4.0"; + src = fetchHex { + pkg = "sweet_xml"; + version = "0.4.0"; + sha256 = + "94b7134a34f95437ad444d9bc3d5d7e69eabec8196e1a36fe181e97123ec5eb4"; + }; + + meta = { + description = ''An sweet wrapper of :xmerl to help query xml + docs''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/awetzel/sweet_xml"; + }; + } + ) {}; + + sweet_xml_0_5_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + sweet_xml_0_6_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + sweet_xml = sweet_xml_0_6_1; + + switchboard_0_3_2 = callPackage + ( + { + buildRebar3, + 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"; + }; + + 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"; + }; + } + ) {}; + + switchboard = switchboard_0_3_2; + + syn_osc_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + syn_osc = syn_osc_0_1_0; + + synthex_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + synthex = synthex_0_1_0; + + syslog_1_0_2 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "syslog"; + version = "1.0.2"; + src = fetchHex { + pkg = "syslog"; + version = "1.0.2"; + sha256 = + "ca158a84afe482f77cb4668383a6108f1e9190fcdf3035858f426b91b2021bf6"; + }; + compilePorts = true; + + meta = { + description = ''Erlang port driver for interacting with syslog + via syslog''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/Vagabond/erlang-syslog"; + }; + } + ) {}; + + syslog = syslog_1_0_2; + + table_0_0_4 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + table = table_0_0_4; + + table_rex_0_4_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + table_rex_0_8_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + table_rex = table_rex_0_8_0; + + tabula_2_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + tabula = tabula_2_0_1; + + tagplay_0_1_0 = callPackage + ( + { buildMix, fetchHex, httpoison_0_7_5, exjsx_3_1_0 }: + buildMix { + name = "tagplay"; + version = "0.1.0"; + src = fetchHex { + pkg = "tagplay"; + version = "0.1.0"; + sha256 = + "620561f030ad83fc9e9bafec7efb03ded24d9ed81ac32a9ef1bc56c0ab87d61f"; + }; + beamDeps = [ httpoison_0_7_5 exjsx_3_1_0 ]; + + meta = { + description = ''Tagplay.co API client. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Tagplay/elixir-tagplay"; + }; + } + ) {}; + + tagplay = tagplay_0_1_0; + + tail_1_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + tail = tail_1_0_1; + + tane_0_3_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + tane = tane_0_3_1; + + tanegashima_0_0_3 = callPackage + ( + { + buildMix, + fetchHex, + poison_2_1_0, + httpoison_0_8_1, + ex_doc_0_11_4, + earmark_0_2_1, + dialyze_0_2_0 + }: + buildMix { + name = "tanegashima"; + version = "0.0.3"; + src = fetchHex { + pkg = "tanegashima"; + version = "0.0.3"; + sha256 = + "a087f30aa519aae47c1d9d03dfcccef0305e72052d3951b2aa327ca3017ca989"; + }; + beamDeps = [ + poison_2_1_0 + httpoison_0_8_1 + ex_doc_0_11_4 + earmark_0_2_1 + dialyze_0_2_0 + ]; + + meta = { + description = ''Elixir wrapper for Pushbullet-API''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/massn/Tanegashima"; + }; + } + ) {}; + + tanegashima = tanegashima_0_0_3; + + tanuki_0_2_0 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "tanuki"; + version = "0.2.0"; + src = fetchHex { + pkg = "tanuki"; + version = "0.2.0"; + sha256 = + "f499d6bcb80fc29f2d0b68d16d8309cb25589583b1f4d0eb23cbc4fe5afbab8c"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''GitLab API wrapper in Elixir, named after GitLabs + mascot''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ZJvandeWeg/Tanuki"; + }; + } + ) {}; + + tanuki = tanuki_0_2_0; + + tap_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + tap = tap_0_1_0; + + tau_0_0_6 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + tau = tau_0_0_6; + + tds_0_5_4 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + tds = tds_0_5_4; + + tds_ecto_1_0_2 = callPackage + ( + { + buildMix, fetchHex, tds_0_5_4, poison_1_5_2, ecto_2_0_0_beta_0 + }: + buildMix { + name = "tds_ecto"; + version = "1.0.2"; + src = fetchHex { + pkg = "tds_ecto"; + version = "1.0.2"; + sha256 = + "c592061c97b923fd3f2a7b212eefdd7a35ddb0dac94886b8995ed03b2b9dfd53"; + }; + beamDeps = [ tds_0_5_4 poison_1_5_2 ecto_2_0_0_beta_0 ]; + + meta = { + description = ''MSSQL / TDS Adapter for Ecto.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/livehelpnow/tds_ecto"; + }; + } + ) {}; + + tds_ecto = tds_ecto_1_0_2; + + tea_crypto_1_0_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + tea_crypto = tea_crypto_1_0_0; + + teamcity_exunit_formatter_0_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + teamcity_exunit_formatter = teamcity_exunit_formatter_0_2_0; + + telebot_0_1_2 = callPackage + ( + { buildRebar3, fetchHex, poison_1_5_2, httpoison_0_7_5 }: + buildRebar3 { + name = "telebot"; + version = "0.1.2"; + src = fetchHex { + pkg = "telebot"; + version = "0.1.2"; + sha256 = + "cb1f3058dcf182357f1620f58ac289d685b277fb31082c1644bd5f3892ccaf78"; + }; + + beamDeps = [ poison_1_5_2 httpoison_0_7_5 ]; + + meta = { + description = ''A Telegram bot plugin system for Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ottolin/telebot"; + }; + } + ) {}; + + telebot = telebot_0_1_2; + + telephonist_0_1_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + telephonist = telephonist_0_1_2; + + temp_0_3_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "temp"; + version = "0.3.0"; + src = fetchHex { + pkg = "temp"; + version = "0.3.0"; + sha256 = + "e1d2584bb62453e6bbb6247821909ae2d6a0fa7f59da9e4dc5581c0565d9c38b"; + }; + + 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"; + }; + } + ) {}; + + temp = temp_0_3_0; + + templates_0_0_5 = callPackage + ( + { buildMix, fetchHex, calliope_0_3_0 }: + buildMix { + name = "templates"; + version = "0.0.5"; + src = fetchHex { + pkg = "templates"; + version = "0.0.5"; + sha256 = + "b06a865acfb39fe17cb589ac64696127351015c9ff5d27bae0e223e770b27269"; + }; + beamDeps = [ calliope_0_3_0 ]; + + meta = { + description = ''A helper library for adding templating to web + applications ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/sugar-framework/templates"; + }; + } + ) {}; + + templates = templates_0_0_5; + + temporary_env_1_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + temporary_env = temporary_env_1_0_1; + + tentabucket_0_0_1 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_1, exjsx_3_2_0 }: + buildMix { + name = "tentabucket"; + version = "0.0.1"; + src = fetchHex { + pkg = "tentabucket"; + version = "0.0.1"; + sha256 = + "5784dad17f973efcc3c4ea7672927095864d58af1f830614e4c8f06c63d4822d"; + }; + beamDeps = [ httpoison_0_8_1 exjsx_3_2_0 ]; + + meta = { + description = ''Simple Bitbucket API client library for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/duksis/tentabucket"; + }; + } + ) {}; + + tentabucket = tentabucket_0_0_1; + + tentacat_0_3_1 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_1, exjsx_3_2_0 }: + buildMix { + name = "tentacat"; + version = "0.3.1"; + src = fetchHex { + pkg = "tentacat"; + version = "0.3.1"; + sha256 = + "fea53526c4d1847bddfc6033cdb9ea7cdbd516e18d6bed25bfcff88b5d2d6551"; + }; + beamDeps = [ httpoison_0_8_1 exjsx_3_2_0 ]; + + meta = { + description = ''Simple Elixir wrapper for the GitHub API''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/edgurgel/tentacat"; + }; + } + ) {}; + + tentacat = tentacat_0_3_1; + + term_table_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + term_table = term_table_0_0_2; + + termcap_0_1_0 = callPackage + ( + { buildRebar3, 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; + }; + } + ) {}; + + termcap = termcap_0_1_0; + + tesla_0_2_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + tesla = tesla_0_2_1; + + test_times_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + test_times = test_times_1_0_0; + + tfidf_0_1_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + tfidf = tfidf_0_1_2; + + the_fuzz_0_2_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + the_fuzz = the_fuzz_0_2_2; + + theriac_0_0_1 = callPackage + ( + { buildMix, fetchHex, fitex_0_0_1 }: + buildMix { + name = "theriac"; + version = "0.0.1"; + src = fetchHex { + pkg = "theriac"; + version = "0.0.1"; + sha256 = + "c67162d0bb02629cf3502adba2680c59c058ecbc3dda821384ee00e903d6484f"; + }; + beamDeps = [ fitex_0_0_1 ]; + + meta = { + description = ''Implementation of clojure style transducers in + elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/timdeputter/theriac"; + }; + } + ) {}; + + theriac = theriac_0_0_1; + + thrift_1_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + thrift = thrift_1_2_0; + + time_distance_0_0_1 = callPackage + ( + { buildMix, fetchHex, timex_1_0_1 }: + buildMix { + name = "time_distance"; + version = "0.0.1"; + src = fetchHex { + pkg = "time_distance"; + version = "0.0.1"; + sha256 = + "41ebe658882f2defd2cd472960e5a31b18d7ea2a4520c06907f7f2093d030e58"; + }; + beamDeps = [ timex_1_0_1 ]; + + 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"; + }; + } + ) {}; + + time_distance = time_distance_0_0_1; + + time_seer_0_0_5 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "time_seer"; + version = "0.0.5"; + src = fetchHex { + pkg = "time_seer"; + version = "0.0.5"; + sha256 = + "70a70fe4d6032d9a0cc41bfede0ed88e1cad1430de29d7dbb0b942f2d4b8768f"; + }; + + 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"; + }; + } + ) {}; + + time_seer = time_seer_0_0_5; + + timex_0_12_9 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "timex"; + version = "0.12.9"; + src = fetchHex { + pkg = "timex"; + version = "0.12.9"; + sha256 = + "6d5be2480b6aa55b452acaffd1fc91e576ffb1e0bc0f04358c8869a47af9ec60"; + }; + + 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"; + }; + } + ) {}; + + timex_0_13_5 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "timex"; + version = "0.13.5"; + src = fetchHex { + pkg = "timex"; + version = "0.13.5"; + sha256 = + "2d553f9e4b5ed7f7f9743012b6be8fd5bdf5d727e93951cd5be220dcbf161f75"; + }; + + 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"; + }; + } + ) {}; + + timex_0_16_2 = callPackage + ( + { buildMix, fetchHex, tzdata_0_1_8 }: + buildMix { + name = "timex"; + version = "0.16.2"; + src = fetchHex { + pkg = "timex"; + version = "0.16.2"; + sha256 = + "951b740468c5de3495ce750d33c9df313100de75060242fd2dfe308f40706793"; + }; + beamDeps = [ tzdata_0_1_8 ]; + + 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"; + }; + } + ) {}; + + timex_0_19_5 = callPackage + ( + { buildMix, fetchHex, tzdata_0_5_6, combine_0_7_0 }: + buildMix { + name = "timex"; + version = "0.19.5"; + src = fetchHex { + pkg = "timex"; + version = "0.19.5"; + sha256 = + "be1985ab99a6aebc3672b1d82b27e409c9a7af4658f3cc5900fa8754e159b02c"; + }; + beamDeps = [ tzdata_0_5_6 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"; + }; + } + ) {}; + + timex_1_0_0_rc4 = callPackage + ( + { buildMix, fetchHex, tzdata_0_1_8, 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_8 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"; + }; + } + ) {}; + + timex_1_0_1 = callPackage + ( + { buildMix, fetchHex, tzdata_0_1_8, combine_0_7_0 }: + buildMix { + name = "timex"; + version = "1.0.1"; + src = fetchHex { + pkg = "timex"; + version = "1.0.1"; + sha256 = + "6124f84b38f9ee526df91abca6d14bf503cc014b1f3c86d0d3412192e2b12d07"; + }; + beamDeps = [ tzdata_0_1_8 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"; + }; + } + ) {}; + + timex = timex_1_0_1; + + timex_ecto_0_5_0 = callPackage + ( + { buildMix, fetchHex, timex_0_19_5, ecto_2_0_0_beta_0 }: + buildMix { + name = "timex_ecto"; + version = "0.5.0"; + src = fetchHex { + pkg = "timex_ecto"; + version = "0.5.0"; + sha256 = + "6fe5ffbcfd3abeda54a1ce01206e982d7470c095520694c3cc2637d558e723b0"; + }; + beamDeps = [ timex_0_19_5 ecto_2_0_0_beta_0 ]; + + meta = { + description = ''A plugin for Ecto and Timex which allows use of + Timex types with Ecto''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bitwalker/timex_ecto"; + }; + } + ) {}; + + timex_ecto_0_9_0 = callPackage + ( + { buildMix, fetchHex, timex_1_0_1, ecto_2_0_0_beta_0 }: + buildMix { + name = "timex_ecto"; + version = "0.9.0"; + src = fetchHex { + pkg = "timex_ecto"; + version = "0.9.0"; + sha256 = + "454cbd67b18fa75485369b266c0142a2a5d78bb3d4078cd10dc2ec99f1088232"; + }; + beamDeps = [ timex_1_0_1 ecto_2_0_0_beta_0 ]; + + meta = { + description = ''A plugin for Ecto and Timex which allows use of + Timex types with Ecto''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bitwalker/timex_ecto"; + }; + } + ) {}; + + timex_ecto = timex_ecto_0_9_0; + + timex_interval_0_6_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + timex_interval = timex_interval_0_6_0; + + tinymt_0_3_1 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + 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/"; + }; + } + ) {}; + + tinymt = tinymt_0_3_1; + + tirexs_0_8_0_beta1 = callPackage + ( + { buildMix, fetchHex, exjsx_3_2_0 }: + buildMix { + name = "tirexs"; + version = "0.8.0-beta1"; + src = fetchHex { + pkg = "tirexs"; + version = "0.8.0-beta1"; + sha256 = + "3d7187e73f9ac85204b45ecd81a49b607415d2aecfe628d23dfd45baeb9486ee"; + }; + 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"; + }; + } + ) {}; + + tirexs = tirexs_0_8_0_beta1; + + tmdb_0_0_6 = callPackage + ( + { + buildRebar3, fetchHex, poison_1_4_0, httpoison_0_8_1, exjsx_3_1_0 + }: + buildRebar3 { + name = "tmdb"; + version = "0.0.6"; + src = fetchHex { + pkg = "tmdb"; + version = "0.0.6"; + sha256 = + "4cbad6ffa556a0eeecb22c3960d47451e918313e5651808439f039403dd38d3a"; + }; + + beamDeps = [ poison_1_4_0 httpoison_0_8_1 exjsx_3_1_0 ]; + + meta = { }; + } + ) {}; + + tmdb = tmdb_0_0_6; + + todo_1_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "todo"; + version = "1.0.1"; + src = fetchHex { + pkg = "todo"; + version = "1.0.1"; + sha256 = + "40b40fe538ff54d090d2992b107361de7b1a18ef3ad41b69ec2bb5b327e951ba"; + }; + + meta = { + description = ''A small TODO comments utility.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/niahoo/elixir-todo"; + }; + } + ) {}; + + todo = todo_1_0_1; + + tomlex_0_0_4 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "tomlex"; + version = "0.0.4"; + src = fetchHex { + pkg = "tomlex"; + version = "0.0.4"; + sha256 = + "4aa86ca5ede2147156697267a72bafb425fea2ad9c3a5c0bf6fe7f1e57e9ffa9"; + }; + + meta = { + description = ''A TOML parser for elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/zamith/tomlex"; + }; + } + ) {}; + + tomlex = tomlex_0_0_4; + + toniq_1_0_4 = callPackage + ( + { buildMix, fetchHex, uuid_1_1_3, exredis_0_2_3 }: + buildMix { + name = "toniq"; + version = "1.0.4"; + src = fetchHex { + pkg = "toniq"; + version = "1.0.4"; + sha256 = + "77c88b11b00180a7eacd0a7b722c89d4abf22fae818d50aa955d401f91c07c93"; + }; + 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"; + }; + } + ) {}; + + toniq = toniq_1_0_4; + + towel_0_2_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + towel = towel_0_2_1; + + tqdm_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + tqdm = tqdm_0_0_1; + + tracker_request_0_0_4 = callPackage + ( + { buildMix, fetchHex, bencoder_0_0_7 }: + buildMix { + name = "tracker_request"; + version = "0.0.4"; + src = fetchHex { + pkg = "tracker_request"; + version = "0.0.4"; + sha256 = + "5a4b20ed43589e9a7bd66ae1a72e5df983489b2d07ae990b32758e3353281584"; + }; + beamDeps = [ bencoder_0_0_7 ]; + + meta = { + description = ''Deal with bittorrent tracker requests and + responses''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/alehander42/tracker_request"; + }; + } + ) {}; + + tracker_request = tracker_request_0_0_4; + + trackline_0_0_1 = callPackage + ( + { + buildMix, + fetchHex, + timex_1_0_1, + 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_1 + 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"; + }; + } + ) {}; + + trackline = trackline_0_0_1; + + tradie_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + tradie = tradie_0_0_1; + + trailing_format_plug_0_0_4 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1, 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_1 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"; + }; + } + ) {}; + + trailing_format_plug = trailing_format_plug_0_0_4; + + traitify_elixir_0_1_1 = callPackage + ( + { + buildMix, + fetchHex, + poison_1_1_1, + httpoison_0_7_5, + hackney_1_0_6, + exvcr_0_3_9, + ex_conf_0_1_3 + }: + buildMix { + name = "traitify_elixir"; + version = "0.1.1"; + src = fetchHex { + pkg = "traitify_elixir"; + version = "0.1.1"; + sha256 = + "ff8568415b70f2fe6548add244cb06c9a9d8c03f0e3d9568730b926f6a9cdd95"; + }; + beamDeps = [ + poison_1_1_1 + httpoison_0_7_5 + hackney_1_0_6 + exvcr_0_3_9 + ex_conf_0_1_3 + ]; + + meta = { + description = ''An Elixir client library for the Traitify API ''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/traitify/traitify_elixir"; + }; + } + ) {}; + + traitify_elixir = traitify_elixir_0_1_1; + + transducer_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + transducer = transducer_0_1_0; + + travis_ex_0_0_2 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "travis_ex"; + version = "0.0.2"; + src = fetchHex { + pkg = "travis_ex"; + version = "0.0.2"; + sha256 = + "80589ec01596dfc1e02cef61ce0adc3c9b73977b56a528e214c37af079efa10a"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''Travis-ci API client library for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/duksis/travis_ex"; + }; + } + ) {}; + + travis_ex = travis_ex_0_0_2; + + trie_1_5_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + trie_1_5_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + trie = trie_1_5_1; + + trot_0_5_3 = callPackage + ( + { + buildMix, + 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"; + }; + } + ) {}; + + trot = trot_0_5_3; + + tsuru_1_0_2 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "tsuru"; + version = "1.0.2"; + src = fetchHex { + pkg = "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; + + tuco_tuco_0_8_1 = callPackage + ( + { buildMix, fetchHex, webdriver_0_8_1 }: + buildMix { + name = "tuco_tuco"; + version = "0.8.1"; + src = fetchHex { + pkg = "tuco_tuco"; + version = "0.8.1"; + sha256 = + "9c61ae99070047928940100e4bc4808583eae656cfaae03e7d6b7a3b3cc23c74"; + }; + beamDeps = [ webdriver_0_8_1 ]; + + meta = { + description = ''Testing tool for web applications''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/stuart/tuco-tuco"; + }; + } + ) {}; + + tuco_tuco = tuco_tuco_0_8_1; + + twittex_0_0_4 = callPackage + ( + { buildMix, fetchHex, oauther_1_0_2, oauth2_0_5_0 }: + buildMix { + name = "twittex"; + version = "0.0.4"; + src = fetchHex { + pkg = "twittex"; + version = "0.0.4"; + sha256 = + "2cfe144fe70ed0d0fcfbc18f232a54a844d1ef79db74cd385c8640e40ea30aa7"; + }; + beamDeps = [ oauther_1_0_2 oauth2_0_5_0 ]; + + meta = { + description = ''Twitter client library for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/almightycouch/twittex"; + }; + } + ) {}; + + twittex = twittex_0_0_4; + + type_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + type = type_0_0_2; + + typeformx_0_0_1 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "typeformx"; + version = "0.0.1"; + src = fetchHex { + pkg = "typeformx"; + version = "0.0.1"; + sha256 = + "8f6f1613f53f8c5012eb6d05276f5d305bdb9d4b0e94926680b536d0e1d94a62"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''An Elixir client library for the Typeform API + (typeform.io)''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/netflakes/TypeformX"; + }; + } + ) {}; + + typeformx = typeformx_0_0_1; + + tzdata_0_1_8 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "tzdata"; + version = "0.1.8"; + src = fetchHex { + pkg = "tzdata"; + version = "0.1.8"; + sha256 = + "68af93cc1e0e0e6be76a583faaf15d57972a1afbf1e39f9d70524da87dfae825"; + }; + + meta = { + description = ''Tzdata is a parser and library for the tz + database.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/lau/tzdata"; + }; + } + ) {}; + + tzdata_0_5_6 = callPackage + ( + { buildMix, fetchHex, hackney_1_4_8 }: + buildMix { + name = "tzdata"; + version = "0.5.6"; + src = fetchHex { + pkg = "tzdata"; + version = "0.5.6"; + sha256 = + "e2be18ea3e7c7dc83520b0eed369bbeea0c478299590524009a9dbaf0a9bfb04"; + }; + beamDeps = [ hackney_1_4_8 ]; + + meta = { + description = ''Tzdata is a parser and library for the tz + database.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/lau/tzdata"; + }; + } + ) {}; + + tzdata = tzdata_0_5_6; + + ua_inspector_0_10_0 = callPackage + ( + { buildMix, fetchHex, poolboy_1_5_1 }: + buildMix { + name = "ua_inspector"; + version = "0.10.0"; + src = fetchHex { + pkg = "ua_inspector"; + version = "0.10.0"; + sha256 = + "10f53183f10fcdbafb912e32798decec31fa0477fb4ddaa48048467936231d9a"; + }; + beamDeps = [ poolboy_1_5_1 ]; + + meta = { + description = ''User agent parser library''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/elixytics/ua_inspector"; + }; + } + ) {}; + + ua_inspector = ua_inspector_0_10_0; + + uber_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + uber = uber_0_1_0; + + ucol_nif_1_1_5 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "ucol_nif"; + version = "1.1.5"; + src = fetchHex { + pkg = "ucol_nif"; + version = "1.1.5"; + sha256 = + "a6fad2b92dfe84a2654a085163de39cae88762d14c414cdeaeb66ac41d5c156e"; + }; + compilePorts = true; + + meta = { + description = ''ICU based collation module''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/refuge/ucol_nif"; + }; + } + ) {}; + + ucol_nif = ucol_nif_1_1_5; + + udpflux_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + udpflux = udpflux_0_0_2; + + ueberauth_0_2_0 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1 }: + buildMix { + name = "ueberauth"; + version = "0.2.0"; + src = fetchHex { + pkg = "ueberauth"; + version = "0.2.0"; + sha256 = + "d6ee9cfe96be0e2b4005cb482b8e29c20ae0d6f7332ea9f686397c4ab20bf4de"; + }; + beamDeps = [ plug_1_1_1 ]; + + meta = { + description = ''An Elixir Authentication System for Plug-based + Web Applications''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ueberauth/ueberauth"; + }; + } + ) {}; + + ueberauth = ueberauth_0_2_0; + + ueberauth_facebook_0_3_2 = callPackage + ( + { buildMix, fetchHex, ueberauth_0_2_0, oauth2_0_5_0 }: + buildMix { + name = "ueberauth_facebook"; + version = "0.3.2"; + src = fetchHex { + pkg = "ueberauth_facebook"; + version = "0.3.2"; + sha256 = + "d766a41a0b26bccfc1371b776bfcfb760f09639ac3de9aa8885023af9e5641c5"; + }; + beamDeps = [ ueberauth_0_2_0 oauth2_0_5_0 ]; + + meta = { + description = ''An Uberauth strategy for Facebook + authentication.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ueberauth/ueberauth_facebook"; + }; + } + ) {}; + + ueberauth_facebook = ueberauth_facebook_0_3_2; + + ueberauth_fitbit_0_2_1 = callPackage + ( + { buildMix, fetchHex, ueberauth_0_2_0, oauth2_0_5_0 }: + buildMix { + name = "ueberauth_fitbit"; + version = "0.2.1"; + src = fetchHex { + pkg = "ueberauth_fitbit"; + version = "0.2.1"; + sha256 = + "669e2bba8f498651dc4c31fbb978179b9d344264ace2ff8f53e007cc6d243956"; + }; + beamDeps = [ ueberauth_0_2_0 oauth2_0_5_0 ]; + + meta = { + description = ''An Ueberauth strategy for Fitbit OAuth2 + authentication''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/vinniefranco/ueberauth_fitbit"; + }; + } + ) {}; + + ueberauth_fitbit = ueberauth_fitbit_0_2_1; + + ueberauth_github_0_2_0 = callPackage + ( + { buildMix, fetchHex, ueberauth_0_2_0, oauth2_0_5_0 }: + buildMix { + name = "ueberauth_github"; + version = "0.2.0"; + src = fetchHex { + pkg = "ueberauth_github"; + version = "0.2.0"; + sha256 = + "b12b3dae8c097d5cd57a3e1cd97286b796ee36794b031f92a76e848f572cb4ab"; + }; + beamDeps = [ ueberauth_0_2_0 oauth2_0_5_0 ]; + + meta = { + description = ''An Ueberauth strategy for using Github to + authenticate your users.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ueberauth/ueberauth_github"; + }; + } + ) {}; + + ueberauth_github = ueberauth_github_0_2_0; + + ueberauth_google_0_2_0 = callPackage + ( + { buildMix, fetchHex, ueberauth_0_2_0, oauth2_0_5_0 }: + buildMix { + name = "ueberauth_google"; + version = "0.2.0"; + src = fetchHex { + pkg = "ueberauth_google"; + version = "0.2.0"; + sha256 = + "b57f13534f37b7062df5a696976453af1faabc00d608ccdce29f9289164fce44"; + }; + beamDeps = [ ueberauth_0_2_0 oauth2_0_5_0 ]; + + meta = { + description = ''An Uberauth strategy for Google + authentication.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ueberauth/ueberauth_google"; + }; + } + ) {}; + + ueberauth_google = ueberauth_google_0_2_0; + + ueberauth_identity_0_2_2 = callPackage + ( + { + buildMix, fetchHex, ueberauth_0_2_0, poison_1_5_2, plug_1_1_1 + }: + buildMix { + name = "ueberauth_identity"; + version = "0.2.2"; + src = fetchHex { + pkg = "ueberauth_identity"; + version = "0.2.2"; + sha256 = + "6c3d7e5917a5030f737152cc86af4c7066a66a30aea049562c687e5af51bee82"; + }; + beamDeps = [ ueberauth_0_2_0 poison_1_5_2 plug_1_1_1 ]; + + meta = { + description = ''An Ueberauth strategy for basic + username/password''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ueberauth/ueberauth_identity"; + }; + } + ) {}; + + ueberauth_identity = ueberauth_identity_0_2_2; + + ueberauth_slack_0_2_0 = callPackage + ( + { buildMix, fetchHex, ueberauth_0_2_0, oauth2_0_5_0 }: + buildMix { + name = "ueberauth_slack"; + version = "0.2.0"; + src = fetchHex { + pkg = "ueberauth_slack"; + version = "0.2.0"; + sha256 = + "1b109ed50d34b3a18d5db04234475baa3ae08893b46a7b5a1726fec4adb6753b"; + }; + beamDeps = [ ueberauth_0_2_0 oauth2_0_5_0 ]; + + meta = { + description = ''An Ueberauth strategy for using Slack to + authenticate your users''; + + }; + } + ) {}; + + ueberauth_slack = ueberauth_slack_0_2_0; + + ueberauth_twitter_0_2_2 = callPackage + ( + { buildMix, fetchHex, ueberauth_0_2_0, httpoison_0_8_1 }: + buildMix { + name = "ueberauth_twitter"; + version = "0.2.2"; + src = fetchHex { + pkg = "ueberauth_twitter"; + version = "0.2.2"; + sha256 = + "911a227b8290e8d65cee8d45015477d4ea51dbcf637c8a41ff88b34fcc5ab65a"; + }; + beamDeps = [ ueberauth_0_2_0 httpoison_0_8_1 ]; + + meta = { + description = ''An Uberauth strategy for Twitter + authentication.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ueberauth/ueberauth_twitter"; + }; + } + ) {}; + + ueberauth_twitter = ueberauth_twitter_0_2_2; + + ui_0_1_1 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "ui"; + version = "0.1.1"; + src = fetchHex { + pkg = "ui"; + version = "0.1.1"; + sha256 = + "492da59ca39055c0dfc794a2ebd564adb9ed635402c7b46659981f32aa9d94c1"; + }; + + meta = { + description = ''An OTP application''; + + }; + } + ) {}; + + ui = ui_0_1_1; + + uk_postcode_0_3_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + uk_postcode = uk_postcode_0_3_0; + + ulitos_0_3_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + ulitos = ulitos_0_3_0; + + unit_fun_0_5_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + unit_fun = unit_fun_0_5_1; + + units_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + units = units_1_0_0; + + unsplash_0_3_0 = callPackage + ( + { + buildMix, fetchHex, poison_1_5_2, oauth2_0_5_0, httpoison_0_8_1 + }: + buildMix { + name = "unsplash"; + version = "0.3.0"; + src = fetchHex { + pkg = "unsplash"; + version = "0.3.0"; + sha256 = + "609ded0d452729df1d6272ca7997a6bd6fb65821606f17d078c73a1b2ecbc37a"; + }; + beamDeps = [ poison_1_5_2 oauth2_0_5_0 httpoison_0_8_1 ]; + + meta = { + description = ''Unsplash API in Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/waynehoover/unsplash-elixir"; + }; + } + ) {}; + + unsplash = unsplash_0_3_0; + + upyun_0_0_1 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "upyun"; + version = "0.0.1"; + src = fetchHex { + pkg = "upyun"; + version = "0.0.1"; + sha256 = + "a5276f371b667efb1da6e48828279963b23d6eb4b5a5225e6f3e19c77c4e4851"; + }; + + meta = { + description = ''UPYun sdk for Elixir. ''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Hor/upyun-elixir"; + }; + } + ) {}; + + upyun = upyun_0_0_1; + + uri_0_1_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "uri"; + version = "0.1.0"; + src = fetchHex { + pkg = "uri"; + version = "0.1.0"; + sha256 = + "3833c3b5745fc0822df86c3a3591219048026fea8a535223b440d26029218996"; + }; + + meta = { + description = ''URI Parsing/Encoding Library''; + + }; + } + ) {}; + + uri = uri_0_1_0; + + uri_template_1_2_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "uri_template"; + version = "1.2.0"; + src = fetchHex { + pkg = "uri_template"; + version = "1.2.0"; + sha256 = + "c1c97235b8571703926e77449cb272f8ae3a0710b6c91099ec6f66f44425a8c0"; + }; + + meta = { + description = ''RFC 6570 complient URI template processor''; + license = stdenv.lib.licenses.free; + }; + } + ) {}; + + uri_template = uri_template_1_2_0; + + urilib_0_1_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + urilib = urilib_0_1_1; + + url_unroller_0_0_2 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_1 }: + buildMix { + name = "url_unroller"; + version = "0.0.2"; + src = fetchHex { + pkg = "url_unroller"; + version = "0.0.2"; + sha256 = + "9e12c97ff7b45e457734293cabfdd1e60dbfe3d4f80ec7706814a84b61cf11ec"; + }; + beamDeps = [ httpoison_0_8_1 ]; + + meta = { + description = ''A simple url unroller/unshortener''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/semanticart/url_unroller"; + }; + } + ) {}; + + url_unroller = url_unroller_0_0_2; + + urna_0_1_4 = callPackage + ( + { buildMix, fetchHex, cauldron_0_1_5, jazz_0_2_1 }: + buildMix { + name = "urna"; + version = "0.1.4"; + src = fetchHex { + pkg = "urna"; + version = "0.1.4"; + sha256 = + "46f531370376bd4730cf7c17eede9b9b92ce46c5a57e9ce1e129fcc17a2b2848"; + }; + beamDeps = [ cauldron_0_1_5 jazz_0_2_1 ]; + + meta = { + description = ''REST in peace''; + license = stdenv.lib.licenses.wtfpl; + homepage = "https://github.com/meh/urna"; + }; + } + ) {}; + + urna = urna_0_1_4; + + uuid_0_1_5 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "uuid"; + version = "0.1.5"; + src = fetchHex { + pkg = "uuid"; + version = "0.1.5"; + sha256 = + "5cfb91972f5cacb0bcb2f00414d5747dd575d84b864c96f668ab3b729cc08422"; + }; + + meta = { + description = ''UUID generator and utilities for Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/zyro/elixir-uuid"; + }; + } + ) {}; + + uuid_1_1_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + uuid = uuid_1_1_3; + + uuid_erl_1_5_1 = callPackage + ( + { buildRebar3, fetchHex, quickrand_1_5_1 }: + buildRebar3 { + name = "uuid_erl"; + version = "1.5.1"; + src = fetchHex { + pkg = "uuid_erl"; + version = "1.5.1"; + sha256 = + "fd2a8d90693631455073d4ae2b34fdb9d58da30c0ee0e63149fbf320c71b74fa"; + }; + + beamDeps = [ quickrand_1_5_1 ]; + + meta = { + description = ''Erlang UUID Implementation''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/okeuday/uuid"; + }; + } + ) {}; + + uuid_erl = uuid_erl_1_5_1; + + vagrant_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + vagrant = vagrant_0_0_1; + + valid_field_0_3_0 = callPackage + ( + { buildMix, fetchHex, ecto_2_0_0_beta_0 }: + buildMix { + name = "valid_field"; + version = "0.3.0"; + src = fetchHex { + pkg = "valid_field"; + version = "0.3.0"; + sha256 = + "258591717d45835be4f3b299a2c332dc33702876c272f2fff455956c4a5409dc"; + }; + beamDeps = [ ecto_2_0_0_beta_0 ]; + + meta = { + description = ''ValidField aids unit testing a changeset for + valid (and invalid) fields''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/dockyard/valid_field"; + }; + } + ) {}; + + valid_field = valid_field_0_3_0; + + varpool_1_5_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + varpool = varpool_1_5_1; + + verify_origin_0_1_0 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1 }: + buildMix { + name = "verify_origin"; + version = "0.1.0"; + src = fetchHex { + pkg = "verify_origin"; + version = "0.1.0"; + sha256 = + "90834033676cb0ca632f208f489f6eb92ae94323fe7243efba577e1deb031167"; + }; + beamDeps = [ plug_1_1_1 ]; + + meta = { + description = ''A library for using Origin header checking to + prevent CSRF''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/danmcclain/verify_origin"; + }; + } + ) {}; + + verify_origin = verify_origin_0_1_0; + + verk_0_9_6 = callPackage + ( + { + buildMix, + fetchHex, + timex_1_0_1, + redix_0_3_4, + poolboy_1_5_1, + poison_1_5_2 + }: + buildMix { + name = "verk"; + version = "0.9.6"; + src = fetchHex { + pkg = "verk"; + version = "0.9.6"; + sha256 = + "a8b021d474d199c946fc6b7b38053218d8157faa60e9068c18db86ea5a978869"; + }; + beamDeps = [ timex_1_0_1 redix_0_3_4 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"; + }; + } + ) {}; + + verk = verk_0_9_6; + + verk_web_0_9_1 = callPackage + ( + { + buildMix, + fetchHex, + verk_0_9_6, + phoenix_html_2_5_0, + phoenix_1_1_4, + gettext_0_10_0, + cowboy_1_0_4 + }: + buildMix { + name = "verk_web"; + version = "0.9.1"; + src = fetchHex { + pkg = "verk_web"; + version = "0.9.1"; + sha256 = + "71eb5c4ab6f73676b21c24b1ba86a3c11a1979339d83ab52a77a3be70da6e61b"; + }; + beamDeps = [ + verk_0_9_6 + phoenix_html_2_5_0 + phoenix_1_1_4 + gettext_0_10_0 + cowboy_1_0_4 + ]; + + meta = { + description = ''A Verk dashboard''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/edgurgel/verk_web"; + }; + } + ) {}; + + verk_web = verk_web_0_9_1; + + vex_0_5_5 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + vex = vex_0_5_5; + + viktor_0_0_5 = callPackage + ( + { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_1 }: + buildMix { + name = "viktor"; + version = "0.0.5"; + src = fetchHex { + pkg = "viktor"; + version = "0.0.5"; + sha256 = + "df49c25a93ea36d6f65b25716c894a9479ab6f990ed138170bdeea2930ef6cec"; + }; + beamDeps = [ poison_2_1_0 httpoison_0_8_1 ]; + + meta = { + description = ''Client API wrapper for League of Legends API.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/josephyi/viktor"; + }; + } + ) {}; + + viktor = viktor_0_0_5; + + vimeo_0_0_2 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_7_5 }: + buildMix { + name = "vimeo"; + version = "0.0.2"; + src = fetchHex { + pkg = "vimeo"; + version = "0.0.2"; + sha256 = + "62adf724e67b6fefa2ecc2fcc770e320f4133676cf67cd68a39e5ca45ddd3377"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_7_5 ]; + + meta = { + description = ''Vimeo API v3 client library for Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/lilfaf/vimeo.ex"; + }; + } + ) {}; + + vimeo = vimeo_0_0_2; + + virus_total_0_0_1 = callPackage + ( + { buildMix, fetchHex, jsx_2_8_0, httpoison_0_8_1 }: + buildMix { + name = "virus_total"; + version = "0.0.1"; + src = fetchHex { + pkg = "virus_total"; + version = "0.0.1"; + sha256 = + "bed3680d17c98f978a90f5b443b6e269ee0a3f2239d2262502d8d10ee042ebfa"; + }; + beamDeps = [ jsx_2_8_0 httpoison_0_8_1 ]; + + meta = { + description = ''Elixir OTP application for the VirusTotal Public + API v2.0''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/dtykocki/virus_total"; + }; + } + ) {}; + + virus_total = virus_total_0_0_1; + + voorhees_0_1_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + voorhees = voorhees_0_1_1; + + watcher_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + watcher = watcher_1_0_0; + + wayback_archiver_0_0_1 = callPackage + ( + { buildMix, fetchHex, httpotion_2_1_0, floki_0_7_1 }: + buildMix { + name = "wayback_archiver"; + version = "0.0.1"; + src = fetchHex { + pkg = "wayback_archiver"; + version = "0.0.1"; + sha256 = + "9f8bea06d6dcac6c017a3a41859373c10a1b46fb133db47300c2ae7c9fada590"; + }; + beamDeps = [ httpotion_2_1_0 floki_0_7_1 ]; + + meta = { + description = ''Send URLs to Wayback Machine''; + license = stdenv.lib.licenses.free; + }; + } + ) {}; + + wayback_archiver = wayback_archiver_0_0_1; + + web_socket_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + web_socket = web_socket_0_0_1; + + webassembly_0_6_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + webassembly = webassembly_0_6_1; + + webdriver_0_8_1 = callPackage + ( + { buildMix, fetchHex, jazz_0_2_1, httpotion_2_2_0 }: + buildMix { + name = "webdriver"; + version = "0.8.1"; + src = fetchHex { + pkg = "webdriver"; + version = "0.8.1"; + sha256 = + "fe2009920fb210cd50df3a7d2bb40cd6f2844a538d52a48952f18008e1c5f3d3"; + }; + beamDeps = [ jazz_0_2_1 httpotion_2_2_0 ]; + + meta = { + description = ''Webdriver protocol for driving web browsers.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/stuart/elixir-webdriver"; + }; + } + ) {}; + + webdriver = webdriver_0_8_1; + + weber_0_1_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "weber"; + version = "0.1.0"; + src = fetchHex { + pkg = "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; + + webpay_0_0_4 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "webpay"; + version = "0.0.4"; + src = fetchHex { + pkg = "webpay"; + version = "0.0.4"; + sha256 = + "abab40fc7fda25a55d3a3dce4327d3f322df378432a9ed5e7c43e553989f467e"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''Elixir Webpay API wrapper''; + + }; + } + ) {}; + + webpay = webpay_0_0_4; + + websocket_client_1_1_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + websocket_client = websocket_client_1_1_0; + + wechat_check_signature_0_0_1 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1 }: + 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_1 ]; + + meta = { + description = ''An Elixir Plug for checking wechat signature.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/octocandy/wechat_check_signature"; + }; + } + ) {}; + + wechat_check_signature = wechat_check_signature_0_0_1; + + wechatex_0_0_1 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1 }: + buildMix { + name = "wechatex"; + version = "0.0.1"; + src = fetchHex { + pkg = "wechatex"; + version = "0.0.1"; + sha256 = + "211971a79d38326dbf5e603ee00165708eb17670f2a84e54df929191c6fef81c"; + }; + beamDeps = [ plug_1_1_1 ]; + + meta = { + description = ''Wechat plugins for Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/octocandy/wechatex"; + }; + } + ) {}; + + wechatex = wechatex_0_0_1; + + weebo_0_1_2 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "weebo"; + version = "0.1.2"; + src = fetchHex { + pkg = "weebo"; + version = "0.1.2"; + sha256 = + "335367353f5675f3ce0ced41512b554da0f986efc4064479d403726c0a169231"; + }; + + meta = { + description = ''An XML-RPC parser/formatter for Elixir, with full + support for datatype mapping!''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/stevenschobert/weebo"; + }; + } + ) {}; + + weebo = weebo_0_1_2; + + white_bread_2_5_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + white_bread = white_bread_2_5_0; + + wifi_0_2_0 = callPackage + ( + { buildMix, fetchHex, poison_1_4_0, httpoison_0_8_1 }: + buildMix { + name = "wifi"; + version = "0.2.0"; + src = fetchHex { + pkg = "wifi"; + version = "0.2.0"; + sha256 = + "0060d0dda9308e9dc652e83f7646485d932188a11e17fb814125ccd7449effc5"; + }; + beamDeps = [ poison_1_4_0 httpoison_0_8_1 ]; + + meta = { + longDescription = ''Various utility functions for working with + the local Wifi network in Elixir. These + functions are mostly useful in scripts that + could benefit from knowing the current location + of the computer or the Wifi surroundings.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/gausby/wifi"; + }; + } + ) {}; + + wifi = wifi_0_2_0; + + wire_0_2_0 = callPackage + ( + { buildMix, fetchHex, bencoder_0_0_7 }: + buildMix { + name = "wire"; + version = "0.2.0"; + src = fetchHex { + pkg = "wire"; + version = "0.2.0"; + sha256 = + "0a2ce1329c321bd675a79152e3ed2e99cc59b3747112498e62b14bf686ca7fba"; + }; + beamDeps = [ bencoder_0_0_7 ]; + + meta = { + description = ''Encode and decode bittorrent peer wire protocol + messages''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/alehander42/wire"; + }; + } + ) {}; + + wire = wire_0_2_0; + + witchcraft_0_4_2 = callPackage + ( + { buildMix, fetchHex, quark_1_0_2, algae_0_9_1 }: + buildMix { + name = "witchcraft"; + version = "0.4.2"; + src = fetchHex { + pkg = "witchcraft"; + version = "0.4.2"; + sha256 = + "cdd6379d5a8b0baab3b79b0c9b87473d8292e0d9a80fa2e21fac61d31218609f"; + }; + beamDeps = [ quark_1_0_2 algae_0_9_1 ]; + + meta = { + description = ''Common algebraic structures and functions''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/robot-overlord/witchcraft"; + }; + } + ) {}; + + witchcraft = witchcraft_0_4_2; + + wizard_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + wizard = wizard_0_1_0; + + wizardry_0_0_1 = callPackage + ( + { buildMix, fetchHex, plug_1_1_1, comeonin_1_6_0 }: + buildMix { + name = "wizardry"; + version = "0.0.1"; + src = fetchHex { + pkg = "wizardry"; + version = "0.0.1"; + sha256 = + "4a85b8c3e5813dee20aa0d5503811568743644883723c9b226436616c9a779a3"; + }; + beamDeps = [ plug_1_1_1 comeonin_1_6_0 ]; + + meta = { + description = ''Simple, low-level user account framework for + Phoenix Framework''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/knrz/wizardry"; + }; + } + ) {}; + + wizardry = wizardry_0_0_1; + + work_queue_0_0_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + work_queue = work_queue_0_0_3; + + worker_pool_1_0_4 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + worker_pool = worker_pool_1_0_4; + + workex_0_10_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + workex = workex_0_10_0; + + workshop_0_5_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + workshop = workshop_0_5_1; + + world_json_0_1_5 = callPackage + ( + { buildMix, fetchHex, poison_1_3_1 }: + buildMix { + name = "world_json"; + version = "0.1.5"; + src = fetchHex { + pkg = "world_json"; + version = "0.1.5"; + sha256 = + "3a960d9794627a1927f7410185bf36c22d6b4d8f079bf74e131d0f5606b7f567"; + }; + 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"; + }; + } + ) {}; + + world_json = world_json_0_1_5; + + wpa_supplicant_0_1_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "wpa_supplicant"; + version = "0.1.0"; + src = fetchHex { + pkg = "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; + + wykop_api_0_0_4 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "wykop_api"; + version = "0.0.4"; + src = fetchHex { + pkg = "wykop_api"; + version = "0.0.4"; + sha256 = + "0c2acade581168e5cdf3d1dbde53183bc1c49882c8ba8793e045f20d5a9a26d0"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''Library for Wykop API.''; + license = stdenv.lib.licenses.cc0; + homepage = "https://github.com/remiq/wykop_api_elixir"; + }; + } + ) {}; + + wykop_api = wykop_api_0_0_4; + + xe_0_0_1 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_1, floki_0_7_1 }: + buildMix { + name = "xe"; + version = "0.0.1"; + src = fetchHex { + pkg = "xe"; + version = "0.0.1"; + sha256 = + "53d693612db1343c36a7bbe6286c23f7ccfdbd44500c2a38970743238d230a77"; + }; + beamDeps = [ httpoison_0_8_1 floki_0_7_1 ]; + + meta = { + description = ''Real time conversion for currencies''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/paulodiniz/xe"; + }; + } + ) {}; + + xe = xe_0_0_1; + + xfighter_0_2_1 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "xfighter"; + version = "0.2.1"; + src = fetchHex { + pkg = "xfighter"; + version = "0.2.1"; + sha256 = + "67bb43379cd89b4b95f65f02ad5421719723d262fdbe7e399fb82ac7f3b490a8"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''An API wrapper for the programming game + Stockfighter.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bitchef/xfighter"; + }; + } + ) {}; + + xfighter = xfighter_0_2_1; + + xlsx_parser_0_0_4 = callPackage + ( + { + buildMix, + fetchHex, + timex_1_0_1, + 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_1 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"; + }; + } + ) {}; + + xlsx_parser = xlsx_parser_0_0_4; + + xml_builder_0_0_8 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + xml_builder = xml_builder_0_0_8; + + xmlrpc_0_9_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + xmlrpc = xmlrpc_0_9_1; + + xoauth2_0_0_3 = callPackage + ( + { + buildMix, fetchHex, poison_1_5_2, mock_0_1_1, httpoison_0_8_1 + }: + buildMix { + name = "xoauth2"; + version = "0.0.3"; + src = fetchHex { + pkg = "xoauth2"; + version = "0.0.3"; + sha256 = + "4a43a0bca1707b579c6a141524666006dd25ed2efdc19aee5d6eeedf6efc3418"; + }; + beamDeps = [ poison_1_5_2 mock_0_1_1 httpoison_0_8_1 ]; + + meta = { + description = ''A simple XOAuth2 module for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/craigp/elixir_xoauth2"; + }; + } + ) {}; + + xoauth2 = xoauth2_0_0_3; + + xref_runner_0_2_5 = callPackage + ( + { buildRebar3, fetchHex, getopt_0_8_2 }: + buildRebar3 { + 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"; + }; + } + ) {}; + + xref_runner = xref_runner_0_2_5; + + yahoo_fx_0_1_3 = callPackage + ( + { + buildMix, + fetchHex, + hackney_1_0_6, + time_seer_0_0_5, + httpoison_0_7_5 + }: + buildMix { + name = "yahoo_fx"; + version = "0.1.3"; + src = fetchHex { + pkg = "yahoo_fx"; + version = "0.1.3"; + sha256 = + "6f8691b2de712ea5e870f48291a2a2debd8ae8977e37480e69ce81f423e40479"; + }; + beamDeps = [ hackney_1_0_6 time_seer_0_0_5 httpoison_0_7_5 ]; + + meta = { + longDescription = ''YahooFx is an Elixir library for getting + currency exchange rates from Yahoo Finance''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/lau/yahoo_fx"; + }; + } + ) {}; + + yahoo_fx = yahoo_fx_0_1_3; + + yaml_elixir_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + yaml_elixir = yaml_elixir_1_0_0; + + yar_0_1_0 = callPackage + ( + { buildMix, fetchHex, socket_0_3_1 }: + buildMix { + name = "yar"; + version = "0.1.0"; + src = fetchHex { + pkg = "yar"; + version = "0.1.0"; + sha256 = + "23cdbe07714deee32a3d4be77e7c392ef57ab8ad28d10e053edf1cb0a136c2e6"; + }; + beamDeps = [ socket_0_3_1 ]; + + meta = { + description = ''Yet Another Redis client (implemented in pure + elixir)''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/dantswain/yar"; + }; + } + ) {}; + + yar = yar_0_1_0; + + yggdrasil_1_1_0 = callPackage + ( + { buildMix, fetchHex, exredis_0_2_3, amqp_0_1_4 }: + buildMix { + name = "yggdrasil"; + version = "1.1.0"; + src = fetchHex { + pkg = "yggdrasil"; + version = "1.1.0"; + sha256 = + "f4412a82c09c09b70a9520f91113d9aa064f74b597ff5bdad6601ca7cf860f63"; + }; + beamDeps = [ exredis_0_2_3 amqp_0_1_4 ]; + + meta = { + longDescription = ''Yggdrasil is an app to manage subscriptions + to several brokers. It has simple + implementations for Redis and RabbitMQ, but they + can easily be extended. Also provides a + `behaviour` to define custom brokers.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/gmtprime/yggdrasil"; + }; + } + ) {}; + + yggdrasil = yggdrasil_1_1_0; + + yocingo_0_0_2 = callPackage + ( + { + buildMix, fetchHex, httpoison_0_8_1, exjsx_3_2_0, earmark_0_2_1 + }: + buildMix { + name = "yocingo"; + version = "0.0.2"; + src = fetchHex { + pkg = "yocingo"; + version = "0.0.2"; + sha256 = + "3ce350bb833e72edc684dc6ece956146161d4b7215cd9557f95bb2d7dcb1abf4"; + }; + beamDeps = [ httpoison_0_8_1 exjsx_3_2_0 earmark_0_2_1 ]; + + meta = { + longDescription = ''This is a full Telegram Bot API. With this + module you can create your own Telegram Bot.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Yawolf/yocingo"; + }; + } + ) {}; + + yocingo = yocingo_0_0_2; + + yodlee_0_0_9 = callPackage + ( + { + buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1, hackney_1_4_8 + }: + buildMix { + name = "yodlee"; + version = "0.0.9"; + src = fetchHex { + pkg = "yodlee"; + version = "0.0.9"; + sha256 = + "4bc779bc847bfb39ebc04789116da830d049e0755a594d5d8f38dffc250cf69e"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 hackney_1_4_8 ]; + + meta = { + description = ''Yodlee API''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/levanto-financial/yodlee-elixir"; + }; + } + ) {}; + + yodlee = yodlee_0_0_9; + + yomel_0_5_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "yomel"; + version = "0.5.0"; + src = fetchHex { + pkg = "yomel"; + version = "0.5.0"; + sha256 = + "737be278c9ae9ed40b24a45a461ea47b4979429e1d51b28961d43ee3a6426827"; + }; + compilePorts = true; + + meta = { + description = ''Decodes yaml into elixir terms''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Joe-noh/yomel"; + }; + } + ) {}; + + yomel = yomel_0_5_0; + + ytx_0_0_5 = callPackage + ( + { buildMix, fetchHex, rapidax_0_0_3 }: + buildMix { + name = "ytx"; + version = "0.0.5"; + src = fetchHex { + pkg = "ytx"; + version = "0.0.5"; + sha256 = + "a30877517201e1c964627782345273fa7ae2157591d1ae6f5663333f370db6f6"; + }; + beamDeps = [ rapidax_0_0_3 ]; + + meta = { + description = ''Youtube API Client for Elixir''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/victorlcampos/ytx"; + }; + } + ) {}; + + ytx = ytx_0_0_5; + + yuri_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + yuri = yuri_1_0_0; + + yyid_0_1_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + yyid = yyid_0_1_2; + + zanox_0_0_1 = callPackage + ( + { buildMix, fetchHex, poison_1_5_0, httpoison_0_8_0 }: + buildMix { + name = "zanox"; + version = "0.0.1"; + src = fetchHex { + pkg = "zanox"; + version = "0.0.1"; + sha256 = + "30af29400aaa0ff207ca4f24849d563c1691185faf86fc2c7f534b550175dee2"; + }; + beamDeps = [ poison_1_5_0 httpoison_0_8_0 ]; + + meta = { + description = ''Zanox API''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rafaelss/zanox"; + }; + } + ) {}; + + zanox = zanox_0_0_1; + + zarex_0_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + zarex = zarex_0_2_0; + + zbase32_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + zbase32 = zbase32_1_0_0; + + zencoder_1_0_1 = callPackage + ( + { buildMix, fetchHex, poison_1_4_0, httpotion_1_0_0 }: + buildMix { + name = "zencoder"; + version = "1.0.1"; + src = fetchHex { + pkg = "zencoder"; + version = "1.0.1"; + sha256 = + "b2220575aa2ee1da5101774c82e1d68f2e5f86d6cefd6f04811c882fc05473bc"; + }; + beamDeps = [ poison_1_4_0 httpotion_1_0_0 ]; + + meta = { + description = ''Elixir API wrapper for the Zencoder video + transcoding API.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/zencoder/zencoder-ex"; + }; + } + ) {}; + + zencoder = zencoder_1_0_1; + + zipcloudx_0_0_2 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + buildMix { + name = "zipcloudx"; + version = "0.0.2"; + src = fetchHex { + pkg = "zipcloudx"; + version = "0.0.2"; + sha256 = + "1e474ec0229b6dd1404c34fbd2a851d136d9549d5ecccbd01d017baac64b264e"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + + meta = { + description = ''Elixir zipcloud API wrapper''; + + }; + } + ) {}; + + zipcloudx = zipcloudx_0_0_2; + + zipper_0_1_5 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "zipper"; + version = "0.1.5"; + src = fetchHex { + pkg = "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; + + zipper_tree_0_1_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + zipper_tree = zipper_tree_0_1_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..378fb382f95 --- /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 = "329ae2b"; + version = "0.0.0+build.${rev}"; + + src = fetchFromGitHub { + owner = "erlang-nix"; + repo = "hex-pm-registry-snapshots"; + inherit rev; + sha256 = "1rs3z8psfvy10mzlfvkdzbflgikcnq08r38kfi0f8p5wvi8f8hmh"; + }; + + 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/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/tools/build-managers/rebar3/default.nix b/pkgs/development/tools/build-managers/rebar3/default.nix index ac3a5ac9e40..057ae59b144 100644 --- a/pkgs/development/tools/build-managers/rebar3/default.nix +++ b/pkgs/development/tools/build-managers/rebar3/default.nix @@ -1,10 +1,9 @@ { stdenv, writeText, callPackage, fetchurl, - fetchHex, erlang, hermeticRebar3 ? true, rebar3-nix-bootstrap, tree, fetchFromGitHub }: - + fetchHex, erlang, hermeticRebar3 ? true, rebar3-nix-bootstrap, + tree, fetchFromGitHub, hexRegistrySnapshot }: let version = "3.0.0-beta.4"; - registrySnapshot = callPackage ./registrySnapshot.nix { }; # TODO: all these below probably should go into nixpkgs.erlangModules.sources.* # {erlware_commons, "0.16.0"}, @@ -89,7 +88,7 @@ stdenv.mkDerivation { else []; buildInputs = [ erlang tree ]; - propagatedBuildInputs = [ registrySnapshot rebar3-nix-bootstrap ]; + propagatedBuildInputs = [ hexRegistrySnapshot rebar3-nix-bootstrap ]; postPatch = '' echo postPatch diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9ebd6d6960f..3ec5d3f1323 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5312,11 +5312,12 @@ in 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 { }; From be5da0449e4d9ce9bb68b7a3eaf099155accf64b Mon Sep 17 00:00:00 2001 From: Eric Merritt Date: Wed, 30 Mar 2016 10:17:59 -0700 Subject: [PATCH 05/96] beam-support: update registry to latest '59b836d' --- doc/beam-users-guide.xml | 376 ++++++++++++++++++ doc/erlang-users-guide.xml | 305 -------------- doc/manual.xml | 2 +- pkgs/development/beam-modules/build-mix.nix | 1 - pkgs/development/beam-modules/default.nix | 1 - .../beam-modules/hex-registry-snapshot.nix | 4 +- .../tools/erlang/cuter/default.nix | 6 +- 7 files changed, 382 insertions(+), 313 deletions(-) create mode 100644 doc/beam-users-guide.xml delete mode 100644 doc/erlang-users-guide.xml 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/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/pkgs/development/beam-modules/build-mix.nix b/pkgs/development/beam-modules/build-mix.nix index 12efc00b050..70c186df8a0 100644 --- a/pkgs/development/beam-modules/build-mix.nix +++ b/pkgs/development/beam-modules/build-mix.nix @@ -8,7 +8,6 @@ , beamDeps ? [] , postPatch ? "" , compilePorts ? false -, installPhase ? null , meta ? {} , ... }@attrs: diff --git a/pkgs/development/beam-modules/default.nix b/pkgs/development/beam-modules/default.nix index 03bab8c4aa9..fec600400cb 100644 --- a/pkgs/development/beam-modules/default.nix +++ b/pkgs/development/beam-modules/default.nix @@ -12,6 +12,5 @@ let ## Non hex packages hex = callPackage ./hex {}; webdriver = callPackage ./webdriver {}; - elli = callPackage ./elli {}; }; in self // self.hexPackages diff --git a/pkgs/development/beam-modules/hex-registry-snapshot.nix b/pkgs/development/beam-modules/hex-registry-snapshot.nix index 378fb382f95..3c2690c0103 100644 --- a/pkgs/development/beam-modules/hex-registry-snapshot.nix +++ b/pkgs/development/beam-modules/hex-registry-snapshot.nix @@ -2,14 +2,14 @@ stdenv.mkDerivation rec { name = "hex-registry"; - rev = "329ae2b"; + rev = "59b836d"; version = "0.0.0+build.${rev}"; src = fetchFromGitHub { owner = "erlang-nix"; repo = "hex-pm-registry-snapshots"; inherit rev; - sha256 = "1rs3z8psfvy10mzlfvkdzbflgikcnq08r38kfi0f8p5wvi8f8hmh"; + sha256 = "1l8m6ckn5ivhfiv3k4dymi6b7wg511fwymnpxd6ymfd39dq0n5b0"; }; installPhase = '' 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 = '' From e214f29168a7c61f65fd960ba35a04b056f6b03c Mon Sep 17 00:00:00 2001 From: Eric Merritt Date: Wed, 30 Mar 2016 10:19:55 -0700 Subject: [PATCH 06/96] elixir: modify elixir to allow debug information This modifies the elixir derivation to allow 'debugInfo' to be set. This will build the elixir library with debug information and allow dializer to be used it derivative projects --- .../development/beam-modules/hex-packages.nix | 12657 ++++++++++++---- .../interpreters/elixir/default.nix | 7 +- 2 files changed, 9786 insertions(+), 2878 deletions(-) diff --git a/pkgs/development/beam-modules/hex-packages.nix b/pkgs/development/beam-modules/hex-packages.nix index d7b635176a8..e7745ce6050 100644 --- a/pkgs/development/beam-modules/hex-packages.nix +++ b/pkgs/development/beam-modules/hex-packages.nix @@ -31,17 +31,17 @@ let abnf = abnf_0_0_1; - absinthe_0_5_2 = callPackage + absinthe_1_0_0 = callPackage ( { buildMix, fetchHex }: buildMix { name = "absinthe"; - version = "0.5.2"; + version = "1.0.0"; src = fetchHex { pkg = "absinthe"; - version = "0.5.2"; + version = "1.0.0"; sha256 = - "2b926ae2b61e0227caf437419d017bb146a9073a67e4e5fa5ed754f3b30994f6"; + "c5606be8b46003e7ac47e87c924908cb390b892fef0eae390deb66f8ee123a1c"; }; meta = { @@ -52,21 +52,42 @@ let } ) {}; - absinthe = absinthe_0_5_2; - - absinthe_plug_0_5_0 = callPackage + absinthe_1_1_2 = callPackage ( - { buildMix, fetchHex, plug_1_1_1, absinthe_0_5_2 }: + { buildMix, 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"; + }; + } + ) {}; + + absinthe = absinthe_1_1_2; + + absinthe_plug_1_0_0 = callPackage + ( + { buildMix, fetchHex, plug_1_1_3, absinthe_1_0_0 }: buildMix { name = "absinthe_plug"; - version = "0.5.0"; + version = "1.0.0"; src = fetchHex { pkg = "absinthe_plug"; - version = "0.5.0"; + version = "1.0.0"; sha256 = - "eaa22a2af708ee3c37217ad5fcf31210347bb7c0807f7c96cffb09b311326291"; + "08459823fe1fd4f0325a8bf0c937a4520583a5a26d73b193040ab30a1dfc0b33"; }; - beamDeps = [ plug_1_1_1 absinthe_0_5_2 ]; + beamDeps = [ plug_1_1_3 absinthe_1_0_0 ]; meta = { description = ''A plug for Absinthe, an experimental GraphQL @@ -77,11 +98,35 @@ let } ) {}; - absinthe_plug = absinthe_plug_0_5_0; + absinthe_plug = absinthe_plug_1_0_0; + + absinthe_relay_0_8_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + absinthe_relay = absinthe_relay_0_8_0; access_token_extractor_0_1_1 = callPackage ( - { buildMix, fetchHex, plug_1_1_1, cowboy_1_0_4 }: + { buildMix, fetchHex, plug_1_1_3, cowboy_1_0_4 }: buildMix { name = "access_token_extractor"; version = "0.1.1"; @@ -91,7 +136,7 @@ let sha256 = "40f76799f8fbb5b03230b31d4d55c5a169e7c3ad82d776a9d87fe0c65c85396d"; }; - beamDeps = [ plug_1_1_1 cowboy_1_0_4 ]; + beamDeps = [ plug_1_1_3 cowboy_1_0_4 ]; meta = { longDescription = ''Simple Plug to extract access_token from @@ -272,9 +317,33 @@ let aeacus = aeacus_0_3_0; + ahab_0_1_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ahab = ahab_0_1_1; + airbrake_0_1_0 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "airbrake"; version = "0.1.0"; @@ -284,7 +353,7 @@ let sha256 = "45d3e2da7f5a8793b9fd7752cbeaa988a848396f44b77d0265f3bed36182d901"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''An Elixir notifier to the Airbrake''; @@ -322,7 +391,7 @@ let airbrakex_0_0_6 = callPackage ( - { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: buildMix { name = "airbrakex"; version = "0.0.6"; @@ -332,7 +401,7 @@ let sha256 = "a8efc0a9a641a6c5ada2585ee5889291b74ded10977af7b1a4ac6bc445d166e8"; }; - beamDeps = [ poison_2_1_0 httpoison_0_8_1 ]; + beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; meta = { description = ''Airbrake Elixir Notifier''; @@ -344,6 +413,34 @@ let airbrakex = airbrakex_0_0_6; + airbrakify_0_0_1 = callPackage + ( + { + buildMix, fetchHex, poison_2_1_0, plug_1_1_3, httpoison_0_8_2 + }: + buildMix { + name = "airbrakify"; + version = "0.0.1"; + src = fetchHex { + pkg = "airbrakify"; + version = "0.0.1"; + sha256 = + "973f895ba83e6dd71cf87182419e144db5c3ac23e43b7a1247e51559bf2737b6"; + }; + beamDeps = [ poison_2_1_0 plug_1_1_3 httpoison_0_8_2 ]; + + meta = { + longDescription = ''A simple Airbrake/Errbit library for + Elixir/Phoenix projects. Currently only supports + error/exception notifications via a Plug.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Diamond/airbrakify"; + }; + } + ) {}; + + airbrakify = airbrakify_0_0_1; + alambic_0_1_0 = callPackage ( { buildMix, fetchHex }: @@ -370,6 +467,52 @@ let alambic = alambic_0_1_0; + alchemic_pinyin_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + alchemic_pinyin = alchemic_pinyin_0_1_0; + + alchemist_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + alchemist = alchemist_0_0_2; + alchemy_0_0_1 = callPackage ( { buildMix, fetchHex, uuid_1_1_3 }: @@ -417,9 +560,34 @@ let aleppo = aleppo_0_9_0; + alexa_0_1_12 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + alexa = alexa_0_1_12; + alexa_plug_0_2_0 = callPackage ( - { buildMix, fetchHex, plug_1_1_1 }: + { buildMix, fetchHex, plug_1_1_3 }: buildMix { name = "alexa_plug"; version = "0.2.0"; @@ -429,7 +597,7 @@ let sha256 = "a78f6fa5e3ba33ce0943f4cb96d6cfcc9b36637a4575314469c8a0d45fff40d0"; }; - beamDeps = [ plug_1_1_1 ]; + beamDeps = [ plug_1_1_3 ]; meta = { longDescription = ''A simple set of plugs and utilities for @@ -443,17 +611,42 @@ let alexa_plug = alexa_plug_0_2_0; - algae_0_9_1 = callPackage + alexa_web_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + alexa_web = alexa_web_0_0_2; + + algae_0_10_0 = callPackage ( { buildMix, fetchHex, quark_1_0_2 }: buildMix { name = "algae"; - version = "0.9.1"; + version = "0.10.0"; src = fetchHex { pkg = "algae"; - version = "0.9.1"; + version = "0.10.0"; sha256 = - "6d0877d508bd16098b4fb6d0549c5070b8217016b61ac8b220d9f35f3fb82391"; + "02d89132d99da1e13271007d1109be958ef8b3b7a5e64323299b84d0aa2353e1"; }; beamDeps = [ quark_1_0_2 ]; @@ -465,29 +658,45 @@ let } ) {}; - algae = algae_0_9_1; + algae = algae_0_10_0; - alice_0_1_2 = callPackage + algolia_0_3_1 = callPackage ( - { - buildMix, - fetchHex, - slack_0_4_2, - redix_0_3_4, - poolboy_1_5_1, - poison_2_0_1 - }: + { buildMix, fetchHex, poison_1_0_3, hackney_1_6_0 }: + buildMix { + name = "algolia"; + version = "0.3.1"; + src = fetchHex { + pkg = "algolia"; + version = "0.3.1"; + sha256 = + "a88020c68712d134e66ccde3d2029766249d3da0188da369448a24f66d2f9f6c"; + }; + beamDeps = [ poison_1_0_3 hackney_1_6_0 ]; + + meta = { + description = ''Elixir implementation of Algolia Search API''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/sikanhe/algolia-elixir"; + }; + } + ) {}; + + algolia = algolia_0_3_1; + + alice_0_3_3 = callPackage + ( + { buildMix, fetchHex, slack_0_4_2, redix_0_3_6, poolboy_1_5_1 }: buildMix { name = "alice"; - version = "0.1.2"; + version = "0.3.3"; src = fetchHex { pkg = "alice"; - version = "0.1.2"; + version = "0.3.3"; sha256 = - "badb6a115a8de88bab122b197214881cd64d2aaf48d8004013adbc6a024fb985"; + "637953131f96a877f13661da9640efcca4417c69f51db70db85bfa18648156f8"; }; - beamDeps = [ slack_0_4_2 redix_0_3_4 poolboy_1_5_1 poison_2_0_1 - ]; + beamDeps = [ slack_0_4_2 redix_0_3_6 poolboy_1_5_1 ]; meta = { description = ''A Slack bot''; @@ -497,21 +706,21 @@ let } ) {}; - alice = alice_0_1_2; + alice = alice_0_3_3; - alice_against_humanity_0_0_1 = callPackage + alice_against_humanity_0_1_2 = callPackage ( - { buildMix, fetchHex, alice_0_1_2 }: + { buildMix, fetchHex, alice_0_3_3 }: buildMix { name = "alice_against_humanity"; - version = "0.0.1"; + version = "0.1.2"; src = fetchHex { pkg = "alice_against_humanity"; - version = "0.0.1"; + version = "0.1.2"; sha256 = - "8c9ddbd7b5db3a18740a354b2e385c7e652e820f4262279dfabee36de93c7816"; + "aac5f049b59d0eaaea2383e1fc8fec28125b9a29ffda7fbe214d829738ad3935"; }; - beamDeps = [ alice_0_1_2 ]; + beamDeps = [ alice_0_3_3 ]; meta = { description = ''A handler for the Alice Slack bot. Play Cards @@ -523,21 +732,21 @@ let } ) {}; - alice_against_humanity = alice_against_humanity_0_0_1; + alice_against_humanity = alice_against_humanity_0_1_2; - alice_google_images_0_0_1 = callPackage + alice_google_images_0_1_3 = callPackage ( - { buildMix, fetchHex, alice_0_1_2 }: + { buildMix, fetchHex, alice_0_3_3 }: buildMix { name = "alice_google_images"; - version = "0.0.1"; + version = "0.1.3"; src = fetchHex { pkg = "alice_google_images"; - version = "0.0.1"; + version = "0.1.3"; sha256 = - "ca276e382bde0a996866c7196ae454d3fdc0eb835398e8ece56c24b2c74736cc"; + "04b4e23c44a67c032c1ac8e2da4ca0fca03ec20cf207b4cb40eba0cb17e975e8"; }; - beamDeps = [ alice_0_1_2 ]; + beamDeps = [ alice_0_3_3 ]; meta = { description = ''A handler for the Alice Slack bot. Get random @@ -549,21 +758,21 @@ let } ) {}; - alice_google_images = alice_google_images_0_0_1; + alice_google_images = alice_google_images_0_1_3; - alice_karma_0_0_1 = callPackage + alice_karma_0_1_1 = callPackage ( - { buildMix, fetchHex, alice_0_1_2 }: + { buildMix, fetchHex, alice_0_3_3 }: buildMix { name = "alice_karma"; - version = "0.0.1"; + version = "0.1.1"; src = fetchHex { pkg = "alice_karma"; - version = "0.0.1"; + version = "0.1.1"; sha256 = - "b2c1d8b0b7fe077b2a4bc1f24b01e872e24d4f6c82d50791ef6b3a57fc2af150"; + "c73198e5edb1f5a05e744ca11afa0d2cc58ec183ca0c32bd5e8a01efa7b61559"; }; - beamDeps = [ alice_0_1_2 ]; + beamDeps = [ alice_0_3_3 ]; meta = { longDescription = ''A handler for the Alice Slack bot. Allows @@ -575,7 +784,58 @@ let } ) {}; - alice_karma = alice_karma_0_0_1; + alice_karma = alice_karma_0_1_1; + + alice_shizzle_0_1_2 = callPackage + ( + { buildMix, fetchHex, gizoogle_0_0_2, alice_0_3_3 }: + buildMix { + name = "alice_shizzle"; + version = "0.1.2"; + src = fetchHex { + pkg = "alice_shizzle"; + version = "0.1.2"; + sha256 = + "c98481d59c004f905958b9412bff1d288a649cf373afb4fea307222af2597c19"; + }; + beamDeps = [ gizoogle_0_0_2 alice_0_3_3 ]; + + meta = { + longDescription = ''A handlez fo` tha Alice Slack bot fo` realz. + Uses Gizoogle ta allow you ta drop a rhyme like + a thug n` retrieve links fo` translated sitez''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/notdevinclark/alice_shizzle"; + }; + } + ) {}; + + alice_shizzle = alice_shizzle_0_1_2; + + alice_xkcd_0_0_3 = callPackage + ( + { buildMix, fetchHex, xkcd_0_0_1, alice_0_3_3 }: + buildMix { + name = "alice_xkcd"; + version = "0.0.3"; + src = fetchHex { + pkg = "alice_xkcd"; + version = "0.0.3"; + sha256 = + "13562b43fd99c7d9cdc568d7511c154842b9a59a19eca9df019069193bd94842"; + }; + beamDeps = [ xkcd_0_0_1 alice_0_3_3 ]; + + meta = { + longDescription = ''A handler for the Alice Slack bot. Retrieves + latest, specific and random XKCD comics.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/notdevinclark/alice_xkcd"; + }; + } + ) {}; + + alice_xkcd = alice_xkcd_0_0_3; alphonse_0_1_0 = callPackage ( @@ -602,25 +862,21 @@ let alphonse = alphonse_0_1_0; - amazon_product_advertising_client_0_1_0 = callPackage + amazon_product_advertising_client_0_1_1 = callPackage ( { - buildMix, - fetchHex, - timex_1_0_0_rc4, - sweet_xml_0_6_1, - httpoison_0_8_1 + buildMix, fetchHex, timex_1_0_2, sweet_xml_0_6_1, httpoison_0_8_2 }: buildMix { name = "amazon_product_advertising_client"; - version = "0.1.0"; + version = "0.1.1"; src = fetchHex { pkg = "amazon_product_advertising_client"; - version = "0.1.0"; + version = "0.1.1"; sha256 = - "b50ac32e0386060de093955662a8152bcb446c81c6fa5315ec0cf94586c69c24"; + "406111cedbd475cab29bdcc69f48ddc3670e57d2e3294e8d948c117ae492951c"; }; - beamDeps = [ timex_1_0_0_rc4 sweet_xml_0_6_1 httpoison_0_8_1 ]; + beamDeps = [ timex_1_0_2 sweet_xml_0_6_1 httpoison_0_8_2 ]; meta = { description = ''An Amazon Product Advertising API client for @@ -633,7 +889,7 @@ let ) {}; amazon_product_advertising_client = - amazon_product_advertising_client_0_1_0; + amazon_product_advertising_client_0_1_1; amnesia_0_2_1 = callPackage ( @@ -754,17 +1010,17 @@ let amrita = amrita_0_4_0; - anaphora_0_1_1 = callPackage + anaphora_0_1_2 = callPackage ( { buildMix, fetchHex }: buildMix { name = "anaphora"; - version = "0.1.1"; + version = "0.1.2"; src = fetchHex { pkg = "anaphora"; - version = "0.1.1"; + version = "0.1.2"; sha256 = - "c43d66532152b05caee2cfca06ae1b86bd297c2e67ca358ecdcdc94da57ade83"; + "fb60a214b2be57d7a08aa8237cd7afb009b637563d64ed5e6ec486e36c484001"; }; meta = { @@ -775,7 +1031,31 @@ let } ) {}; - anaphora = anaphora_0_1_1; + anaphora = anaphora_0_1_2; + + anilixir_1_0_0 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: + buildMix { + name = "anilixir"; + version = "1.0.0"; + src = fetchHex { + pkg = "anilixir"; + version = "1.0.0"; + sha256 = + "ee5c6dfa7e5250d8ec5c9b04910e3202788ceeba231cb3ff8b22e479cc64f1c3"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; + + meta = { + description = ''Anilist API client for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/sotojuan/anilixir"; + }; + } + ) {}; + + anilixir = anilixir_1_0_0; anubis_0_1_0 = callPackage ( @@ -869,7 +1149,28 @@ let } ) {}; - apex = apex_0_3_7; + apex_0_4_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + apex = apex_0_4_0; apix_0_1_0 = callPackage ( @@ -896,17 +1197,17 @@ let apix = apix_0_1_0; - apns_0_0_11 = callPackage + apns_0_0_12 = callPackage ( { buildMix, fetchHex, poolboy_1_5_1, poison_1_5_2 }: buildMix { name = "apns"; - version = "0.0.11"; + version = "0.0.12"; src = fetchHex { pkg = "apns"; - version = "0.0.11"; + version = "0.0.12"; sha256 = - "03258b65f3225f47d3f2c23b087f96b904e9f84b5be242e66c0dbfb54c728011"; + "3eb40b6ef9e73a5082593f6ac1e8ba8548bbfd4bff1f3a5c5d5707ac114fc172"; }; beamDeps = [ poolboy_1_5_1 poison_1_5_2 ]; @@ -919,7 +1220,7 @@ let } ) {}; - apns = apns_0_0_11; + apns = apns_0_0_12; apostle_0_0_3 = callPackage ( @@ -969,19 +1270,21 @@ let ar2ecto = ar2ecto_0_1_2; - arc_0_3_0 = callPackage + arc_0_5_1 = callPackage ( - { buildMix, fetchHex, httpoison_0_8_1, ex_aws_0_4_17 }: + { + buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2, ex_aws_0_4_18 + }: buildMix { name = "arc"; - version = "0.3.0"; + version = "0.5.1"; src = fetchHex { pkg = "arc"; - version = "0.3.0"; + version = "0.5.1"; sha256 = - "cc0bb4e31e9b4eccb164959bfc4f438390d5ddaed5762c49761a69d7e2f75e48"; + "21c64533b2b13033c57cbe031bc064a7c3edfa9a1cb52286dfeda7c4c6d83426"; }; - beamDeps = [ httpoison_0_8_1 ex_aws_0_4_17 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ex_aws_0_4_18 ]; meta = { description = ''Flexible file upload and attachment library for @@ -992,11 +1295,11 @@ let } ) {}; - arc = arc_0_3_0; + arc = arc_0_5_1; arc_ecto_0_3_2 = callPackage ( - { buildMix, fetchHex, ecto_2_0_0_beta_0, arc_0_3_0 }: + { buildMix, fetchHex, ecto_2_0_0_beta_2, arc_0_5_1 }: buildMix { name = "arc_ecto"; version = "0.3.2"; @@ -1006,7 +1309,7 @@ let sha256 = "92cb9e81eb75a1a9fdb4f4fc8e83714b9ee67e3ddb96db9d53c46e7002bf7e8d"; }; - beamDeps = [ ecto_2_0_0_beta_0 arc_0_3_0 ]; + beamDeps = [ ecto_2_0_0_beta_2 arc_0_5_1 ]; meta = { description = ''An integration with Arc and Ecto.''; @@ -1040,17 +1343,17 @@ let argent = argent_0_0_1; - argument_parser_0_1_1 = callPackage + argument_parser_0_1_3 = callPackage ( { buildMix, fetchHex }: buildMix { name = "argument_parser"; - version = "0.1.1"; + version = "0.1.3"; src = fetchHex { pkg = "argument_parser"; - version = "0.1.1"; + version = "0.1.3"; sha256 = - "beebcf7216bce18d953a832209ec0e9a3b669f108bf49c09f964060f0a10cb85"; + "2c56a6c9dfa9790aabdb8f9268ac501404376ffb13396ff515e66f1ebf64817d"; }; meta = { @@ -1062,7 +1365,7 @@ let } ) {}; - argument_parser = argument_parser_0_1_1; + argument_parser = argument_parser_0_1_3; array_1_0_1 = callPackage ( @@ -1087,21 +1390,21 @@ let array = array_1_0_1; - artifact_0_1_0 = callPackage + artifact_0_4_0 = callPackage ( { - buildMix, fetchHex, porcelain_2_0_1, poolboy_1_5_1, plug_1_1_1 + buildMix, fetchHex, porcelain_2_0_1, poolboy_1_5_1, plug_1_1_3 }: buildMix { name = "artifact"; - version = "0.1.0"; + version = "0.4.0"; src = fetchHex { pkg = "artifact"; - version = "0.1.0"; + version = "0.4.0"; sha256 = - "1b03c29afa283429fbd158ce70345b0612a6bc87b743164ddc5b86213b42d9f5"; + "6c66a3c745418e1f1207940c3815828d1a0f022d8186e5da593599d1f460197f"; }; - beamDeps = [ porcelain_2_0_1 poolboy_1_5_1 plug_1_1_1 ]; + beamDeps = [ porcelain_2_0_1 poolboy_1_5_1 plug_1_1_3 ]; meta = { description = ''File upload and on-the-fly processing for @@ -1112,7 +1415,7 @@ let } ) {}; - artifact = artifact_0_1_0; + artifact = artifact_0_4_0; aruspex_0_1_0 = callPackage ( @@ -1189,7 +1492,7 @@ let assembla_api_0_1_0 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "assembla_api"; version = "0.1.0"; @@ -1199,7 +1502,7 @@ let sha256 = "b4a3898de536e4820702c0f119993fd2804e91e2525d1e7eba57d8744983ef24"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''Assembla API client''; @@ -1257,6 +1560,31 @@ let atlas = atlas_0_2_0; + auth_test_support_0_0_6 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + auth_test_support = auth_test_support_0_0_6; + authentic_0_0_1 = callPackage ( { buildMix, fetchHex }: @@ -1281,7 +1609,7 @@ let auto_doc_0_0_2 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, plug_1_1_1 }: + { buildMix, fetchHex, poison_1_5_2, plug_1_1_3 }: buildMix { name = "auto_doc"; version = "0.0.2"; @@ -1291,7 +1619,7 @@ let sha256 = "9c4b30c526e59f63173fe2f0d0c360ac678f1e7a11adcf209dfc843a3e63e6f7"; }; - beamDeps = [ poison_1_5_2 plug_1_1_1 ]; + beamDeps = [ poison_1_5_2 plug_1_1_3 ]; meta = { description = ''A package that will create REST API docs based on @@ -1306,7 +1634,7 @@ let autobots_license_0_1_0 = callPackage ( - { buildMix, fetchHex, plug_1_1_1, cowboy_1_0_4 }: + { buildMix, fetchHex, plug_1_1_3, cowboy_1_0_4 }: buildMix { name = "autobots_license"; version = "0.1.0"; @@ -1316,7 +1644,7 @@ let sha256 = "7cfa258ce5eff01018dfd6faf509b430d03770fb733c1b10217b9e52770014b3"; }; - beamDeps = [ plug_1_1_1 cowboy_1_0_4 ]; + beamDeps = [ plug_1_1_3 cowboy_1_0_4 ]; meta = { }; } @@ -1347,21 +1675,21 @@ let avex = avex_0_2_0; - aws_0_0_8 = callPackage + aws_0_0_10 = callPackage ( { - buildMix, fetchHex, timex_1_0_1, poison_1_5_2, httpoison_0_8_1 + buildMix, fetchHex, timex_1_0_2, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "aws"; - version = "0.0.8"; + version = "0.0.10"; src = fetchHex { pkg = "aws"; - version = "0.0.8"; + version = "0.0.10"; sha256 = - "4cd03efff629c01847ec82777ba1af2a8543fde288fe48ab36d9b8aa66ba7e9f"; + "ce2c9ffbaf7b9a3762826a6f8be8ac6ce8d4ef5c74e021514d14d5cafd625d03"; }; - beamDeps = [ timex_1_0_1 poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ timex_1_0_2 poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''AWS clients for Elixir''; @@ -1371,11 +1699,11 @@ let } ) {}; - aws = aws_0_0_8; + aws = aws_0_0_10; aws_auth_0_2_5 = callPackage ( - { buildMix, fetchHex, timex_1_0_1 }: + { buildMix, fetchHex, timex_1_0_2 }: buildMix { name = "aws_auth"; version = "0.2.5"; @@ -1385,7 +1713,7 @@ let sha256 = "646f1f42652adfb329b5eedde28ddda516c6d02dce45932108b85e2d8bd91b0a"; }; - beamDeps = [ timex_1_0_1 ]; + beamDeps = [ timex_1_0_2 ]; meta = { description = ''AWS Signature Version 4 Signing Library''; @@ -1397,7 +1725,32 @@ let aws_auth = aws_auth_0_2_5; - aws_erlang_0_1_0 = callPackage + aws_cli_0_1_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + aws_cli = aws_cli_0_1_0; + + aws_erlang_0_1_1 = callPackage ( { buildMix, @@ -1408,12 +1761,12 @@ let }: buildMix { name = "aws_erlang"; - version = "0.1.0"; + version = "0.1.1"; src = fetchHex { pkg = "aws_erlang"; - version = "0.1.0"; + version = "0.1.1"; sha256 = - "274e5232cda0ae883ffd813eb172dc0c00134ee04b3deaad1f34e1d4b42b282e"; + "5a0f27869ec106eac25fa66aa39f226a2eee3f6b3ab02879e4fa60bab7937709"; }; beamDeps = [ jsx_2_8_0 hackney_1_4_8 erlware_commons_0_18_0 ]; @@ -1425,7 +1778,7 @@ let } ) {}; - aws_erlang = aws_erlang_0_1_0; + aws_erlang = aws_erlang_0_1_1; aws_http_0_2_4 = callPackage ( @@ -1454,7 +1807,7 @@ let b2_0_0_6 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "b2"; version = "0.0.6"; @@ -1464,7 +1817,7 @@ let sha256 = "f8b33d1ec36576dfbca3f2f4c5fad1a9a227207d1ef63b3a388778e8fad3333a"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''Elixir B2 cloud API wrapper''; @@ -1500,7 +1853,7 @@ let balanced_3_1_0 = callPackage ( - { buildMix, fetchHex, poison_1_2_1, httpotion_1_0_0 }: + { buildMix, fetchHex, poison_1_2_1, httpotion_2_2_2 }: buildMix { name = "balanced"; version = "3.1.0"; @@ -1510,7 +1863,7 @@ let sha256 = "f86f199d76ac66407fbb82fb927e999ec4119a617500965b824ceb4071fcd2d2"; }; - beamDeps = [ poison_1_2_1 httpotion_1_0_0 ]; + beamDeps = [ poison_1_2_1 httpotion_2_2_2 ]; meta = { description = ''Balanced API for Elixir''; @@ -1522,19 +1875,19 @@ let balanced = balanced_3_1_0; - bamboo_0_2_0 = callPackage + bamboo_0_3_2 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_7_5 }: + { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: buildMix { name = "bamboo"; - version = "0.2.0"; + version = "0.3.2"; src = fetchHex { pkg = "bamboo"; - version = "0.2.0"; + version = "0.3.2"; sha256 = - "f75790da6235225840be3cf6ea9dcfe91abb51bb20ab8e42425a4d207296bbe5"; + "1b4bfdddae49f6fc66616c63b4d2d9a0e99d40a08619004f5c4f4e4aebfa20ed"; }; - beamDeps = [ poison_1_5_2 httpoison_0_7_5 ]; + beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; meta = { longDescription = ''Straightforward, composable, and adapter @@ -1547,7 +1900,59 @@ let } ) {}; - bamboo = bamboo_0_2_0; + bamboo_0_4_0 = callPackage + ( + { + buildMix, fetchHex, poison_2_1_0, plug_1_1_3, httpoison_0_8_2 + }: + buildMix { + name = "bamboo"; + version = "0.4.0"; + src = fetchHex { + pkg = "bamboo"; + version = "0.4.0"; + sha256 = + "5227b1e65a8634da0f46e1eb41a7ca44d3f6de33bfadf950da16e65e9c8428a7"; + }; + beamDeps = [ poison_2_1_0 plug_1_1_3 httpoison_0_8_2 ]; + + meta = { + longDescription = ''Straightforward, composable, and adapter + based Elixir email library for people that love + piping. Adapters for Mandrill, Sendgrid, + in-memory, and test.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/paulcsmith/bamboo"; + }; + } + ) {}; + + bamboo = bamboo_0_4_0; + + bamboo_sendgrid_0_1_0 = callPackage + ( + { + buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2, bamboo_0_3_2 + }: + buildMix { + name = "bamboo_sendgrid"; + version = "0.1.0"; + src = fetchHex { + pkg = "bamboo_sendgrid"; + version = "0.1.0"; + sha256 = + "ee44ac3f096777064c4cf02df238276338914295f5b17caf38192789a590825c"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 bamboo_0_3_2 ]; + + meta = { + description = ''A SendGrid adapter for Bamboo.''; + license = stdenv.lib.licenses.publicDomain; + }; + } + ) {}; + + bamboo_sendgrid = bamboo_sendgrid_0_1_0; bandwidth_1_2_1 = callPackage ( @@ -1784,19 +2189,19 @@ let base58check = base58check_0_1_0; - base62_1_1_0 = callPackage + base62_1_2_0 = callPackage ( - { buildMix, fetchHex, custom_base_0_1_0 }: + { buildMix, fetchHex, custom_base_0_2_0 }: buildMix { name = "base62"; - version = "1.1.0"; + version = "1.2.0"; src = fetchHex { pkg = "base62"; - version = "1.1.0"; + version = "1.2.0"; sha256 = - "3e6d5e21aed7875951236ae25a69ac5a22767c685e4e49e973918ae4ba7d9a2a"; + "14aac55c7978b7a710906ee29df65ba1cee5af2d43efe236c96311696618088b"; }; - beamDeps = [ custom_base_0_1_0 ]; + beamDeps = [ custom_base_0_2_0 ]; meta = { description = ''Base62 encoder/decoder in pure Elixir.''; @@ -1806,7 +2211,7 @@ let } ) {}; - base62 = base62_1_1_0; + base62 = base62_1_2_0; base64url_0_0_1 = callPackage ( @@ -1831,6 +2236,53 @@ let base64url = base64url_0_0_1; + basehangul_0_2_0 = callPackage + ( + { buildMix, fetchHex, iconv_1_0_0 }: + buildMix { + name = "basehangul"; + version = "0.2.0"; + src = fetchHex { + pkg = "basehangul"; + version = "0.2.0"; + sha256 = + "ea7b03e7407e4c24778a40eb3edf305cf10897057ff14718344f83badb3525cc"; + }; + beamDeps = [ iconv_1_0_0 ]; + + meta = { + description = ''Elixir implementation of BaseHangul.''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/Dalgona/basehangul"; + }; + } + ) {}; + + basehangul = basehangul_0_2_0; + + basho_poolboy_0_8_1_p3 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + basho_poolboy = basho_poolboy_0_8_1_p3; + basho_stats_1_0_3 = callPackage ( { buildRebar3, fetchHex }: @@ -1856,7 +2308,7 @@ let basic_auth_1_0_0 = callPackage ( - { buildMix, fetchHex, plug_0_8_1, cowboy_1_0_4 }: + { buildMix, fetchHex, plug_0_5_2, cowboy_1_0_4 }: buildMix { name = "basic_auth"; version = "1.0.0"; @@ -1866,7 +2318,7 @@ let sha256 = "e8ed4b5ca05c06dc1c19c69f1f00611e93d17bfa913eefbb6bed4a209af3a5a9"; }; - beamDeps = [ plug_0_8_1 cowboy_1_0_4 ]; + beamDeps = [ plug_0_5_2 cowboy_1_0_4 ]; meta = { description = ''Basic Authentication Plug''; @@ -1905,7 +2357,7 @@ let battlenet_0_0_2 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "battlenet"; version = "0.0.2"; @@ -1915,7 +2367,7 @@ let sha256 = "cdd4e182da5a2db478e0da9ac1a467fc8f2b8ec638e3e38dd7962ff3fe8c9342"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''Elixir library for the Battle.net API.''; @@ -1995,13 +2447,76 @@ let bbmustache = bbmustache_1_1_0; + bbsmq_0_0_4 = callPackage + ( + { + buildMix, + fetchHex, + uuid_1_1_3, + poison_2_1_0, + httpoison_0_8_2, + exprotobuf_1_0_0, + amqp_0_1_4 + }: + buildMix { + name = "bbsmq"; + version = "0.0.4"; + src = fetchHex { + pkg = "bbsmq"; + version = "0.0.4"; + sha256 = + "94fc10b314f176c9d4d874c387d41b2cb4bab68d749f3e3ce50096167eb6900c"; + }; + beamDeps = [ + uuid_1_1_3 + poison_2_1_0 + httpoison_0_8_2 + exprotobuf_1_0_0 + amqp_0_1_4 + ]; + + meta = { + description = ''Translate CloudFoundry BBS events and endpoints + into rabbitmq messages.''; + + }; + } + ) {}; + + bbsmq = bbsmq_0_0_4; + + bcrypt_0_5_0_p3a = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "bcrypt"; + version = "0.5.0-p3a"; + src = fetchHex { + pkg = "bcrypt"; + version = "0.5.0-p3a"; + sha256 = + "492decdc633399b356a3bbfe8279c10a49b1040fc082c8cbf2d30b41ff88f310"; + }; + compilePorts = true; + + 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"; + }; + } + ) {}; + + bcrypt = bcrypt_0_5_0_p3a; + beaker_1_2_0 = callPackage ( { buildMix, fetchHex, phoenix_1_1_4, - ecto_2_0_0_beta_0, + ecto_2_0_0_beta_2, bureaucrat_0_1_2 }: buildMix { @@ -2013,7 +2528,7 @@ let sha256 = "f792ee661db3e31f4c6cacae992e81bbcc302ce05aec29c16bab9853bd763438"; }; - beamDeps = [ phoenix_1_1_4 ecto_2_0_0_beta_0 bureaucrat_0_1_2 ]; + beamDeps = [ phoenix_1_1_4 ecto_2_0_0_beta_2 bureaucrat_0_1_2 ]; meta = { longDescription = ''Measure your Elixir! A metrics library that @@ -2075,6 +2590,31 @@ let bear = bear_0_8_3; + belixir_0_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + belixir = belixir_0_2_0; + belvedere_0_0_1 = callPackage ( { buildMix, fetchHex }: @@ -2174,17 +2714,17 @@ let benchwarmer = benchwarmer_0_0_2; - bencode_0_2_0 = callPackage + bencode_0_3_0 = callPackage ( { buildMix, fetchHex, eqc_ex_1_2_4 }: buildMix { name = "bencode"; - version = "0.2.0"; + version = "0.3.0"; src = fetchHex { pkg = "bencode"; - version = "0.2.0"; + version = "0.3.0"; sha256 = - "78ec5fbfa24cb98795d80d4982fc30563af4d7cd7c77ee86a3bffeb1b3a312dd"; + "98d397fd0a13ba47bfb51927fede25c780539d38946e6d53c6b83c998636a002"; }; beamDeps = [ eqc_ex_1_2_4 ]; @@ -2200,7 +2740,7 @@ let } ) {}; - bencode = bencode_0_2_0; + bencode = bencode_0_3_0; bencoder_0_0_7 = callPackage ( @@ -2248,6 +2788,31 @@ let bencodex = bencodex_1_0_0; + bento_0_9_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + bento = bento_0_9_0; + bert_0_1_0 = callPackage ( { buildRebar3, fetchHex }: @@ -2296,7 +2861,7 @@ let bgg_0_1_0 = callPackage ( - { buildMix, fetchHex, quinn_0_0_4, httpoison_0_8_1 }: + { buildMix, fetchHex, quinn_0_0_4, httpoison_0_8_2 }: buildMix { name = "bgg"; version = "0.1.0"; @@ -2306,7 +2871,7 @@ let sha256 = "d26593e7ebb23f76e6c0e73a9a1acb6a45ec25ea53b6ee716a2291f07c5f1fb6"; }; - beamDeps = [ quinn_0_0_4 httpoison_0_8_1 ]; + beamDeps = [ quinn_0_0_4 httpoison_0_8_2 ]; meta = { description = ''A BoardGameGeek API wrapper in Elixir @@ -2319,6 +2884,56 @@ let bgg = bgg_0_1_0; + big_query_0_0_2 = callPackage + ( + { + buildMix, fetchHex, poison_2_1_0, jose_1_4_2, httpoison_0_8_2 + }: + buildMix { + name = "big_query"; + version = "0.0.2"; + src = fetchHex { + pkg = "big_query"; + version = "0.0.2"; + sha256 = + "db969991b701113c0991ae0f468a85abfbf1bdaf0bc2706fd8357e15dcfe138a"; + }; + beamDeps = [ poison_2_1_0 jose_1_4_2 httpoison_0_8_2 ]; + + meta = { + description = ''A Google BigQuery API client.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/jordan0day/big_query"; + }; + } + ) {}; + + big_query = big_query_0_0_2; + + bigflake_0_3_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + bigflake = bigflake_0_3_0; + billiards_0_0_1 = callPackage ( { buildMix, fetchHex }: @@ -2361,30 +2976,27 @@ let bin_format = bin_format_0_0_1; - bing_translator_0_2_3 = callPackage + bing_translator_0_2_6 = callPackage ( { buildMix, fetchHex, - timex_1_0_0_rc4, + timex_1_0_2, poison_1_5_2, - httpoison_0_8_1, - floki_0_7_1 + httpoison_0_8_2, + floki_0_8_0 }: buildMix { name = "bing_translator"; - version = "0.2.3"; + version = "0.2.6"; src = fetchHex { pkg = "bing_translator"; - version = "0.2.3"; + version = "0.2.6"; sha256 = - "a1a953a96728e0531c41c96befe4301d80370c2f09a2ed412a8c8a817d7333c9"; + "d25df43466458eca86c9d5aa22d94bc41c3d182949a9ec36e9387ffe442e540e"; }; beamDeps = [ - timex_1_0_0_rc4 - poison_1_5_2 - httpoison_0_8_1 - floki_0_7_1 + timex_1_0_2 poison_1_5_2 httpoison_0_8_2 floki_0_8_0 ]; meta = { @@ -2397,7 +3009,7 @@ let } ) {}; - bing_translator = bing_translator_0_2_3; + bing_translator = bing_translator_0_2_6; binstructor_0_0_1 = callPackage ( @@ -2474,6 +3086,30 @@ let bitbucket_api = bitbucket_api_0_0_2; + bitcask_2_0_2 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "bitcask"; + version = "2.0.2"; + src = fetchHex { + pkg = "bitcask"; + version = "2.0.2"; + sha256 = + "666bd79d17faabd62a626ed6fc98176b818266f7bb9639d76244f003ed5b2fe2"; + }; + compilePorts = true; + + meta = { + description = ''Bitcask key value store''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/basho/bitcask"; + }; + } + ) {}; + + bitcask = bitcask_2_0_2; + bitfield_1_0_0 = callPackage ( { buildMix, fetchHex }: @@ -2525,7 +3161,7 @@ let bitpay_0_2_5 = callPackage ( { - buildMix, fetchHex, uuid_0_1_5, httpotion_1_0_0, exjsx_3_1_0 + buildMix, fetchHex, uuid_1_0_0, httpotion_2_2_2, exjsx_3_1_0 }: buildMix { name = "bitpay"; @@ -2536,7 +3172,7 @@ let sha256 = "25a0b2dbf6619ddc0db4cf1ee03b3d097adac47dc47c65b71a2661eba0f2e3a2"; }; - beamDeps = [ uuid_0_1_5 httpotion_1_0_0 exjsx_3_1_0 ]; + beamDeps = [ uuid_1_0_0 httpotion_2_2_2 exjsx_3_1_0 ]; meta = { longDescription = ''Library to allow elixir apps to easily use @@ -2557,11 +3193,11 @@ let { buildMix, fetchHex, - timex_ecto_0_5_0, + timex_ecto_1_0_4, timex_0_19_5, secure_random_0_2_0, postgrex_0_11_1, - ecto_2_0_0_beta_0, + ecto_2_0_0_beta_2, earmark_0_2_1, comeonin_1_6_0 }: @@ -2575,11 +3211,11 @@ let "deecf1248ec5ef7911e3b440a968d8cb2dae54d50e36bf80173a2593f0e4ecde"; }; beamDeps = [ - timex_ecto_0_5_0 + timex_ecto_1_0_4 timex_0_19_5 secure_random_0_2_0 postgrex_0_11_1 - ecto_2_0_0_beta_0 + ecto_2_0_0_beta_2 earmark_0_2_1 comeonin_1_6_0 ]; @@ -2617,7 +3253,7 @@ let blaguth_1_2_1 = callPackage ( - { buildMix, fetchHex, plug_1_1_1, cowboy_1_0_4 }: + { buildMix, fetchHex, plug_1_1_3, cowboy_1_0_4 }: buildMix { name = "blaguth"; version = "1.2.1"; @@ -2627,7 +3263,7 @@ let sha256 = "2900dc5b7c6f7810bdf5e0ede8749632997811ae5b72ada34f59699b4310a65a"; }; - beamDeps = [ plug_1_1_1 cowboy_1_0_4 ]; + beamDeps = [ plug_1_1_3 cowboy_1_0_4 ]; meta = { description = ''Basic Access Authentication in Plug @@ -2640,6 +3276,29 @@ let blaguth = blaguth_1_2_1; + blake2_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + blake2 = blake2_0_0_1; + blanket_0_3_1 = callPackage ( { buildMix, fetchHex }: @@ -2664,6 +3323,30 @@ let blanket = blanket_0_3_1; + blaze_cloud_0_0_1 = callPackage + ( + { buildMix, fetchHex, poison_2_0_1, httpoison_0_8_2 }: + buildMix { + name = "blaze_cloud"; + version = "0.0.1"; + src = fetchHex { + pkg = "blaze_cloud"; + version = "0.0.1"; + sha256 = + "c5a26f194691d7c40a008c5aded034ca0a43d4fa6a9173952333479cf2661b2b"; + }; + beamDeps = [ poison_2_0_1 httpoison_0_8_2 ]; + + meta = { + description = ''Elixir Library for Backblaze B2 Cloud Storage.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/PerishableDave/blaze_cloud"; + }; + } + ) {}; + + blaze_cloud = blaze_cloud_0_0_1; + block_timer_0_0_1 = callPackage ( { buildMix, fetchHex }: @@ -2688,6 +3371,32 @@ let block_timer = block_timer_0_0_1; + blockchain_info_0_0_1 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: + buildMix { + name = "blockchain_info"; + version = "0.0.1"; + src = fetchHex { + pkg = "blockchain_info"; + version = "0.0.1"; + sha256 = + "22efbcc8df574ddddb9d548150fa704966a59397c103ce58d82a6597cbd5ccd2"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; + + meta = { + longDescription = ''WIP BlockchainInfo API wrapper for Elixir. + Provides access to bitcoin blockchain data.''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/cyberpunk-ventures/blockchain_info_ex"; + }; + } + ) {}; + + blockchain_info = blockchain_info_0_0_1; + blocking_queue_1_3_0 = callPackage ( { buildMix, fetchHex }: @@ -2715,7 +3424,7 @@ let bloodhound_0_1_1 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "bloodhound"; version = "0.1.1"; @@ -2725,7 +3434,7 @@ let sha256 = "6aaab638fe90fc3714b650b659df774c7cdb12d098fee3910952e0a0f8fcd6ec"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''An ElasticSearch library for Elixir that can be @@ -2762,17 +3471,17 @@ let bloomex = bloomex_1_0_0; - bmark_1_0_2 = callPackage + bmark_1_0_3 = callPackage ( { buildMix, fetchHex }: buildMix { name = "bmark"; - version = "1.0.2"; + version = "1.0.3"; src = fetchHex { pkg = "bmark"; - version = "1.0.2"; + version = "1.0.3"; sha256 = - "70204b013c75d3b95d58acc42ff62461eaebe1e5345ef029fe59ba30a15b1747"; + "243b04d2e2431d01d93f442896d5e6ee52396782c161ef0a0e4f51a353393d93"; }; meta = { @@ -2784,7 +3493,34 @@ let } ) {}; - bmark = bmark_1_0_2; + bmark = bmark_1_0_3; + + bno055_0_0_1 = callPackage + ( + { buildMix, fetchHex, gproc_0_5_0, elixir_ale_0_4_1 }: + buildMix { + name = "bno055"; + version = "0.0.1"; + src = fetchHex { + pkg = "bno055"; + version = "0.0.1"; + sha256 = + "07f97909748be55dc7e3f31b9fbf708c5b43e9ba229f82b674aaa0ad57f35ef6"; + }; + beamDeps = [ gproc_0_5_0 elixir_ale_0_4_1 ]; + + meta = { + longDescription = ''OTP application for reading the BNO-055 + absolute orientation sensor. Euler angles are + read at 20hz and published to a configured local + `gproc` property.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/TattdCodeMonkey/bno055"; + }; + } + ) {}; + + bno055 = bno055_0_0_1; boltun_0_0_4 = callPackage ( @@ -2837,7 +3573,7 @@ let botan_0_1_2 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "botan"; version = "0.1.2"; @@ -2847,7 +3583,7 @@ let sha256 = "43541b5c52c91e46295a015f58857c347c85a7753d7c3cd3a1f835b25fdedaa9"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''Elixir wrapper for Botan.io''; @@ -2892,10 +3628,10 @@ let { buildMix, fetchHex, - redix_0_3_4, + redix_0_3_6, poolboy_1_5_1, poison_1_5_2, - plug_1_1_1, + plug_1_1_3, phoenix_1_1_4 }: buildMix { @@ -2908,10 +3644,10 @@ let "82979e9c8df401cbf5eb2dd09dff3952933cf2efd9135be1f0cb51ec04deb996"; }; beamDeps = [ - redix_0_3_4 + redix_0_3_6 poolboy_1_5_1 poison_1_5_2 - plug_1_1_1 + plug_1_1_3 phoenix_1_1_4 ]; @@ -2926,19 +3662,43 @@ let bouncer = bouncer_0_1_5; - braintree_0_3_1 = callPackage + brady_0_0_2 = callPackage ( - { buildMix, fetchHex, httpoison_0_8_1 }: + { buildMix, fetchHex, phoenix_1_1_4 }: + buildMix { + name = "brady"; + version = "0.0.2"; + src = fetchHex { + pkg = "brady"; + version = "0.0.2"; + sha256 = + "90518fe90719cfb64d3b3d8a2947f14b2d8657414d9e9bb86cb03e7901334b0d"; + }; + beamDeps = [ phoenix_1_1_4 ]; + + meta = { + description = ''Template helpers for Phoenix applications''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/thoughtbot/brady"; + }; + } + ) {}; + + brady = brady_0_0_2; + + braintree_0_3_2 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_2 }: buildMix { name = "braintree"; - version = "0.3.1"; + version = "0.3.2"; src = fetchHex { pkg = "braintree"; - version = "0.3.1"; + version = "0.3.2"; sha256 = - "a93e78cbf8a1407035d8bcf6e7d53fc2ef2f716f3bd49b833ae105fa06a40ec1"; + "cfc2aa7fc94c74eeb41c34a401fa8784f9c423268086c797949d0f0dc5c657a3"; }; - beamDeps = [ httpoison_0_8_1 ]; + beamDeps = [ httpoison_0_8_2 ]; meta = { description = ''Native Braintree client library for Elixir''; @@ -2948,7 +3708,7 @@ let } ) {}; - braintree = braintree_0_3_1; + braintree = braintree_0_3_2; braise_0_3_2 = callPackage ( @@ -2975,17 +3735,17 @@ let braise = braise_0_3_2; - brcpfcnpj_0_0_9 = callPackage + brcpfcnpj_0_1_0 = callPackage ( { buildMix, fetchHex }: buildMix { name = "brcpfcnpj"; - version = "0.0.9"; + version = "0.1.0"; src = fetchHex { pkg = "brcpfcnpj"; - version = "0.0.9"; + version = "0.1.0"; sha256 = - "d5b7c8b473a07c3c91aa450b91ef9899a423c3f36a3027d4be5da25fdf5cef4b"; + "19ba4d572c93c70d571a36d6ada2fca4d03330d8f96c6b7d8e4c47fa9f809c90"; }; meta = { @@ -2998,21 +3758,21 @@ let } ) {}; - brcpfcnpj = brcpfcnpj_0_0_9; + brcpfcnpj = brcpfcnpj_0_1_0; - breadcrumble_1_0_2 = callPackage + breadcrumble_1_0_3 = callPackage ( - { buildMix, fetchHex, plug_1_1_1 }: + { buildMix, fetchHex, plug_1_1_3 }: buildMix { name = "breadcrumble"; - version = "1.0.2"; + version = "1.0.3"; src = fetchHex { pkg = "breadcrumble"; - version = "1.0.2"; + version = "1.0.3"; sha256 = - "8265e64e363df90e556125e091ba52e92a8eeaad57cc3efdd926aa0b069ad78f"; + "f1d3ec0d3bf74670c58d4ff6c1d10cad0757c003b56ba9f77e3d76a05ac68be3"; }; - beamDeps = [ plug_1_1_1 ]; + beamDeps = [ plug_1_1_3 ]; meta = { description = ''Elixir port of Breadcrumble library''; @@ -3022,7 +3782,7 @@ let } ) {}; - breadcrumble = breadcrumble_1_0_2; + breadcrumble = breadcrumble_1_0_3; briefly_0_3_0 = callPackage ( @@ -3116,19 +3876,42 @@ let bstr = bstr_0_3_0; - bugsnag_1_1_1 = callPackage + buffer_0_3_6 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, 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"; + }; + } + ) {}; + + buffer = buffer_0_3_6; + + bugsnag_1_2_0 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "bugsnag"; - version = "1.1.1"; + version = "1.2.0"; src = fetchHex { pkg = "bugsnag"; - version = "1.1.1"; + version = "1.2.0"; sha256 = - "ed4d8876e9bdf841f6f08e6562ad9455ef3d06fb9d403702e7e24611fbe96247"; + "23c6e8eb827ec1294684b5fe788d4d1cd670804ddfb74bb2bd427aed44a68f05"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''An Elixir interface to the Bugsnag API''; @@ -3138,22 +3921,22 @@ let } ) {}; - bugsnag = bugsnag_1_1_1; + bugsnag = bugsnag_1_2_0; - bugsnag_erl_0_1_2 = callPackage + bugsnag_erl_0_1_3 = callPackage ( - { buildRebar3, fetchHex, lager_3_0_1, jsx_2_8_0 }: + { buildRebar3, fetchHex, lager_2_1_1, jsx_2_8_0 }: buildRebar3 { name = "bugsnag_erl"; - version = "0.1.2"; + version = "0.1.3"; src = fetchHex { pkg = "bugsnag_erl"; - version = "0.1.2"; + version = "0.1.3"; sha256 = - "c54c6e7fcb5e74b1d3611371ce7bd73fb31aaf27f909398a286683802c541851"; + "02b400b8f7f606c580ca81311279ef8bbe99c2cfc32b0b956af1644594ddaf2b"; }; - beamDeps = [ lager_3_0_1 jsx_2_8_0 ]; + beamDeps = [ lager_2_1_1 jsx_2_8_0 ]; meta = { description = ''Bugsnag notifier''; @@ -3163,7 +3946,30 @@ let } ) {}; - bugsnag_erl = bugsnag_erl_0_1_2; + bugsnag_erl = bugsnag_erl_0_1_3; + + build_client_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + build_client = build_client_0_0_1; bump_0_1_0 = callPackage ( @@ -3214,7 +4020,7 @@ let bureaucrat_0_1_2 = callPackage ( - { buildMix, fetchHex, plug_0_8_1 }: + { buildMix, fetchHex, plug_0_5_2 }: buildMix { name = "bureaucrat"; version = "0.1.2"; @@ -3224,7 +4030,7 @@ let sha256 = "cd746f6f9ee9927b1b81ae7834c7b0a045df7e53151674d8b3d8de5832ec7402"; }; - beamDeps = [ plug_0_8_1 ]; + beamDeps = [ plug_0_5_2 ]; meta = { description = ''Generate Phoenix API documentation from tests''; @@ -3236,17 +4042,17 @@ let bureaucrat = bureaucrat_0_1_2; - butler_0_6_2 = callPackage + butler_0_7_0 = callPackage ( { buildMix, fetchHex, poison_1_5_2, httpoison_0_7_5 }: buildMix { name = "butler"; - version = "0.6.2"; + version = "0.7.0"; src = fetchHex { pkg = "butler"; - version = "0.6.2"; + version = "0.7.0"; sha256 = - "28d681c4986c6711bf72c645084a83ea108a35039cedf5d03d6779d86cb7db19"; + "0a6ab3880449370d4fe40355372c8929ff16031fd5d118a8936739cb034b45bd"; }; beamDeps = [ poison_1_5_2 httpoison_0_7_5 ]; @@ -3311,7 +4117,7 @@ let butler_cowsay_0_2_1 = callPackage ( - { buildMix, fetchHex, cowsay_0_0_1, butler_0_6_2 }: + { buildMix, fetchHex, cowsay_0_0_1, butler_0_7_0 }: buildMix { name = "butler_cowsay"; version = "0.2.1"; @@ -3321,7 +4127,7 @@ let sha256 = "d5b6ef82ebd387666c8b8d4fd93df3d11ff2ed7a129ae3aa7d7faac9ae803195"; }; - beamDeps = [ cowsay_0_0_1 butler_0_6_2 ]; + beamDeps = [ cowsay_0_0_1 butler_0_7_0 ]; meta = { description = ''ButlerCowsay plugin for Butler SlackBot''; @@ -3377,7 +4183,7 @@ let bypass_0_5_1 = callPackage ( - { buildMix, fetchHex, plug_1_1_1, cowboy_1_0_4 }: + { buildMix, fetchHex, plug_1_1_3, cowboy_1_0_4 }: buildMix { name = "bypass"; version = "0.5.1"; @@ -3387,7 +4193,7 @@ let sha256 = "bbff87f453cd98a81c9caeb305e5bcee25fe4fe31089cb19127a36dd224c2454"; }; - beamDeps = [ plug_1_1_1 cowboy_1_0_4 ]; + beamDeps = [ plug_1_1_3 cowboy_1_0_4 ]; meta = { longDescription = ''Bypass provides a quick way to create a @@ -3431,19 +4237,43 @@ let cache_tab = cache_tab_1_0_2; - calecto_0_5_0 = callPackage + cachex_0_8_0 = callPackage ( - { buildMix, fetchHex, ecto_1_1_3, calendar_0_12_4 }: + { buildMix, 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"; + }; + } + ) {}; + + cachex = cachex_0_8_0; + + calecto_0_5_2 = callPackage + ( + { buildMix, fetchHex, ecto_0_2_7, calendar_0_12_4 }: buildMix { name = "calecto"; - version = "0.5.0"; + version = "0.5.2"; src = fetchHex { pkg = "calecto"; - version = "0.5.0"; + version = "0.5.2"; sha256 = - "3414a87a3a355eeb8116c2fc993e3827772f1dc9064aab00a81a76a5ef00ab5b"; + "ed21765dea78d2b3888a11c83c9642aee0624098625bc32b0eb642b9e3578ef7"; }; - beamDeps = [ ecto_1_1_3 calendar_0_12_4 ]; + beamDeps = [ ecto_0_2_7 calendar_0_12_4 ]; meta = { longDescription = ''Library for using Calendar with Ecto. This @@ -3455,42 +4285,11 @@ let } ) {}; - calecto = calecto_0_5_0; - - calendar_0_12_3 = callPackage - ( - { buildMix, fetchHex, tzdata_0_1_8 }: - buildMix { - name = "calendar"; - version = "0.12.3"; - src = fetchHex { - pkg = "calendar"; - version = "0.12.3"; - sha256 = - "19aba4c9660239a710ac70e9bef56d8c8db73ebb48a2c89e3ac02cec64838aad"; - }; - beamDeps = [ tzdata_0_1_8 ]; - - 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"; - }; - } - ) {}; + calecto = calecto_0_5_2; calendar_0_12_4 = callPackage ( - { buildMix, fetchHex, tzdata_0_1_8 }: + { buildMix, fetchHex, tzdata_0_1_201603 }: buildMix { name = "calendar"; version = "0.12.4"; @@ -3500,7 +4299,7 @@ let sha256 = "1df7cc23b7dfa3228498fff3bd298495d8431433be94db62a60e93ffa455a060"; }; - beamDeps = [ tzdata_0_1_8 ]; + beamDeps = [ tzdata_0_1_201603 ]; meta = { longDescription = ''Calendar is a datetime library for Elixir. @@ -3519,11 +4318,42 @@ let } ) {}; - calendar = calendar_0_12_4; + calendar_0_13_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + calendar = calendar_0_13_2; calendar_translations_0_0_3 = callPackage ( - { buildMix, fetchHex, calendar_0_12_4 }: + { buildMix, fetchHex, calendar_0_13_2 }: buildMix { name = "calendar_translations"; version = "0.0.3"; @@ -3533,7 +4363,7 @@ let sha256 = "b232912959f7f645a34e1a6ceca4657156e64bb5db3573fbc61c603c648dcb09"; }; - beamDeps = [ calendar_0_12_4 ]; + beamDeps = [ calendar_0_13_2 ]; meta = { description = ''Translations for the Calendar library.''; @@ -3591,21 +4421,21 @@ let canada = canada_1_0_0; - canary_0_14_0 = callPackage + canary_0_14_1 = callPackage ( { - buildMix, fetchHex, plug_1_1_1, ecto_2_0_0_beta_0, canada_1_0_0 + buildMix, fetchHex, plug_1_1_3, ecto_2_0_0_beta_2, canada_1_0_0 }: buildMix { name = "canary"; - version = "0.14.0"; + version = "0.14.1"; src = fetchHex { pkg = "canary"; - version = "0.14.0"; + version = "0.14.1"; sha256 = - "5002649bbe4b9c7e00fb7f0c499c109eb34732f50f69ede797ed1e768e4f0029"; + "8ee0f96f4f98c0c0188eea68b2d90adae8e6af527eb04ee8623811bd58be7f0c"; }; - beamDeps = [ plug_1_1_1 ecto_2_0_0_beta_0 canada_1_0_0 ]; + beamDeps = [ plug_1_1_3 ecto_2_0_0_beta_2 canada_1_0_0 ]; meta = { longDescription = ''An authorization library to restrict what @@ -3617,7 +4447,7 @@ let } ) {}; - canary = canary_0_14_0; + canary = canary_0_14_1; carrier_1_0_4 = callPackage ( @@ -3667,6 +4497,54 @@ let cartographer = cartographer_0_0_1; + cassette_1_0_0 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_2, exml_0_1_0 }: + buildMix { + name = "cassette"; + version = "1.0.0"; + src = fetchHex { + pkg = "cassette"; + version = "1.0.0"; + sha256 = + "cbb9e1bffc2161ac51f6b8b376159e6bf1f39a2f41a9f07f861653cfb4c4e531"; + }; + beamDeps = [ httpoison_0_8_2 exml_0_1_0 ]; + + meta = { + description = ''A CAS client and validation library''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/locaweb/elixir-cassette"; + }; + } + ) {}; + + cassette = cassette_1_0_0; + + cassette_plug_1_0_1 = callPackage + ( + { buildMix, fetchHex, plug_1_1_3, cassette_1_0_0 }: + buildMix { + name = "cassette_plug"; + version = "1.0.1"; + src = fetchHex { + pkg = "cassette_plug"; + version = "1.0.1"; + sha256 = + "7c6ca0bacb3660efd1367b95c8a2d70e485e2842b9bfc87bdeb85c33882dc164"; + }; + beamDeps = [ plug_1_1_3 cassette_1_0_0 ]; + + meta = { + description = ''An auth Plug using Cassette''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/locaweb/cassette-plug"; + }; + } + ) {}; + + cassette_plug = cassette_plug_1_0_1; + cassius_0_0_1 = callPackage ( { buildMix, fetchHex }: @@ -3717,7 +4595,7 @@ let caylir_0_2_0 = callPackage ( { - buildMix, fetchHex, poolboy_1_5_1, poison_1_5_2, hackney_1_4_8 + buildMix, fetchHex, poolboy_1_5_1, poison_1_5_2, hackney_1_6_0 }: buildMix { name = "caylir"; @@ -3728,7 +4606,7 @@ let sha256 = "b3699171f2bef699ce1968394cb2aee3b5ec7db529a395d8bf7d85163067f888"; }; - beamDeps = [ poolboy_1_5_1 poison_1_5_2 hackney_1_4_8 ]; + beamDeps = [ poolboy_1_5_1 poison_1_5_2 hackney_1_6_0 ]; meta = { description = ''Cayley driver for Elixir''; @@ -3763,6 +4641,48 @@ let ccc = ccc_0_0_2; + cep_0_0_1 = callPackage + ( + { + buildMix, + fetchHex, + sweet_xml_0_6_1, + poolboy_1_5_1, + poison_2_1_0, + httpoison_0_8_2, + codepagex_0_1_2 + }: + buildMix { + name = "cep"; + version = "0.0.1"; + src = fetchHex { + pkg = "cep"; + version = "0.0.1"; + sha256 = + "f76e67e1d989fc2edbfbd265f79e4a33a0aa7f9ff06934a1f2d49903df72b79f"; + }; + beamDeps = [ + sweet_xml_0_6_1 + poolboy_1_5_1 + poison_2_1_0 + httpoison_0_8_2 + codepagex_0_1_2 + ]; + + meta = { + longDescription = ''A package to query Brazilian CEP codes. Has + support for multiple source APIs (Correios, + ViaCep, Postmon, etc). It can query one specific + source or query until one source returns a valid + result.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/douglascamata/cep"; + }; + } + ) {}; + + cep = cep_0_0_1; + certifi_0_1_1 = callPackage ( { buildRebar3, fetchHex }: @@ -3805,7 +4725,28 @@ let } ) {}; - certifi = certifi_0_3_0; + certifi_0_4_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + certifi = certifi_0_4_0; cesso_0_1_3 = callPackage ( @@ -3830,7 +4771,7 @@ let cesso = cesso_0_1_3; - cet_0_2_2 = callPackage + cet_0_2_3 = callPackage ( { buildRebar3, @@ -3844,12 +4785,12 @@ let }: buildRebar3 { name = "cet"; - version = "0.2.2"; + version = "0.2.3"; src = fetchHex { pkg = "cet"; - version = "0.2.2"; + version = "0.2.3"; sha256 = - "3da06f36791484576e4b338a2d8b5cfa65fe81ae7ed748aa7df85de0cb3bd2b4"; + "4942c6d86568ee8daffebfece8b73dcef3d91702484480b27a2b32590ad0894e"; }; beamDeps = [ @@ -3869,7 +4810,7 @@ let } ) {}; - cet = cet_0_2_2; + cet = cet_0_2_3; cf_0_1_2 = callPackage ( @@ -3913,6 +4854,54 @@ let cf = cf_0_2_1; + chacha20_0_3_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + chacha20 = chacha20_0_3_2; + + changeset_0_2_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + changeset = changeset_0_2_1; + changex_0_1_1 = callPackage ( { buildMix, fetchHex }: @@ -3970,7 +4959,7 @@ let fetchHex, cowboy_1_0_4, env_conf_0_3_0, - uuid_0_1_5, + uuid_1_0_0, jazz_0_2_1 }: buildMix { @@ -3982,7 +4971,7 @@ let sha256 = "2c0eb1335922bec0c6bc5e8f3dc4d84192657b708c2558742f676ed430f0950f"; }; - beamDeps = [ cowboy_1_0_4 env_conf_0_3_0 uuid_0_1_5 jazz_0_2_1 + beamDeps = [ cowboy_1_0_4 env_conf_0_3_0 uuid_1_0_0 jazz_0_2_1 ]; meta = { @@ -4073,9 +5062,40 @@ let chash = chash_0_1_1; + chatter_0_0_14 = callPackage + ( + { + buildMix, fetchHex, snappy_1_1_1, ranch_1_2_1, exactor_2_2_0 + }: + buildMix { + name = "chatter"; + version = "0.0.14"; + src = fetchHex { + pkg = "chatter"; + version = "0.0.14"; + sha256 = + "6f6ee9aac860198a08322f77a334df82c43e38aa9f5fa7186034bf84ac86f060"; + }; + beamDeps = [ snappy_1_1_1 ranch_1_2_1 exactor_2_2_0 ]; + + meta = { + longDescription = ''Chatter is extracted from the ScaleSmall + project as a standalone piece. This may be used + independently to broadcast messages to a set of + nodes. It uses a mixture of UDP multicast and + TCP to deliver messages and tries to minimize + network traffic while doing so.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/dbeck/chatter_ex/"; + }; + } + ) {}; + + chatter = chatter_0_0_14; + chinese_translation_0_1_0 = callPackage ( - { buildMix, fetchHex, httpoison_0_8_1 }: + { buildMix, fetchHex, httpoison_0_8_2 }: buildMix { name = "chinese_translation"; version = "0.1.0"; @@ -4085,7 +5105,7 @@ let sha256 = "d5e4f59421bad59e465322ce7a8f366179e5f6a732d7e06435e8a7c01f42e7ab"; }; - beamDeps = [ httpoison_0_8_1 ]; + beamDeps = [ httpoison_0_8_2 ]; meta = { longDescription = ''ChineseTranslation provides traditional @@ -4100,17 +5120,17 @@ let chinese_translation = chinese_translation_0_1_0; - chronos_1_0_0 = callPackage + chronos_0_3_9 = callPackage ( { buildMix, fetchHex }: buildMix { name = "chronos"; - version = "1.0.0"; + version = "0.3.9"; src = fetchHex { pkg = "chronos"; - version = "1.0.0"; + version = "0.3.9"; sha256 = - "cfe0087dcf2ab401b3c2c1faa977571f9880f527b54a8c22cda5a8023a8420af"; + "973e1273088677a12afc1a72aad78fe5070fb0ad6f9b1c648d79dd251292dee4"; }; meta = { @@ -4172,17 +5192,17 @@ let chunky_svg = chunky_svg_0_0_4; - cidr_0_5_0 = callPackage + cidr_1_0_0 = callPackage ( { buildMix, fetchHex }: buildMix { name = "cidr"; - version = "0.5.0"; + version = "1.0.0"; src = fetchHex { pkg = "cidr"; - version = "0.5.0"; + version = "1.0.0"; sha256 = - "876baa94135d058a5ff617c8a072cdb2e5381661eb93b70d07844c0f9e00f38d"; + "3bffa78af48cfbcd89461144bd2e1990b4f2631a8328c42cb033fa71c14b8f46"; }; meta = { @@ -4194,7 +5214,7 @@ let } ) {}; - cidr = cidr_0_5_0; + cidr = cidr_1_0_0; cipher_0_1_0 = callPackage ( @@ -4224,7 +5244,36 @@ let } ) {}; - cipher = cipher_0_1_0; + cipher_1_0_0 = callPackage + ( + { buildMix, fetchHex, poison_2_1_0 }: + buildMix { + name = "cipher"; + version = "1.0.0"; + src = fetchHex { + pkg = "cipher"; + version = "1.0.0"; + sha256 = + "a83812b09b65c6a821129e709fee31b4f96ccc0c547e29fe42928ed49811ed79"; + }; + beamDeps = [ poison_2_1_0 ]; + + 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"; + }; + } + ) {}; + + cipher = cipher_1_0_0; cirru_parser_0_0_1 = callPackage ( @@ -4251,7 +5300,7 @@ let ckan_0_0_2 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpotion_2_1_0 }: + { buildMix, fetchHex, poison_1_5_2, httpotion_2_2_2 }: buildMix { name = "ckan"; version = "0.0.2"; @@ -4261,7 +5310,7 @@ let sha256 = "471a58f1d38df7a6ff36af9a1e9d4c6cb9d310c5acb2db95ff3184717d7762a0"; }; - beamDeps = [ poison_1_5_2 httpotion_2_1_0 ]; + beamDeps = [ poison_1_5_2 httpotion_2_2_2 ]; meta = { description = ''A small library for interacting with CKAN @@ -4322,6 +5371,43 @@ let cleverbot = cleverbot_0_0_1; + clicksign_0_0_2 = callPackage + ( + { + buildMix, + fetchHex, + plug_1_1_3, + httpoison_0_8_2, + exjsx_3_2_0, + cowboy_1_0_4, + bypass_0_5_1 + }: + buildMix { + name = "clicksign"; + version = "0.0.2"; + src = fetchHex { + pkg = "clicksign"; + version = "0.0.2"; + sha256 = + "e6e9335c86298d5d5af6c18b85f3533554eca74d6129e1aea7dae17849b48ed2"; + }; + beamDeps = [ + plug_1_1_3 + httpoison_0_8_2 + exjsx_3_2_0 + cowboy_1_0_4 + bypass_0_5_1 + ]; + + meta = { + description = ''Clicksign client''; + + }; + } + ) {}; + + clicksign = clicksign_0_0_2; + clint_0_0_1 = callPackage ( { buildMix, fetchHex, plug_0_11_3, cowboy_1_0_4 }: @@ -4347,9 +5433,34 @@ let clint = clint_0_0_1; + clique_3_0_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + clique = clique_3_0_1; + cloak_0_2_0 = callPackage ( - { buildMix, fetchHex, poison_2_1_0, ecto_2_0_0_beta_0 }: + { buildMix, fetchHex, poison_2_1_0, ecto_2_0_0_beta_2 }: buildMix { name = "cloak"; version = "0.2.0"; @@ -4359,7 +5470,7 @@ let sha256 = "8e2455ab420102280719efc86cee7a58d1de358a541cd7d1b49b74fa30fa8fb8"; }; - beamDeps = [ poison_2_1_0 ecto_2_0_0_beta_0 ]; + beamDeps = [ poison_2_1_0 ecto_2_0_0_beta_2 ]; meta = { description = ''Encrypted fields for Ecto.''; @@ -4371,6 +5482,66 @@ let cloak = cloak_0_2_0; + close_enough_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + close_enough = close_enough_0_0_1; + + cloudex_0_0_2 = callPackage + ( + { + buildMix, + fetchHex, + tzdata_0_5_7, + timex_0_19_5, + poison_1_5_2, + httpoison_0_8_2 + }: + buildMix { + name = "cloudex"; + version = "0.0.2"; + src = fetchHex { + pkg = "cloudex"; + version = "0.0.2"; + sha256 = + "eb424a8e6610de6f7a2f2be074937c571a86d11e4b942d2ea39900855a66b306"; + }; + beamDeps = [ + tzdata_0_5_7 timex_0_19_5 poison_1_5_2 httpoison_0_8_2 + ]; + + meta = { + longDescription = ''A library that helps with uploading image + files and urls to cloudinary. Also provides an + helper to generate transformations and + cloudinary urls pointing to your images''; + license = stdenv.lib.licenses.wtfpl; + homepage = "https://github.com/smeevil/cloudex"; + }; + } + ) {}; + + cloudex = cloudex_0_0_2; + cloudi_core_1_5_1 = callPackage ( { @@ -4431,7 +5602,7 @@ let cloudi_service_api_requests_1_5_1 = callPackage ( { - buildRebar3, fetchHex, trie_1_5_1, jsx_2_4_0, cloudi_core_1_5_1 + buildRebar3, fetchHex, trie_1_5_1, jsx_2_3_1, cloudi_core_1_5_1 }: buildRebar3 { name = "cloudi_service_api_requests"; @@ -4443,7 +5614,7 @@ let "3af4a6bb4ef9f428f6044a752cc5c37cd7bf9fdc7d26407044b8c716b40c86f3"; }; - beamDeps = [ trie_1_5_1 jsx_2_4_0 cloudi_core_1_5_1 ]; + beamDeps = [ trie_1_5_1 jsx_2_3_1 cloudi_core_1_5_1 ]; meta = { description = ''Erlang/Elixir Cloud Framework API requests @@ -4600,7 +5771,7 @@ let fetchHex, uuid_erl_1_5_1, trie_1_5_1, - elli_1_0_4, + elli_1_0_5, cowlib_1_0_2, cloudi_core_1_5_1 }: @@ -4617,7 +5788,7 @@ let beamDeps = [ uuid_erl_1_5_1 trie_1_5_1 - elli_1_0_4 + elli_1_0_5 cowlib_1_0_2 cloudi_core_1_5_1 ]; @@ -5131,7 +6302,7 @@ let cloudinary_0_0_2 = callPackage ( - { buildMix, fetchHex, poison_1_4_0, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_4_0, httpoison_0_8_2 }: buildMix { name = "cloudinary"; version = "0.0.2"; @@ -5141,7 +6312,7 @@ let sha256 = "9e32b21717b193f90a526203725811b96294d7c88391e5ad4a57bf178678cc4c"; }; - beamDeps = [ poison_1_4_0 httpoison_0_8_1 ]; + beamDeps = [ poison_1_4_0 httpoison_0_8_2 ]; meta = { description = ''Library to upload to Cloudinary''; @@ -5155,7 +6326,7 @@ let cloudinaryex_0_0_2 = callPackage ( { - buildMix, fetchHex, timex_1_0_1, poison_1_5_2, httpoison_0_8_1 + buildMix, fetchHex, timex_1_0_2, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "cloudinaryex"; @@ -5166,7 +6337,7 @@ let sha256 = "31518baacfcca428e30ee8f1c411d76568344e7032ed93cf34535e279c8472fc"; }; - beamDeps = [ timex_1_0_1 poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ timex_1_0_2 poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''A library for connecting with Cloudinary in @@ -5205,8 +6376,8 @@ let cmark_0_6_8 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "cmark"; version = "0.6.8"; src = fetchHex { @@ -5215,7 +6386,6 @@ let sha256 = "ee148d419684923567be4f413cf82c6f8da2d235e40d434e616febca158372cc"; }; - compilePorts = true; meta = { longDescription = ''Elixir NIF for cmark (C), a parser library @@ -5342,6 +6512,39 @@ let coinbase = coinbase_0_0_1; + coincap_io_0_0_1 = callPackage + ( + { + buildMix, + fetchHex, + poison_1_5_2, + httpoison_0_8_2, + exconstructor_1_0_2 + }: + buildMix { + name = "coincap_io"; + version = "0.0.1"; + src = fetchHex { + pkg = "coincap_io"; + version = "0.0.1"; + sha256 = + "27638d227a407a204c83534e15917bd77fac64a8bdc96dbad07d59a935639da3"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 exconstructor_1_0_2 ]; + + meta = { + longDescription = ''WIP, unstable Elixir API wrapper for + coincap.io. Provides access to market + capitalization data of bitcoin, altcoins and + cryptotokens.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/cyberpunk-ventures/coincap_io_ex"; + }; + } + ) {}; + + coincap_io = coincap_io_0_0_1; + colixir_0_0_1 = callPackage ( { buildMix, fetchHex }: @@ -5531,8 +6734,8 @@ let comeonin_1_6_0 = callPackage ( - { buildRebar3, fetchHex, comeonin_i18n_0_1_3 }: - buildRebar3 { + { buildErlangMk, fetchHex, comeonin_i18n_0_1_3 }: + buildErlangMk { name = "comeonin"; version = "1.6.0"; src = fetchHex { @@ -5541,7 +6744,6 @@ let sha256 = "40dd0da2c33696d19515888fd86b9ffdcad92d49e9a6b3b13df98e824897a1b1"; }; - compilePorts = true; beamDeps = [ comeonin_i18n_0_1_3 ]; meta = { @@ -5555,8 +6757,8 @@ let comeonin_2_0_3 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "comeonin"; version = "2.0.3"; src = fetchHex { @@ -5565,7 +6767,6 @@ let sha256 = "a9a6f87107ebf6898adeca7130adb1b9e421c1be7e8b30b13ac1e0354ea15198"; }; - compilePorts = true; meta = { description = ''Password hashing (bcrypt, pbkdf2_sha512) library @@ -5578,8 +6779,8 @@ let comeonin_2_1_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "comeonin"; version = "2.1.1"; src = fetchHex { @@ -5588,7 +6789,6 @@ let sha256 = "7f85774ae5d453f664d0e7809cc1ab32ff22855d16ff6a2edd68c6d36cb1a1aa"; }; - compilePorts = true; meta = { description = ''Password hashing (bcrypt, pbkdf2_sha512) library @@ -5599,11 +6799,33 @@ let } ) {}; - comeonin = comeonin_2_1_1; + comeonin_2_3_0 = callPackage + ( + { buildErlangMk, fetchHex }: + buildErlangMk { + name = "comeonin"; + version = "2.3.0"; + src = fetchHex { + pkg = "comeonin"; + version = "2.3.0"; + sha256 = + "f3463468faa27ec22116a0469406472b0f67cf86c3e9cb44ac2991c5a0c2655d"; + }; + + meta = { + description = ''Password hashing (bcrypt, pbkdf2_sha512) library + for Elixir.''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/elixircnx/comeonin"; + }; + } + ) {}; + + comeonin = comeonin_2_3_0; comeonin_ecto_password_0_0_3 = callPackage ( - { buildMix, fetchHex, ecto_1_1_3, comeonin_2_1_1 }: + { buildMix, fetchHex, ecto_1_1_5, comeonin_2_3_0 }: buildMix { name = "comeonin_ecto_password"; version = "0.0.3"; @@ -5613,7 +6835,7 @@ let sha256 = "44c8dbf5b81fca515b91422fddb240c5d714bc81bc0d59b3ca60300edb3f856b"; }; - beamDeps = [ ecto_1_1_3 comeonin_2_1_1 ]; + beamDeps = [ ecto_1_1_5 comeonin_2_3_0 ]; meta = { description = ''Ecto custom type for storing encrypted password @@ -5656,9 +6878,9 @@ let { buildMix, fetchHex, - mock_0_1_1, + mock_0_1_3, jazz_0_2_1, - httpoison_0_8_1, + httpoison_0_8_2, ex_doc_0_11_4 }: buildMix { @@ -5670,7 +6892,7 @@ let sha256 = "6bb751f496011b974cb8d536b079eb7dfaeee4be827e4cf2fe0585e10f26bd04"; }; - beamDeps = [ mock_0_1_1 jazz_0_2_1 httpoison_0_8_1 ex_doc_0_11_4 + beamDeps = [ mock_0_1_3 jazz_0_2_1 httpoison_0_8_2 ex_doc_0_11_4 ]; meta = { @@ -5708,6 +6930,31 @@ let complex = complex_0_2_0; + comredis_1_0_0 = callPackage + ( + { buildMix, fetchHex, poison_2_1_0 }: + buildMix { + name = "comredis"; + version = "1.0.0"; + src = fetchHex { + pkg = "comredis"; + version = "1.0.0"; + sha256 = + "181989546464dbe57f2feceb39954eea8008e28612df0c6a7b9b0f7003b251e9"; + }; + beamDeps = [ poison_2_1_0 ]; + + meta = { + description = ''Comredis is your comrade for Redis command + generation in Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/iurifq/comredis"; + }; + } + ) {}; + + comredis = comredis_1_0_0; + con_cache_0_11_0 = callPackage ( { buildMix, fetchHex, exactor_2_2_0 }: @@ -5760,8 +7007,8 @@ let conferl_0_0_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "conferl"; version = "0.0.1"; src = fetchHex { @@ -5782,17 +7029,40 @@ let conferl = conferl_0_0_1; - configparser_ex_0_2_0 = callPackage + config_values_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + config_values = config_values_1_0_0; + + configparser_ex_0_2_1 = callPackage ( { buildMix, fetchHex }: buildMix { name = "configparser_ex"; - version = "0.2.0"; + version = "0.2.1"; src = fetchHex { pkg = "configparser_ex"; - version = "0.2.0"; + version = "0.2.1"; sha256 = - "acc487b8671b8fadba6bf5694115c23e04c9754cb226f371f17dc7588687d8ac"; + "3319861498f5e711058b1b3b54f88275af85e1bf9493bd0b904393d5971f117e"; }; meta = { @@ -5804,19 +7074,40 @@ let } ) {}; - configparser_ex = configparser_ex_0_2_0; + configparser_ex = configparser_ex_0_2_1; - conform_0_13_0 = callPackage + conform_0_10_5 = callPackage ( { buildMix, fetchHex }: buildMix { name = "conform"; - version = "0.13.0"; + version = "0.10.5"; src = fetchHex { pkg = "conform"; - version = "0.13.0"; + version = "0.10.5"; sha256 = - "72bc5f0e55d15f8387892b664c30e969e3584e8da15d6b5d45caac4d84ee1165"; + "2ded6a4f7405f2288d7888c86b59d3f2871bd9339f3e396d9f9fb148c4ce2304"; + }; + + meta = { + description = ''Easy release configuration for Elixir apps.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/bitwalker/conform"; + }; + } + ) {}; + + conform_0_11_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "conform"; + version = "0.11.0"; + src = fetchHex { + pkg = "conform"; + version = "0.11.0"; + sha256 = + "2547e29fec74952572a0f2456f38e11dc8247a00d4b197eca2e61a8fd767f3eb"; }; meta = { @@ -5871,21 +7162,43 @@ let } ) {}; - conform = conform_1_0_0_rc8; - - conform_exrm_0_3_0 = callPackage + conform_2_0_0 = callPackage ( - { buildMix, fetchHex, exrm_1_0_0_rc8, conform_1_0_0_rc8 }: + { buildMix, 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"; + }; + } + ) {}; + + conform = conform_2_0_0; + + conform_exrm_1_0_0 = callPackage + ( + { buildMix, fetchHex, exrm_1_0_3, conform_2_0_0 }: buildMix { name = "conform_exrm"; - version = "0.3.0"; + version = "1.0.0"; src = fetchHex { pkg = "conform_exrm"; - version = "0.3.0"; + version = "1.0.0"; sha256 = - "52baf48678b29b8986bc325877489679b597633457397d078782262ee444808e"; + "acf8eb831b0f8573a92694da4d3b513f551b8d854a8c4670c560379ae5c0f2fd"; }; - beamDeps = [ exrm_1_0_0_rc8 conform_1_0_0_rc8 ]; + beamDeps = [ exrm_1_0_3 conform_2_0_0 ]; meta = { description = ''Conform plugin for ExRM''; @@ -5895,7 +7208,7 @@ let } ) {}; - conform_exrm = conform_exrm_0_3_0; + conform_exrm = conform_exrm_1_0_0; connection_1_0_0_rc_1 = callPackage ( @@ -5987,6 +7300,31 @@ let console = console_0_0_1; + console_tree_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + console_tree = console_tree_0_0_1; + consul_1_0_3 = callPackage ( { buildMix, fetchHex, httpoison_0_7_5, exjsx_3_2_0 }: @@ -6106,19 +7444,19 @@ let core_data = core_data_0_1_0; - cors_plug_1_1_0 = callPackage + cors_plug_1_1_1 = callPackage ( - { buildMix, fetchHex, plug_1_1_1, cowboy_1_0_4 }: + { buildMix, fetchHex, plug_1_1_3, cowboy_1_0_4 }: buildMix { name = "cors_plug"; - version = "1.1.0"; + version = "1.1.1"; src = fetchHex { pkg = "cors_plug"; - version = "1.1.0"; + version = "1.1.1"; sha256 = - "b6ae0bf0c8a993d7f94f7061774e70403726b2ffe5d648964b72d6f42fd71979"; + "12300007530a014c32f6dfe71a1775d1b39dd43fd7b35697574ab7d78c5e629c"; }; - beamDeps = [ plug_1_1_1 cowboy_1_0_4 ]; + beamDeps = [ plug_1_1_3 cowboy_1_0_4 ]; meta = { longDescription = ''An elixir plug that adds CORS headers to @@ -6130,21 +7468,21 @@ let } ) {}; - cors_plug = cors_plug_1_1_0; + cors_plug = cors_plug_1_1_1; - corsica_0_4_0 = callPackage + corsica_0_4_1 = callPackage ( - { buildMix, fetchHex, plug_1_1_1, cowboy_1_0_4 }: + { buildMix, fetchHex, plug_1_1_3, cowboy_1_0_4 }: buildMix { name = "corsica"; - version = "0.4.0"; + version = "0.4.1"; src = fetchHex { pkg = "corsica"; - version = "0.4.0"; + version = "0.4.1"; sha256 = - "9f5e7c6b3e6b52f9b07d76f207fbe39273d9cb22099b6b3d83621ded29fb42d6"; + "718b95d067cba24563b6fcc5ac64ced304c71323df3c0abe58351054125f964d"; }; - beamDeps = [ plug_1_1_1 cowboy_1_0_4 ]; + beamDeps = [ plug_1_1_3 cowboy_1_0_4 ]; meta = { description = ''Plug-based swiss-army knife for CORS requests.''; @@ -6154,7 +7492,7 @@ let } ) {}; - corsica = corsica_0_4_0; + corsica = corsica_0_4_1; couch_factory_0_1_1 = callPackage ( @@ -6180,20 +7518,20 @@ let couch_factory = couch_factory_0_1_1; - couchbeam_1_2_1 = callPackage + couchbeam_1_3_0 = callPackage ( - { buildRebar3, fetchHex, jsx_2_8_0, hackney_1_4_4 }: + { buildRebar3, fetchHex, jsx_2_8_0, hackney_1_5_7 }: buildRebar3 { name = "couchbeam"; - version = "1.2.1"; + version = "1.3.0"; src = fetchHex { pkg = "couchbeam"; - version = "1.2.1"; + version = "1.3.0"; sha256 = - "ed19f0412aa0539ecf622ac8ade1ca0e316f424e3334ad015a3fb8db19e91194"; + "5d94bfc80532999e4f8e7f5da3abff74fbf3b59d5e02e0a99eb0dc3697c97a50"; }; - beamDeps = [ jsx_2_8_0 hackney_1_4_4 ]; + beamDeps = [ jsx_2_8_0 hackney_1_5_7 ]; meta = { description = ''Erlang CouchDB client''; @@ -6203,7 +7541,7 @@ let } ) {}; - couchbeam = couchbeam_1_2_1; + couchbeam = couchbeam_1_3_0; couchdb_client_0_2_5 = callPackage ( @@ -6244,7 +7582,7 @@ let couchdb_connector_0_2_0 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "couchdb_connector"; version = "0.2.0"; @@ -6254,7 +7592,7 @@ let sha256 = "05ac95c3f08038c3f17c03be5f27922b919513dfd4582f2da150f70182dac01b"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { longDescription = ''A connector for CouchDB, the Erlang-based, @@ -6279,6 +7617,30 @@ let couchdb_connector = couchdb_connector_0_2_0; + couchex_0_6_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + couchex = couchex_0_6_0; + count_buffer_0_1_5 = callPackage ( { buildMix, fetchHex, pool_ring_0_1_5 }: @@ -6330,9 +7692,70 @@ let countries = countries_1_1_2; + courier_0_0_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + courier = courier_0_0_3; + + courier_web_0_0_8 = callPackage + ( + { + buildMix, + fetchHex, + uuid_1_1_3, + poison_2_1_0, + plug_1_1_3, + ja_serializer_0_8_1, + courier_0_0_3 + }: + buildMix { + name = "courier_web"; + version = "0.0.8"; + src = fetchHex { + pkg = "courier_web"; + version = "0.0.8"; + sha256 = + "c4161f218d487901bc1e63ce1840c73de34d84d8c53eda12f09cea4a8fa2758b"; + }; + beamDeps = [ + uuid_1_1_3 + poison_2_1_0 + plug_1_1_3 + ja_serializer_0_8_1 + courier_0_0_3 + ]; + + meta = { + description = ''Web client adapter for Courier''; + + }; + } + ) {}; + + courier_web = courier_web_0_0_8; + coverex_1_4_8 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "coverex"; version = "1.4.8"; @@ -6342,7 +7765,7 @@ let sha256 = "47f03bd9d00b22893fda81273c310d30d96e849026f5c1d0ad664089c875bac6"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { longDescription = ''Coverex is an Elixir Coverage tool used by @@ -6360,8 +7783,8 @@ let cowboy_1_0_4 = callPackage ( - { buildRebar3, fetchHex, cowlib_1_0_2, ranch_1_2_1 }: - buildRebar3 { + { buildErlangMk, fetchHex, cowlib_1_0_2, ranch_1_2_1 }: + buildErlangMk { name = "cowboy"; version = "1.0.4"; src = fetchHex { @@ -6370,7 +7793,6 @@ let sha256 = "6a0edee96885fae3a8dd0ac1f333538a42e807db638a9453064ccfdaa6b9fdac"; }; - beamDeps = [ cowlib_1_0_2 ranch_1_2_1 ]; meta = { @@ -6453,8 +7875,8 @@ let cowlib_1_0_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "cowlib"; version = "1.0.0"; src = fetchHex { @@ -6475,8 +7897,8 @@ let cowlib_1_0_2 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "cowlib"; version = "1.0.2"; src = fetchHex { @@ -6497,8 +7919,8 @@ let cowlib_1_3_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "cowlib"; version = "1.3.0"; src = fetchHex { @@ -6620,17 +8042,17 @@ let craterl = craterl_0_2_3; - crc_0_3_0 = callPackage + crc_0_4_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "crc"; - version = "0.3.0"; + version = "0.4.0"; src = fetchHex { pkg = "crc"; - version = "0.3.0"; + version = "0.4.0"; sha256 = - "23d7cb6a18cca461f46f5a0f341c74fd0a680cdae62460687f1a24f0a7faabd4"; + "4f0d872d46faea966aeb687158b7e02bfc61c49c4f2fb33f5e52e3d167f4faeb"; }; meta = { @@ -6642,7 +8064,7 @@ let } ) {}; - crc = crc_0_3_0; + crc = crc_0_4_0; credit_card_1_0_0 = callPackage ( @@ -6667,17 +8089,17 @@ let credit_card = credit_card_1_0_0; - credo_0_1_10 = callPackage + credo_0_3_10 = callPackage ( { buildMix, fetchHex, bunt_0_1_5 }: buildMix { name = "credo"; - version = "0.1.10"; + version = "0.3.10"; src = fetchHex { pkg = "credo"; - version = "0.1.10"; + version = "0.3.10"; sha256 = - "2a52a3fc144bc5c70899381a58de603eb14751f4965dfea1866b20324b9806c0"; + "dbc6e8ed6cd3567576bb6c4cc0dbea6fb3f7ef88a530aa2d17d13a1106cff156"; }; beamDeps = [ bunt_0_1_5 ]; @@ -6691,17 +8113,19 @@ let } ) {}; - credo_0_3_3 = callPackage + credo = credo_0_3_10; + + credo_0_3_2 = callPackage ( { buildMix, fetchHex, bunt_0_1_5 }: buildMix { name = "credo"; - version = "0.3.3"; + version = "0.3.2"; src = fetchHex { pkg = "credo"; - version = "0.3.3"; + version = "0.3.2"; sha256 = - "9cf7816093412e31bad13f08f6713ed935312d3a0d489edc76187c21e01a6afe"; + "0040bfc7a76f3c345647dc32743f4c1ca2911cc1fc53bc2dc3f9fd98704da805"; }; beamDeps = [ bunt_0_1_5 ]; @@ -6715,19 +8139,17 @@ let } ) {}; - credo = credo_0_3_3; - - croma_0_3_8 = callPackage + croma_0_4_0 = callPackage ( { buildMix, fetchHex }: buildMix { name = "croma"; - version = "0.3.8"; + version = "0.4.0"; src = fetchHex { pkg = "croma"; - version = "0.3.8"; + version = "0.4.0"; sha256 = - "48735ed0a450c2101a884f14fba5d5946d27601426de220e2327feffb5cc2cca"; + "6bcf8a0aad588fc57b4a4dedacf54ec4461e6906da5273c4bd8e121d179e3413"; }; meta = { @@ -6737,11 +8159,11 @@ let } ) {}; - croma = croma_0_3_8; + croma = croma_0_4_0; crudex_0_0_2 = callPackage ( - { buildMix, fetchHex, plug_auth_0_2_0 }: + { buildMix, fetchHex, plug_auth_0_3_0 }: buildMix { name = "crudex"; version = "0.0.2"; @@ -6751,7 +8173,7 @@ let sha256 = "2ccf07c728dbb328b9f869a87465c8ba647931ec68f563c4ddea99ec76fa4364"; }; - beamDeps = [ plug_auth_0_2_0 ]; + beamDeps = [ plug_auth_0_3_0 ]; meta = { description = ''A glue keeping Phoenix and Ecto together''; @@ -6811,17 +8233,17 @@ let cryptex = cryptex_0_0_1; - crypto_ext_0_1_1 = callPackage + crypto_ext_0_1_3 = callPackage ( { buildRebar3, fetchHex }: buildRebar3 { name = "crypto_ext"; - version = "0.1.1"; + version = "0.1.3"; src = fetchHex { pkg = "crypto_ext"; - version = "0.1.1"; + version = "0.1.3"; sha256 = - "19715a35b392c557cc9503e2aa1f8fbd1dcd3cdcb11a0d2f73a3fe75f4db76b8"; + "8caea80b44aa7a8b02399e522b7ff756f07a8ef810dc39d54b4abed68bdb5cf3"; }; compilePorts = true; @@ -6834,7 +8256,7 @@ let } ) {}; - crypto_ext = crypto_ext_0_1_1; + crypto_ext = crypto_ext_0_1_3; crypto_rsassa_pss_1_0_0 = callPackage ( @@ -6886,18 +8308,19 @@ let cspex = cspex_1_0_0; - csv_1_2_4 = callPackage + csv_1_3_3 = callPackage ( - { buildMix, fetchHex }: + { buildMix, fetchHex, parallel_stream_1_0_3 }: buildMix { name = "csv"; - version = "1.2.4"; + version = "1.3.3"; src = fetchHex { pkg = "csv"; - version = "1.2.4"; + version = "1.3.3"; sha256 = - "66fee1eaf536347d493942cb5e085321c51e80de124ff00f4b2651870b919b99"; + "f3ef7b1ae28a55e53b8cb5c11d0e0b64e76e38d5f3e830bf2e3bf2cc0a89d848"; }; + beamDeps = [ parallel_stream_1_0_3 ]; meta = { description = ''CSV Decoding and Encoding for Elixir''; @@ -6907,7 +8330,7 @@ let } ) {}; - csv = csv_1_2_4; + csv = csv_1_3_3; csvlixir_2_0_2 = callPackage ( @@ -6939,17 +8362,17 @@ let csvlixir = csvlixir_2_0_2; - cth_readable_1_2_1 = callPackage + cth_readable_1_2_2 = callPackage ( { buildRebar3, fetchHex, cf_0_2_1 }: buildRebar3 { name = "cth_readable"; - version = "1.2.1"; + version = "1.2.2"; src = fetchHex { pkg = "cth_readable"; - version = "1.2.1"; + version = "1.2.2"; sha256 = - "923ae5bd8a044695a3223cc6539126e69f91aff89bb924ccf38da9ee615d6492"; + "77585432b98b45b9ee086399cefa97b2191b6d780c4e795bf43c529412d9694d"; }; beamDeps = [ cf_0_2_1 ]; @@ -6962,7 +8385,7 @@ let } ) {}; - cth_readable = cth_readable_1_2_1; + cth_readable = cth_readable_1_2_2; cuckoo_1_0_0 = callPackage ( @@ -7061,19 +8484,44 @@ let cure = cure_0_4_1; - current_streak_ex_0_1_0 = callPackage + currency_formatter_0_0_1 = callPackage ( - { buildMix, fetchHex, httpoison_0_8_1, floki_0_7_1 }: + { buildMix, 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"; + }; + } + ) {}; + + currency_formatter = currency_formatter_0_0_1; + + current_streak_ex_0_1_1 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_2, floki_0_8_0 }: buildMix { name = "current_streak_ex"; - version = "0.1.0"; + version = "0.1.1"; src = fetchHex { pkg = "current_streak_ex"; - version = "0.1.0"; + version = "0.1.1"; sha256 = - "08b846b7347fa134d845e0654b4775eba78e995675f18ec51533e7e42aa3abaa"; + "1c62bcd7bdd69818dc05f0602e03a5aca6b21554206cb6634bedb807ee27d5a7"; }; - beamDeps = [ httpoison_0_8_1 floki_0_7_1 ]; + beamDeps = [ httpoison_0_8_2 floki_0_8_0 ]; meta = { description = ''Get github current streak which support only @@ -7084,7 +8532,7 @@ let } ) {}; - current_streak_ex = current_streak_ex_0_1_0; + current_streak_ex = current_streak_ex_0_1_1; current_user_0_0_1 = callPackage ( @@ -7209,9 +8657,32 @@ let curtains = curtains_0_0_1; + curve25519_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + curve25519 = curve25519_0_1_0; + cushion_0_0_3 = callPackage ( - { buildMix, fetchHex, httpotion_2_1_0 }: + { buildMix, fetchHex, httpotion_2_2_2 }: buildMix { name = "cushion"; version = "0.0.3"; @@ -7221,7 +8692,7 @@ let sha256 = "1371ab210bd3b7ef7381dbe3f53fedb8afbbb0c562f45d614e4849373919482b"; }; - beamDeps = [ httpotion_2_1_0 ]; + beamDeps = [ httpotion_2_2_2 ]; meta = { longDescription = ''A really simple Buffer API client for sending @@ -7236,28 +8707,6 @@ let cushion = cushion_0_0_3; - custom_base_0_1_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "custom_base"; - version = "0.1.0"; - src = fetchHex { - pkg = "custom_base"; - version = "0.1.0"; - sha256 = - "3a75d9cabcad3936e9194d387966213cb13a4d14b7b69f2cea0fc22ff2f76726"; - }; - - meta = { - description = ''Allow you to make custom base conversion in - Elixir.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/igas/custom_base"; - }; - } - ) {}; - custom_base_0_2_0 = callPackage ( { buildMix, fetchHex }: @@ -7331,6 +8780,31 @@ let cypher_query = cypher_query_0_0_1; + data_leaf_walker_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + data_leaf_walker = data_leaf_walker_0_1_0; + database_url_0_1_0 = callPackage ( { buildMix, fetchHex }: @@ -7361,8 +8835,8 @@ let buildMix, fetchHex, poison_1_5_2, - httpoison_0_8_1, - ex_doc_0_6_2, + httpoison_0_8_2, + ex_doc_0_7_3, erldn_1_0_5 }: buildMix { @@ -7375,7 +8849,7 @@ let "bb2a5171a5d7783e40776db7fe7a6bff73ff69a4da4205c83b39c26ff73488c0"; }; beamDeps = [ - poison_1_5_2 httpoison_0_8_1 ex_doc_0_6_2 erldn_1_0_5 + poison_1_5_2 httpoison_0_8_2 ex_doc_0_7_3 erldn_1_0_5 ]; meta = { @@ -7389,17 +8863,17 @@ let datomex = datomex_0_0_5; - datomic_gen_server_1_1_0 = callPackage + datomic_gen_server_2_0_1 = callPackage ( { buildMix, fetchHex, exdn_2_1_2 }: buildMix { name = "datomic_gen_server"; - version = "1.1.0"; + version = "2.0.1"; src = fetchHex { pkg = "datomic_gen_server"; - version = "1.1.0"; + version = "2.0.1"; sha256 = - "c5369270fa9a21544efc359e80eff4b24d5dfbe869c211da0df6ebf216afa5a3"; + "601422e876b895d1841c02afe4b89ec32d4859a4c9a81c2ecbe5fa6bf6d651ba"; }; beamDeps = [ exdn_2_1_2 ]; @@ -7413,7 +8887,7 @@ let } ) {}; - datomic_gen_server = datomic_gen_server_1_1_0; + datomic_gen_server = datomic_gen_server_2_0_1; db_0_9_0 = callPackage ( @@ -7438,7 +8912,7 @@ let db = db_0_9_0; - db_connection_0_2_3 = callPackage + db_connection_0_2_4 = callPackage ( { buildMix, @@ -7449,12 +8923,12 @@ let }: buildMix { name = "db_connection"; - version = "0.2.3"; + version = "0.2.4"; src = fetchHex { pkg = "db_connection"; - version = "0.2.3"; + version = "0.2.4"; sha256 = - "16a1e0a968b3610fd482f64266411bde554515572c2b184af493d749ef206fca"; + "fbb5074affe8d57d0f677cf3692371a1fa3f90673c81e61214b0388995b4d4a7"; }; beamDeps = [ sbroker_0_7_0 poolboy_1_5_1 connection_1_0_2 ]; @@ -7467,7 +8941,7 @@ let } ) {}; - db_connection = db_connection_0_2_3; + db_connection = db_connection_0_2_4; dbg_1_0_1 = callPackage ( @@ -7492,19 +8966,41 @@ let dbg = dbg_1_0_1; - dbus_0_4_0 = callPackage + dbschema_0_2_0 = callPackage ( - { buildMix, fetchHex, poolboy_1_5_1, eredis_1_0_8 }: - buildMix { + { buildRebar3, fetchHex }: + buildRebar3 { + name = "dbschema"; + version = "0.2.0"; + src = fetchHex { + pkg = "dbschema"; + version = "0.2.0"; + sha256 = + "92eed9e62bf5998d33e7826e02f35bafa52bc7f5915c7ebaf4a8c687529688e2"; + }; + + meta = { + description = ''Database postgresql migrations util''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/egobrain/dbschema"; + }; + } + ) {}; + + dbschema = dbschema_0_2_0; + + dbus_0_5_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { name = "dbus"; - version = "0.4.0"; + version = "0.5.0"; src = fetchHex { pkg = "dbus"; - version = "0.4.0"; + version = "0.5.0"; sha256 = - "d743b06a73286622af4a9390c4a16dcc5bce6be184ed660cfd76bd2f0b8ebedb"; + "8607c4ae1c9e2f377cfd4c34fd8207ad842347dc86db1360605d0a85266ae2e3"; }; - beamDeps = [ poolboy_1_5_1 eredis_1_0_8 ]; meta = { description = ''A native erlang implementation of D-Bus''; @@ -7514,7 +9010,7 @@ let } ) {}; - dbus = dbus_0_4_0; + dbus = dbus_0_5_0; ddb_client_0_1_17 = callPackage ( @@ -7543,7 +9039,7 @@ let dealer_0_8_0 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "dealer"; version = "0.8.0"; @@ -7553,7 +9049,7 @@ let sha256 = "c8c72d38e1cff6a181a6b6f627fb6fd5998279827519e598eb28bcef2be721ee"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''An API Client for Stockfighter.''; @@ -7845,6 +9341,32 @@ let detergentex = detergentex_0_0_7; + deviant_elixir_0_0_4 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_2, feeder_ex_0_0_2 }: + buildMix { + name = "deviant_elixir"; + version = "0.0.4"; + src = fetchHex { + pkg = "deviant_elixir"; + version = "0.0.4"; + sha256 = + "42473969889a47edab66384988e70ab6b4da158043e9231deab822743e3d9943"; + }; + beamDeps = [ httpoison_0_8_2 feeder_ex_0_0_2 ]; + + meta = { + longDescription = ''WIP. Unstable alpha. Elixir API wrapper for + Deviant Art. At this moment provides only RSS + feeds intergac.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/vdaniuk/deviant-elixir"; + }; + } + ) {}; + + deviant_elixir = deviant_elixir_0_0_4; + dexts_0_2_1 = callPackage ( { buildMix, fetchHex }: @@ -7893,7 +9415,7 @@ let di_0_1_0 = callPackage ( - { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: buildMix { name = "di"; version = "0.1.0"; @@ -7903,7 +9425,7 @@ let sha256 = "d7a89568c986c98399667faeb618d5cc42a89965717e758323aa5370d1547260"; }; - beamDeps = [ poison_2_1_0 httpoison_0_8_1 ]; + beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; meta = { description = ''Elixir wrapper for DI.FM''; @@ -7960,17 +9482,17 @@ let } ) {}; - dialyze_0_2_0 = callPackage + dialyze_0_2_1 = callPackage ( { buildMix, fetchHex }: buildMix { name = "dialyze"; - version = "0.2.0"; + version = "0.2.1"; src = fetchHex { pkg = "dialyze"; - version = "0.2.0"; + version = "0.2.1"; sha256 = - "05efe534da3b6d0a89cb655f3dc7cf3a99088b0832c5a75a9898a6241ff01cd2"; + "f485181fa53229356621261a384963cb47511cccf1454e82ca4fde53274fcd48"; }; meta = { @@ -7981,7 +9503,7 @@ let } ) {}; - dialyze = dialyze_0_2_0; + dialyze = dialyze_0_2_1; diane_0_0_1 = callPackage ( @@ -8054,7 +9576,7 @@ let dicer_0_8_0 = callPackage ( - { buildMix, fetchHex, sfmt_0_12_2 }: + { buildMix, fetchHex, sfmt_0_12_7 }: buildMix { name = "dicer"; version = "0.8.0"; @@ -8064,7 +9586,7 @@ let sha256 = "834e5d3f4cd9afac655e0f27869ecfdf6fa4ea061ad9ededdc6f295f71325960"; }; - beamDeps = [ sfmt_0_12_2 ]; + beamDeps = [ sfmt_0_12_7 ]; meta = { description = ''Elixir library to calculate dice rolls. ''; @@ -8101,17 +9623,17 @@ let dicks = dicks_0_1_0; - dicon_0_2_0 = callPackage + dicon_0_3_0 = callPackage ( { buildMix, fetchHex }: buildMix { name = "dicon"; - version = "0.2.0"; + version = "0.3.0"; src = fetchHex { pkg = "dicon"; - version = "0.2.0"; + version = "0.3.0"; sha256 = - "7da0fb146e81f34a6112594c88682c89b8cdf0ab9ccdaa92547399c283f2f98f"; + "52c5839feb9e0fa4247a564b79ac6717d8adc0e65a34739caaf26982fa213a12"; }; meta = { @@ -8122,7 +9644,7 @@ let } ) {}; - dicon = dicon_0_2_0; + dicon = dicon_0_3_0; difficult_0_0_2 = callPackage ( @@ -8150,7 +9672,7 @@ let digoc_0_3_3 = callPackage ( - { buildMix, fetchHex, poison_1_3_1, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_3_1, httpoison_0_8_2 }: buildMix { name = "digoc"; version = "0.3.3"; @@ -8160,7 +9682,7 @@ let sha256 = "23d5c2f1b977b1f3e12567879a20bc211898efdfcac9a0b6802324bc42ea0605"; }; - beamDeps = [ poison_1_3_1 httpoison_0_8_1 ]; + beamDeps = [ poison_1_3_1 httpoison_0_8_2 ]; meta = { description = ''An Elixir client for the Digital Ocean API v2.''; @@ -8172,6 +9694,42 @@ let digoc = digoc_0_3_3; + diplomat_0_0_1 = callPackage + ( + { + buildMix, + fetchHex, + poison_1_5_2, + httpoison_0_8_2, + goth_0_0_3, + exprotobuf_1_0_0 + }: + buildMix { + name = "diplomat"; + version = "0.0.1"; + src = fetchHex { + pkg = "diplomat"; + version = "0.0.1"; + sha256 = + "49d2bff25e177701f988f1abfb164233617c9af2da1701cb06f651e2b789407b"; + }; + beamDeps = [ + poison_1_5_2 + httpoison_0_8_2 + goth_0_0_3 + exprotobuf_1_0_0 + ]; + + meta = { + description = ''A library for interacting with Google`s Cloud + Datastore''; + + }; + } + ) {}; + + diplomat = diplomat_0_0_1; + dir_walker_0_0_6 = callPackage ( { buildMix, fetchHex }: @@ -8277,19 +9835,65 @@ let dismake = dismake_1_0_0; - distance_api_matrix_1_0_3 = callPackage + distance_0_1_2 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, 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"; + }; + } + ) {}; + + distance_0_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + distance = distance_0_2_0; + + distance_api_matrix_2_0_0 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "distance_api_matrix"; - version = "1.0.3"; + version = "2.0.0"; src = fetchHex { pkg = "distance_api_matrix"; - version = "1.0.3"; + version = "2.0.0"; sha256 = - "e4b6848481f4c8f5f15ad1c9f116816a3941f7c96df37fbad350faffc7887a6a"; + "e6996e829d7cf4e3e6b7790c53207f86aa467c0ba28af7a20df81e3b16d40fa0"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''Google Distance Matrix API Library for Elixir''; @@ -8299,7 +9903,7 @@ let } ) {}; - distance_api_matrix = distance_api_matrix_1_0_3; + distance_api_matrix = distance_api_matrix_2_0_0; distancex_0_1_0 = callPackage ( @@ -8430,9 +10034,35 @@ let dnsimple = dnsimple_0_0_1; + doc_first_formatter_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + doc_first_formatter = doc_first_formatter_0_0_1; + doc_plug_1_0_2 = callPackage ( - { buildMix, fetchHex, plug_1_1_1 }: + { buildMix, fetchHex, plug_1_1_3 }: buildMix { name = "doc_plug"; version = "1.0.2"; @@ -8442,7 +10072,7 @@ let sha256 = "2813f85dcd4f7228d54c277898d3d7483d03ef27ed4f9abc9eae6f57b00e79b8"; }; - beamDeps = [ plug_1_1_1 ]; + beamDeps = [ plug_1_1_3 ]; meta = { description = ''Plug to automatically generate and serve project @@ -8457,7 +10087,7 @@ let docker_0_3_0 = callPackage ( - { buildRebar3, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildRebar3, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildRebar3 { name = "docker"; version = "0.3.0"; @@ -8468,7 +10098,7 @@ let "ad97dbaa51a615a7694018d95b0b09403b6d552a03ddb3ba50f121c814cc624a"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''Elixir client for the Docker Remote API using @@ -8481,19 +10111,19 @@ let docker = docker_0_3_0; - dogma_0_1_0 = callPackage + dogma_0_1_4 = callPackage ( - { buildMix, fetchHex, poison_1_5_2 }: + { buildMix, fetchHex, poison_2_1_0 }: buildMix { name = "dogma"; - version = "0.1.0"; + version = "0.1.4"; src = fetchHex { pkg = "dogma"; - version = "0.1.0"; + version = "0.1.4"; sha256 = - "cd261c67d712ce4e9d8020d9cb6627c756db8dc5466c169611d81b79c5a261d0"; + "ebf6f6bf8291e4a73b2886fc35e05224f0068237594f0e0609d1834863172245"; }; - beamDeps = [ poison_1_5_2 ]; + beamDeps = [ poison_2_1_0 ]; meta = { description = ''A code style linter for Elixir, powered by @@ -8504,7 +10134,7 @@ let } ) {}; - dogma = dogma_0_1_0; + dogma = dogma_0_1_4; dogstatsd_0_0_3 = callPackage ( @@ -8617,8 +10247,8 @@ let dovetail_0_0_3 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "dovetail"; version = "0.0.3"; src = fetchHex { @@ -8641,7 +10271,7 @@ let dpd_client_0_0_6 = callPackage ( - { buildMix, fetchHex, hackney_1_0_6, poison_1_0_3 }: + { buildMix, fetchHex, hackney_1_4_8, poison_1_0_3 }: buildMix { name = "dpd_client"; version = "0.0.6"; @@ -8651,7 +10281,7 @@ let sha256 = "080d8e9e4c68db87e42ead3fa3ffbc8cde2cadac441dbe81fa7a1b903486cc2d"; }; - beamDeps = [ hackney_1_0_6 poison_1_0_3 ]; + beamDeps = [ hackney_1_4_8 poison_1_0_3 ]; meta = { longDescription = ''`dpd_client` is an API client for the DPD @@ -8758,7 +10388,7 @@ let dropbox_0_0_7 = callPackage ( - { buildMix, fetchHex, hackney_1_0_6, jazz_0_2_1 }: + { buildMix, fetchHex, hackney_1_4_8, jazz_0_2_1 }: buildMix { name = "dropbox"; version = "0.0.7"; @@ -8768,7 +10398,7 @@ let sha256 = "d881be0c042856e0b2ff446dfac0b64337f5cbbb18479f4c81080d3d2cd7e4af"; }; - beamDeps = [ hackney_1_0_6 jazz_0_2_1 ]; + beamDeps = [ hackney_1_4_8 jazz_0_2_1 ]; meta = { description = ''A Dropbox Core API client for Elixir''; @@ -8780,19 +10410,19 @@ let dropbox = dropbox_0_0_7; - dublin_bus_api_0_1_5 = callPackage + dublin_bus_api_0_1_6 = callPackage ( - { buildMix, fetchHex, httpoison_0_8_1, floki_0_7_1 }: + { buildMix, fetchHex, httpoison_0_8_2, floki_0_8_0 }: buildMix { name = "dublin_bus_api"; - version = "0.1.5"; + version = "0.1.6"; src = fetchHex { pkg = "dublin_bus_api"; - version = "0.1.5"; + version = "0.1.6"; sha256 = - "54fb2c72fa682481970b126f53a45f2a38cc8d7fdff132483534f4ff04407bc1"; + "4ac4811519a176c149b03c021bebd44771a279c489fe09c18a1f16f373c7bbb8"; }; - beamDeps = [ httpoison_0_8_1 floki_0_7_1 ]; + beamDeps = [ httpoison_0_8_2 floki_0_8_0 ]; meta = { description = ''Access to the Real Time Passenger Information @@ -8803,7 +10433,7 @@ let } ) {}; - dublin_bus_api = dublin_bus_api_0_1_5; + dublin_bus_api = dublin_bus_api_0_1_6; durga_transport_1_0_1 = callPackage ( @@ -8923,17 +10553,41 @@ let e_queue = e_queue_1_0_1; - earmark_0_1_14 = callPackage + e_quip_0_0_1 = callPackage + ( + { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: + buildMix { + name = "e_quip"; + version = "0.0.1"; + src = fetchHex { + pkg = "e_quip"; + version = "0.0.1"; + sha256 = + "e6fe9eeb96dbc863b527a792e730ea41aea43caef2a5db68ea2c4c9fc21f552a"; + }; + beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; + + meta = { + description = ''Simple Quip API Client''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/mmartinson/e_quip"; + }; + } + ) {}; + + e_quip = e_quip_0_0_1; + + earmark_0_1_15 = callPackage ( { buildMix, fetchHex }: buildMix { name = "earmark"; - version = "0.1.14"; + version = "0.1.15"; src = fetchHex { pkg = "earmark"; - version = "0.1.14"; + version = "0.1.15"; sha256 = - "5e44505d71df50a839bde48c922357f9340168340dfc7502f581f68b6a0a29f9"; + "cffc809198d000cc9b81cce80ebc673da8647291451015da42fc523f9dd781d7"; }; meta = { @@ -9074,6 +10728,31 @@ let easypost = easypost_0_0_1; + ec2_0_9_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ec2 = ec2_0_9_1; + ecc_0_1_3 = callPackage ( { buildMix, fetchHex }: @@ -9103,7 +10782,7 @@ let ecdo_0_1_4 = callPackage ( { - buildMix, fetchHex, postgrex_0_11_1, mariaex_0_6_2, ecto_1_0_7 + buildMix, fetchHex, postgrex_0_11_1, mariaex_0_7_0, ecto_1_0_7 }: buildMix { name = "ecdo"; @@ -9114,7 +10793,7 @@ let sha256 = "362c75113bca6c8379ac2b1654ae78ed099ab0faee4a1fbacb7b4b9b137b9f1d"; }; - beamDeps = [ postgrex_0_11_1 mariaex_0_6_2 ecto_1_0_7 ]; + beamDeps = [ postgrex_0_11_1 mariaex_0_7_0 ecto_1_0_7 ]; meta = { longDescription = ''Ecdo is a dynamic interface for ecto aims to @@ -9155,6 +10834,30 @@ let echo = echo_0_2_0; + echonest_ex_0_0_2 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: + buildMix { + name = "echonest_ex"; + version = "0.0.2"; + src = fetchHex { + pkg = "echonest_ex"; + version = "0.0.2"; + sha256 = + "d8b3d7f2b04eb48b689877aaf9db30f33acea3ea02daca5aad8d105ac785bd98"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; + + meta = { + description = ''Echonest api wrapper for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/desmondhume/echonest_ex"; + }; + } + ) {}; + + echonest_ex = echonest_ex_0_0_2; + econfig_0_7_1 = callPackage ( { buildRebar3, fetchHex }: @@ -9178,6 +10881,46 @@ let econfig = econfig_0_7_1; + ecto_0_15_0 = callPackage + ( + { + buildMix, + 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"; + }; + } + ) {}; + ecto_0_16_0 = callPackage ( { @@ -9221,7 +10964,7 @@ let ecto_0_2_4 = callPackage ( { - buildMix, fetchHex, postgrex_0_6_0, poolboy_1_2_1, decimal_0_2_5 + buildMix, fetchHex, postgrex_0_8_4, poolboy_1_2_1, decimal_0_2_5 }: buildMix { name = "ecto"; @@ -9232,7 +10975,7 @@ let sha256 = "b6918fb8a0b72220238832616c42937ac04d2f8016d687b53e3a241234cae4f3"; }; - beamDeps = [ postgrex_0_6_0 poolboy_1_2_1 decimal_0_2_5 ]; + beamDeps = [ postgrex_0_8_4 poolboy_1_2_1 decimal_0_2_5 ]; meta = { longDescription = ''Ecto is a domain specific language for @@ -9244,21 +10987,21 @@ let } ) {}; - ecto_0_2_6 = callPackage + ecto_0_2_7 = callPackage ( { - buildMix, fetchHex, postgrex_0_6_0, poolboy_1_5_1, decimal_0_2_5 + buildMix, fetchHex, postgrex_0_8_4, poolboy_1_4_2, decimal_0_2_5 }: buildMix { name = "ecto"; - version = "0.2.6"; + version = "0.2.7"; src = fetchHex { pkg = "ecto"; - version = "0.2.6"; + version = "0.2.7"; sha256 = - "746fd42fa1a9fae304d9bb280782d9456a1f092ea71ead3a876876753c936dc8"; + "3f26fd41a9e34272f5e753a010b1494646892130c91603da717b375c7acfed7f"; }; - beamDeps = [ postgrex_0_6_0 poolboy_1_5_1 decimal_0_2_5 ]; + beamDeps = [ postgrex_0_8_4 poolboy_1_4_2 decimal_0_2_5 ]; meta = { longDescription = ''Ecto is a domain specific language for @@ -9273,7 +11016,7 @@ let ecto_0_5_1 = callPackage ( { - buildMix, fetchHex, postgrex_0_6_0, poolboy_1_4_2, decimal_0_2_5 + buildMix, fetchHex, postgrex_0_8_4, poolboy_1_4_2, decimal_0_2_5 }: buildMix { name = "ecto"; @@ -9284,7 +11027,7 @@ let sha256 = "a7f1f8022f6b8c53edc91076bcc885e1124fdf14cdc2c4a11d3b9b4c26cf34a8"; }; - beamDeps = [ postgrex_0_6_0 poolboy_1_4_2 decimal_0_2_5 ]; + beamDeps = [ postgrex_0_8_4 poolboy_1_4_2 decimal_0_2_5 ]; meta = { longDescription = ''Ecto is a domain specific language for @@ -9336,7 +11079,7 @@ let } ) {}; - ecto_1_1_3 = callPackage + ecto_1_1_5 = callPackage ( { buildMix, @@ -9345,24 +11088,24 @@ let postgrex_0_11_1, poolboy_1_5_1, poison_1_5_2, - mariaex_0_5_0, + mariaex_0_1_7, decimal_1_1_1 }: buildMix { name = "ecto"; - version = "1.1.3"; + version = "1.1.5"; src = fetchHex { pkg = "ecto"; - version = "1.1.3"; + version = "1.1.5"; sha256 = - "0db9486edf2bc98cca77e5c22f7cb7e5a2d56fdb0268e4bb2e67353cc058b060"; + "6283cae93763257ac7a319e28ab2308efcd3a4c1571e65ef55721067a01caf69"; }; beamDeps = [ sbroker_0_7_0 postgrex_0_11_1 poolboy_1_5_1 poison_1_5_2 - mariaex_0_5_0 + mariaex_0_1_7 decimal_1_1_1 ]; @@ -9376,7 +11119,7 @@ let } ) {}; - ecto_2_0_0_beta_0 = callPackage + ecto_2_0_0_beta_2 = callPackage ( { buildMix, @@ -9385,24 +11128,24 @@ let postgrex_0_11_1, poolboy_1_5_1, poison_1_0_3, - mariaex_0_6_2, + mariaex_0_7_0, decimal_1_1_1 }: buildMix { name = "ecto"; - version = "2.0.0-beta.0"; + version = "2.0.0-beta.2"; src = fetchHex { pkg = "ecto"; - version = "2.0.0-beta.0"; + version = "2.0.0-beta.2"; sha256 = - "9c281d7de07610cc1025d2d5d2910aace0b0618c60fcbd6fd6f4b720c2f4e996"; + "8b4f7ee50b342b9ea8a9c64b855625f2f805ddb981b89261d464fe84e93e40bd"; }; beamDeps = [ sbroker_0_7_0 postgrex_0_11_1 poolboy_1_5_1 poison_1_0_3 - mariaex_0_6_2 + mariaex_0_7_0 decimal_1_1_1 ]; @@ -9416,7 +11159,7 @@ let } ) {}; - ecto = ecto_2_0_0_beta_0; + ecto = ecto_2_0_0_beta_2; ecto_audit_0_0_1 = callPackage ( @@ -9448,8 +11191,8 @@ let buildMix, fetchHex, postgrex_0_11_1, - mariaex_0_6_2, - ecto_2_0_0_beta_0 + mariaex_0_7_0, + ecto_2_0_0_beta_2 }: buildMix { name = "ecto_enum"; @@ -9460,7 +11203,7 @@ let sha256 = "2aabbeeee17c67b8336890cc1888b1104b71e29852d464a77efca4257b02a8d9"; }; - beamDeps = [ postgrex_0_11_1 mariaex_0_6_2 ecto_2_0_0_beta_0 ]; + beamDeps = [ postgrex_0_11_1 mariaex_0_7_0 ecto_2_0_0_beta_2 ]; meta = { description = ''Ecto extension to support enums in models''; @@ -9525,7 +11268,7 @@ let ecto_hstore_0_0_1 = callPackage ( - { buildMix, fetchHex, ecto_2_0_0_beta_0 }: + { buildMix, fetchHex, ecto_2_0_0_beta_2 }: buildMix { name = "ecto_hstore"; version = "0.0.1"; @@ -9535,7 +11278,7 @@ let sha256 = "0dca7ad14d0fa42038594e00a6f1e1fb3476644f71299f9e4ca10f1b9d6098cb"; }; - beamDeps = [ ecto_2_0_0_beta_0 ]; + beamDeps = [ ecto_2_0_0_beta_2 ]; meta = { description = ''Ecto.Hstore adds Postgres Hstore compatibility to @@ -9554,8 +11297,8 @@ let buildMix, fetchHex, postgrex_0_11_1, - mariaex_0_6_2, - ecto_2_0_0_beta_0 + mariaex_0_7_0, + ecto_2_0_0_beta_2 }: buildMix { name = "ecto_it"; @@ -9566,7 +11309,7 @@ let sha256 = "ddbf27e85547b9812d7b49bc2252b4667468582b174045ba2bb1a804d209a860"; }; - beamDeps = [ postgrex_0_11_1 mariaex_0_6_2 ecto_2_0_0_beta_0 ]; + beamDeps = [ postgrex_0_11_1 mariaex_0_7_0 ecto_2_0_0_beta_2 ]; meta = { longDescription = ''Ecto IT is library for writing integration @@ -9582,7 +11325,7 @@ let ecto_lazy_float_0_1_2 = callPackage ( - { buildMix, fetchHex, ecto_2_0_0_beta_0 }: + { buildMix, fetchHex, ecto_2_0_0_beta_2 }: buildMix { name = "ecto_lazy_float"; version = "0.1.2"; @@ -9592,7 +11335,7 @@ let sha256 = "76f14bf8d2bf52e3143c79fdf0e9d9bbb2fb1b087e847b13347e52e5b0c5da94"; }; - beamDeps = [ ecto_2_0_0_beta_0 ]; + beamDeps = [ ecto_2_0_0_beta_2 ]; meta = { description = ''Ecto.LazyFloat takes integer, strings, and floats @@ -9605,19 +11348,19 @@ let ecto_lazy_float = ecto_lazy_float_0_1_2; - ecto_ldap_0_2_0 = callPackage + ecto_ldap_0_2_4 = callPackage ( - { buildMix, fetchHex, ecto_2_0_0_beta_0 }: + { buildMix, fetchHex, ecto_2_0_0_beta_2 }: buildMix { name = "ecto_ldap"; - version = "0.2.0"; + version = "0.2.4"; src = fetchHex { pkg = "ecto_ldap"; - version = "0.2.0"; + version = "0.2.4"; sha256 = - "9228e091811d699c530a717633f0be8f3468d80f81f721c5f4ce2bd9b401de13"; + "156294145a5d4ab0b71f86f2738a991de0fa6352360f5d5383b22dc18a25dc57"; }; - beamDeps = [ ecto_2_0_0_beta_0 ]; + beamDeps = [ ecto_2_0_0_beta_2 ]; meta = { description = ''An Ecto adapter for LDAP''; @@ -9627,7 +11370,7 @@ let } ) {}; - ecto_ldap = ecto_ldap_0_2_0; + ecto_ldap = ecto_ldap_0_2_4; ecto_migrate_0_6_3 = callPackage ( @@ -9635,7 +11378,7 @@ let buildMix, fetchHex, postgrex_0_11_1, - mariaex_0_6_2, + mariaex_0_7_0, ecto_it_0_2_0, ecto_1_0_7 }: @@ -9649,7 +11392,7 @@ let "a604f2fe7874c674bd42fc70f3e89776d3738571d252ec8b785a107a6fa12b5c"; }; beamDeps = [ - postgrex_0_11_1 mariaex_0_6_2 ecto_it_0_2_0 ecto_1_0_7 + postgrex_0_11_1 mariaex_0_7_0 ecto_it_0_2_0 ecto_1_0_7 ]; meta = { @@ -9690,7 +11433,7 @@ let ecto_validation_case_0_1_1 = callPackage ( - { buildMix, fetchHex, ex_doc_0_11_4, ecto_2_0_0_beta_0 }: + { buildMix, fetchHex, ex_doc_0_11_4, ecto_2_0_0_beta_2 }: buildMix { name = "ecto_validation_case"; version = "0.1.1"; @@ -9700,7 +11443,7 @@ let sha256 = "0bec902247929e66cb0687f09d458633385843d18ca6ec1ac2557e6754b55cbd"; }; - beamDeps = [ ex_doc_0_11_4 ecto_2_0_0_beta_0 ]; + beamDeps = [ ex_doc_0_11_4 ecto_2_0_0_beta_2 ]; meta = { description = ''Ecto.ValidationCase simplifies writing validation @@ -9714,19 +11457,19 @@ let ecto_validation_case = ecto_validation_case_0_1_1; - ectograph_0_0_1 = callPackage + ectograph_0_0_2 = callPackage ( - { buildMix, fetchHex, graphql_0_1_2, ecto_1_1_3 }: + { buildMix, fetchHex, graphql_0_2_0, ecto_1_1_5 }: buildMix { name = "ectograph"; - version = "0.0.1"; + version = "0.0.2"; src = fetchHex { pkg = "ectograph"; - version = "0.0.1"; + version = "0.0.2"; sha256 = - "1fe701999ff1648cdac64ed6500793f8534fe7771ed5b533c21bc42a648d3484"; + "44eff08624c5f93af30878f4e1e47d69354078ff9081bf2b0203513bb6e0ead9"; }; - beamDeps = [ graphql_0_1_2 ecto_1_1_3 ]; + beamDeps = [ graphql_0_2_0 ecto_1_1_5 ]; meta = { longDescription = ''Ectograph is a set of utility functions for @@ -9738,11 +11481,11 @@ let } ) {}; - ectograph = ectograph_0_0_1; + ectograph = ectograph_0_0_2; ectoo_0_0_4 = callPackage ( - { buildMix, fetchHex, postgrex_0_11_1, ecto_2_0_0_beta_0 }: + { buildMix, fetchHex, postgrex_0_11_1, ecto_2_0_0_beta_2 }: buildMix { name = "ectoo"; version = "0.0.4"; @@ -9752,7 +11495,7 @@ let sha256 = "bf5852e97e64666ebd57df710e4cb1239d3fcf135d7ae9d5d666fc53aa0e0b46"; }; - beamDeps = [ postgrex_0_11_1 ecto_2_0_0_beta_0 ]; + beamDeps = [ postgrex_0_11_1 ecto_2_0_0_beta_2 ]; meta = { longDescription = ''Make simple things easy in Ecto, e.g. @@ -9774,7 +11517,7 @@ let postgrex_0_9_1, poison_1_5_2, mariaex_0_4_3, - ecto_2_0_0_beta_0 + ecto_2_0_0_beta_2 }: buildMix { name = "ectophile"; @@ -9789,7 +11532,7 @@ let postgrex_0_9_1 poison_1_5_2 mariaex_0_4_3 - ecto_2_0_0_beta_0 + ecto_2_0_0_beta_2 ]; meta = { @@ -9804,7 +11547,7 @@ let edeliver_1_1_4 = callPackage ( - { buildMix, fetchHex, exrm_1_0_0_rc8 }: + { buildMix, fetchHex, exrm_1_0_3 }: buildMix { name = "edeliver"; version = "1.1.4"; @@ -9814,7 +11557,7 @@ let sha256 = "b7c95a499efb0fc9baf681dfaba3c09c64d9cde5c4cf4faafd44d6de9cba8928"; }; - beamDeps = [ exrm_1_0_0_rc8 ]; + beamDeps = [ exrm_1_0_3 ]; meta = { longDescription = ''Build and Deploy Elixir Applications and @@ -9855,7 +11598,7 @@ let edgarex_0_0_2 = callPackage ( - { buildMix, fetchHex, httpotion_2_0_0, exquery_0_0_11 }: + { buildMix, fetchHex, httpotion_2_2_2, exquery_0_0_11 }: buildMix { name = "edgarex"; version = "0.0.2"; @@ -9865,7 +11608,7 @@ let sha256 = "99e25e685bc44a1f804729779e77d5e3d1920f42c99478cd9b712d724b4f6af4"; }; - beamDeps = [ httpotion_2_0_0 exquery_0_0_11 ]; + beamDeps = [ httpotion_2_2_2 exquery_0_0_11 ]; meta = { longDescription = '' A set of utilities for fetching documents @@ -9933,8 +11676,8 @@ let edown_0_7_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "edown"; version = "0.7.0"; src = fetchHex { @@ -9959,8 +11702,8 @@ let { buildMix, fetchHex, - tzdata_0_1_8, - timex_1_0_1, + tzdata_0_1_201603, + timex_1_0_2, plug_0_14_0, earmark_0_1_19, cowboy_1_0_4 @@ -9975,8 +11718,8 @@ let "c2f4bc1e6dbada6b7086e92db14a401ac1440d25d5c5ac078fc55e6545c73f4e"; }; beamDeps = [ - tzdata_0_1_8 - timex_1_0_1 + tzdata_0_1_201603 + timex_1_0_2 plug_0_14_0 earmark_0_1_19 cowboy_1_0_4 @@ -9992,17 +11735,65 @@ let eeb = eeb_0_1_3; + efirebirdsql_0_1_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + efirebirdsql = efirebirdsql_0_1_1; + + efrisby_0_2_0 = callPackage + ( + { buildRebar3, fetchHex, jsx_2_8_0, hackney_1_4_8 }: + buildRebar3 { + name = "efrisby"; + version = "0.2.0"; + src = fetchHex { + pkg = "efrisby"; + version = "0.2.0"; + sha256 = + "5ad6f030a9e6b7611af09ce009106dcad9fa4ab3d23aa6db03573082f4824470"; + }; + + beamDeps = [ jsx_2_8_0 hackney_1_4_8 ]; + + meta = { + description = ''A REST API testing framework for erlang''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/FabioBatSilva/efrisby"; + }; + } + ) {}; + + efrisby = efrisby_0_2_0; + egithub_0_2_2 = callPackage ( { - buildRebar3, + buildErlangMk, fetchHex, shotgun_0_2_2, jiffy_0_14_7, lager_3_0_2, goldrush_0_1_7 }: - buildRebar3 { + buildErlangMk { name = "egithub"; version = "0.2.2"; src = fetchHex { @@ -10011,7 +11802,6 @@ let sha256 = "ff8e279d3868576cc2a05336c7ca4bed3972f7a01676be859b7e1750da4570f8"; }; - beamDeps = [ shotgun_0_2_2 jiffy_0_14_7 lager_3_0_2 goldrush_0_1_7 ]; @@ -10099,7 +11889,7 @@ let eio_0_1_0 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, plug_1_1_1, cowboy_1_0_4 }: + { buildMix, fetchHex, poison_1_5_2, plug_1_1_3, cowboy_1_0_4 }: buildMix { name = "eio"; version = "0.1.0"; @@ -10109,7 +11899,7 @@ let sha256 = "f39f017c73713b36ee27d8a0635634ac2e96b4d540f28db9dd358d8744dccd88"; }; - beamDeps = [ poison_1_5_2 plug_1_1_1 cowboy_1_0_4 ]; + beamDeps = [ poison_1_5_2 plug_1_1_3 cowboy_1_0_4 ]; meta = { description = ''Engine.io server for Elixir.''; @@ -10121,24 +11911,24 @@ let eio = eio_0_1_0; - ejabberd_16_1_0_beta1 = callPackage + ejabberd_16_2_0 = callPackage ( { buildMix, fetchHex, stun_1_0_1, - stringprep_1_0_2, + stringprep_1_0_3, sqlite3_1_1_5, p1_xmlrpc_1_15_1, p1_utils_1_0_3, - p1_pgsql_1_0_1, + p1_pgsql_1_1_0, p1_oauth2_0_6_1, p1_mysql_1_0_1, lager_3_0_2, jiffy_0_14_7, iconv_1_0_0, - fast_yaml_1_0_2, - fast_xml_1_1_3, + fast_yaml_1_0_3, + fast_xml_1_1_11, fast_tls_1_0_1, ezlib_1_0_1, esip_1_0_2, @@ -10147,27 +11937,27 @@ let }: buildMix { name = "ejabberd"; - version = "16.1.0-beta1"; + version = "16.2.0"; src = fetchHex { pkg = "ejabberd"; - version = "16.1.0-beta1"; + version = "16.2.0"; sha256 = - "c1f6b702ab0e75866979c62edeab4dcc01a2cd9d375a73799b7288dbdc77d743"; + "4e51457ac9f850782a5da63d060b8f710c2c652c7bd2062bb8c804a13985ca6e"; }; beamDeps = [ stun_1_0_1 - stringprep_1_0_2 + stringprep_1_0_3 sqlite3_1_1_5 p1_xmlrpc_1_15_1 p1_utils_1_0_3 - p1_pgsql_1_0_1 + p1_pgsql_1_1_0 p1_oauth2_0_6_1 p1_mysql_1_0_1 lager_3_0_2 jiffy_0_14_7 iconv_1_0_0 - fast_yaml_1_0_2 - fast_xml_1_1_3 + fast_yaml_1_0_3 + fast_xml_1_1_11 fast_tls_1_0_1 ezlib_1_0_1 esip_1_0_2 @@ -10184,7 +11974,7 @@ let } ) {}; - ejabberd = ejabberd_16_1_0_beta1; + ejabberd = ejabberd_16_2_0; ejabberd_dev_15_9_0 = callPackage ( @@ -10236,19 +12026,19 @@ let ekstat = ekstat_0_2_2; - elastex_0_1_1 = callPackage + elastex_0_1_2 = callPackage ( - { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: buildMix { name = "elastex"; - version = "0.1.1"; + version = "0.1.2"; src = fetchHex { pkg = "elastex"; - version = "0.1.1"; + version = "0.1.2"; sha256 = - "e08e9640f0d68250dfbe3a6d54855f75742db647ace24a42667d88e234c5849c"; + "eaab5305db3d5d326e471dc1799606b7055971dfb7d9a27571850d2ce7e97f9b"; }; - beamDeps = [ poison_2_1_0 httpoison_0_8_1 ]; + beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; meta = { description = ''Data driven elixir client for Elasticsearch.''; @@ -10258,7 +12048,7 @@ let } ) {}; - elastex = elastex_0_1_1; + elastex = elastex_0_1_2; elastix_0_1_0 = callPackage ( @@ -10287,7 +12077,7 @@ let elaxtic_0_0_1 = callPackage ( - { buildMix, fetchHex, httpoison_0_8_1 }: + { buildMix, fetchHex, httpoison_0_8_2 }: buildMix { name = "elaxtic"; version = "0.0.1"; @@ -10297,7 +12087,7 @@ let sha256 = "a912a0327bfe1c6443cec47a03d11450fed2e649bfdcd4e77bdb9176baa8cd45"; }; - beamDeps = [ httpoison_0_8_1 ]; + beamDeps = [ httpoison_0_8_2 ]; meta = { description = ''ElasticSearch client for Elixir and Ecto @@ -10409,8 +12199,8 @@ let elixir_ale_0_4_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "elixir_ale"; version = "0.4.1"; src = fetchHex { @@ -10456,17 +12246,17 @@ let elixir_ami = elixir_ami_0_0_3; - elixir_authorizenet_0_2_1 = callPackage + elixir_authorizenet_0_2_2 = callPackage ( { buildMix, fetchHex, xml_builder_0_0_8, exmerl_0_1_1 }: buildMix { name = "elixir_authorizenet"; - version = "0.2.1"; + version = "0.2.2"; src = fetchHex { pkg = "elixir_authorizenet"; - version = "0.2.1"; + version = "0.2.2"; sha256 = - "ac690facc36206982a7bc1eca4cf3d50a68194e05c2cf927e0e3f166c71e9f0f"; + "10111f4fe073d69a5ae817838377ba52bf6b04199c8386f48ca13804db6e2f70"; }; beamDeps = [ xml_builder_0_0_8 exmerl_0_1_1 ]; @@ -10488,7 +12278,7 @@ let } ) {}; - elixir_authorizenet = elixir_authorizenet_0_2_1; + elixir_authorizenet = elixir_authorizenet_0_2_2; elixir_bencode_1_0_0 = callPackage ( @@ -10537,17 +12327,17 @@ let elixir_drawille = elixir_drawille_0_0_3; - elixir_exif_0_1_0 = callPackage + elixir_exif_0_1_1 = callPackage ( { buildMix, fetchHex }: buildMix { name = "elixir_exif"; - version = "0.1.0"; + version = "0.1.1"; src = fetchHex { pkg = "elixir_exif"; - version = "0.1.0"; + version = "0.1.1"; sha256 = - "9d8e79d247495347c15d89172e86b49b3c9592b8df8d70ec0a4db126c3cd599b"; + "a491a3e134c00f2a1f59c8e3a1bd62b9b94c1ce4179a20d737903f3edcc9bd78"; }; meta = { @@ -10559,7 +12349,7 @@ let } ) {}; - elixir_exif = elixir_exif_0_1_0; + elixir_exif = elixir_exif_0_1_1; elixir_feed_parser_0_9_0 = callPackage ( @@ -10584,17 +12374,17 @@ let elixir_feed_parser = elixir_feed_parser_0_9_0; - elixir_freshbooks_0_0_2 = callPackage + elixir_freshbooks_0_0_4 = callPackage ( { buildMix, fetchHex, xml_builder_0_0_8, exmerl_0_1_1 }: buildMix { name = "elixir_freshbooks"; - version = "0.0.2"; + version = "0.0.4"; src = fetchHex { pkg = "elixir_freshbooks"; - version = "0.0.2"; + version = "0.0.4"; sha256 = - "a40deaaf4400c0de95b7bf4b19fc9216a063e44854113301914b7b893e8c66d4"; + "404ba66129bb1a756f6c06460d483d72d59990bc460616a1e61bd87af4108628"; }; beamDeps = [ xml_builder_0_0_8 exmerl_0_1_1 ]; @@ -10606,12 +12396,12 @@ let } ) {}; - elixir_freshbooks = elixir_freshbooks_0_0_2; + elixir_freshbooks = elixir_freshbooks_0_0_4; elixir_ipfs_api_0_1_0 = callPackage ( { - buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1, ex_doc_0_10_0 + buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2, ex_doc_0_10_0 }: buildMix { name = "elixir_ipfs_api"; @@ -10622,7 +12412,7 @@ let sha256 = "b8b6656ce18ff070b2328436cfa3d55f08b3e0a2f98bee49d4b3cb49c144684b"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ex_doc_0_10_0 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ex_doc_0_10_0 ]; meta = { description = ''An elixir client library for the IPFS API''; @@ -10715,7 +12505,7 @@ let uuid_1_1_3, socket_0_3_1, poison_1_5_2, - httpotion_2_1_0 + httpotion_2_2_2 }: buildMix { name = "elixir_nsq"; @@ -10727,7 +12517,7 @@ let "6d30c3754dfdd988f927b9c6ae51d3e0ec4b0d2477b99047baf7a52c96bf9494"; }; beamDeps = [ - uuid_1_1_3 socket_0_3_1 poison_1_5_2 httpotion_2_1_0 + uuid_1_1_3 socket_0_3_1 poison_1_5_2 httpotion_2_2_2 ]; meta = { @@ -10742,6 +12532,29 @@ let elixir_nsq = elixir_nsq_1_0_3; + elixir_prelude_0_2_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + elixir_prelude = elixir_prelude_0_2_1; + elixir_radius_0_1_0 = callPackage ( { buildMix, fetchHex }: @@ -10765,19 +12578,19 @@ let elixir_radius = elixir_radius_0_1_0; - elixir_script_0_15_2 = callPackage + elixir_script_0_16_0 = callPackage ( - { buildMix, fetchHex, estree_2_2_0 }: + { buildMix, fetchHex, estree_2_3_0 }: buildMix { name = "elixir_script"; - version = "0.15.2"; + version = "0.16.0"; src = fetchHex { pkg = "elixir_script"; - version = "0.15.2"; + version = "0.16.0"; sha256 = - "daa98f9f065576450843e9f867c7c8afe38edb29345aec276c112e4786ff2f5c"; + "a2ff037d9c3562198fb3e35ff112cb35827078b1a905368be5ff351c582966a9"; }; - beamDeps = [ estree_2_2_0 ]; + beamDeps = [ estree_2_3_0 ]; meta = { description = ''ElixirScript: compiles Elixir code to @@ -10788,7 +12601,7 @@ let } ) {}; - elixir_script = elixir_script_0_15_2; + elixir_script = elixir_script_0_16_0; elixir_talk_1_0_1 = callPackage ( @@ -10838,6 +12651,30 @@ let elixir_tea = elixir_tea_1_0_0; + elixir_v8_0_2_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + elixir_v8 = elixir_v8_0_2_2; + elixlsx_0_0_2 = callPackage ( { buildMix, fetchHex }: @@ -10864,7 +12701,7 @@ let elixtagram_0_2_5 = callPackage ( { - buildMix, fetchHex, poison_1_5_2, oauth2_0_5_0, httpoison_0_7_5 + buildMix, fetchHex, poison_1_5_2, oauth2_0_6_0, httpoison_0_7_5 }: buildMix { name = "elixtagram"; @@ -10875,7 +12712,7 @@ let sha256 = "71503f2bfec0d4728449321e4e1aaae7c8ae24974d53b904327bcef5b16e6900"; }; - beamDeps = [ poison_1_5_2 oauth2_0_5_0 httpoison_0_7_5 ]; + beamDeps = [ poison_1_5_2 oauth2_0_6_0 httpoison_0_7_5 ]; meta = { description = ''Instagram client library for Elixir.''; @@ -10887,17 +12724,17 @@ let elixtagram = elixtagram_0_2_5; - elli_1_0_4 = callPackage + elli_1_0_5 = callPackage ( { buildRebar3, fetchHex }: buildRebar3 { name = "elli"; - version = "1.0.4"; + version = "1.0.5"; src = fetchHex { pkg = "elli"; - version = "1.0.4"; + version = "1.0.5"; sha256 = - "87641b9c069b1372dac4e1bdda795076ea3142af78aac0d63896a38079e89e8e"; + "fb55bab884f1d921f2e86c00738909a9e56aca14604e617b138e163093609c97"; }; meta = { @@ -10909,11 +12746,11 @@ let } ) {}; - elli = elli_1_0_4; + elli = elli_1_0_5; elmit_0_0_1 = callPackage ( - { buildMix, fetchHex, httpotion_2_1_0 }: + { buildMix, fetchHex, httpotion_2_2_2 }: buildMix { name = "elmit"; version = "0.0.1"; @@ -10923,7 +12760,7 @@ let sha256 = "90e5df811553733dd7505f9cc81397c3bdaf9c336eb3542c7e44f3c2012ef96e"; }; - beamDeps = [ httpotion_2_1_0 ]; + beamDeps = [ httpotion_2_2_2 ]; meta = { description = ''Google Translate with speech synthesis in your @@ -11164,6 +13001,29 @@ let eper = eper_0_94_0; + epgpool_1_0_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "epgpool"; + version = "1.0.0"; + src = fetchHex { + pkg = "epgpool"; + version = "1.0.0"; + sha256 = + "fefcde1302722d010a71733cd2e1403ab40686343e7281221136b24d6fad5889"; + }; + + meta = { + description = ''Erlang postgresql pool application''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/egobrain/epgpool"; + }; + } + ) {}; + + epgpool = epgpool_1_0_0; + epgsql_3_1_1 = callPackage ( { buildRebar3, fetchHex }: @@ -11187,6 +13047,30 @@ let epgsql = epgsql_3_1_1; + epiphany_0_1_0_dev = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + epiphany = epiphany_0_1_0_dev; + episcina_1_1_0 = callPackage ( { buildRebar3, fetchHex, gproc_0_3_1 }: @@ -11306,6 +13190,29 @@ let eql = eql_0_1_2; + equery_0_2_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + equery = equery_0_2_0; + eredis_1_0_8 = callPackage ( { buildRebar3, fetchHex }: @@ -11355,17 +13262,17 @@ let eredis_cluster = eredis_cluster_0_5_4; - erl2ex_0_0_7 = callPackage + erl2ex_0_0_8 = callPackage ( { buildMix, fetchHex }: buildMix { name = "erl2ex"; - version = "0.0.7"; + version = "0.0.8"; src = fetchHex { pkg = "erl2ex"; - version = "0.0.7"; + version = "0.0.8"; sha256 = - "2df3a8441cb059784523f7e2da15e897cf211a6cfec942c63032a4e5798805f1"; + "bbe0b1a43e1621158d7985e77d7d1f00db0410d5987b429c30c8d0cc582e0f6f"; }; meta = { @@ -11378,7 +13285,30 @@ let } ) {}; - erl2ex = erl2ex_0_0_7; + erl2ex = erl2ex_0_0_8; + + erlang_dbus_0_2_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "erlang_dbus"; + version = "0.2.0"; + src = fetchHex { + pkg = "erlang_dbus"; + version = "0.2.0"; + sha256 = + "b00065acfae0cfea909335eab07339292a1f9a9c91b2f542d3841f86f4aac605"; + }; + + meta = { + description = ''A native erlang implementation of D-Bus''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/lizenn/erlang-dbus"; + }; + } + ) {}; + + erlang_dbus = erlang_dbus_0_2_0; erlang_localtime_1_0_0 = callPackage ( @@ -11547,11 +13477,34 @@ let } ) {}; - erlcloud = erlcloud_0_13_0; + erlcloud_0_13_2 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + erlcloud = erlcloud_0_13_2; erlcloud_0_9_2 = callPackage ( - { buildRebar3, fetchHex, meck_0_8_4, lhttpc_1_3_0, jsx_2_4_0 }: + { buildRebar3, fetchHex, meck_0_8_4, lhttpc_1_3_0, jsx_2_3_1 }: buildRebar3 { name = "erlcloud"; version = "0.9.2"; @@ -11562,7 +13515,7 @@ let "739ab77c3f007b3c8466e093726fb3e62b19691d70dbff4defc4beac61e48f12"; }; - beamDeps = [ meck_0_8_4 lhttpc_1_3_0 jsx_2_4_0 ]; + beamDeps = [ meck_0_8_4 lhttpc_1_3_0 jsx_2_3_1 ]; meta = { description = ''Erlang cloud computing library''; @@ -11574,8 +13527,8 @@ let erldn_1_0_5 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "erldn"; version = "1.0.5"; src = fetchHex { @@ -11617,7 +13570,52 @@ let } ) {}; - erlexec = erlexec_1_1_0; + erlexec_1_1_1 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "erlexec"; + version = "1.1.1"; + src = fetchHex { + pkg = "erlexec"; + version = "1.1.1"; + sha256 = + "86e354558e3e2275d5d611d08c87bb66bdffa500573b1af410d117d6b6bc460b"; + }; + compilePorts = true; + + meta = { + description = ''OS Process Manager''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/saleyn/erlexec"; + }; + } + ) {}; + + erlexec = erlexec_1_1_1; + + erlogger_0_1_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "erlogger"; + version = "0.1.0"; + src = fetchHex { + pkg = "erlogger"; + version = "0.1.0"; + sha256 = + "de2d64f0932e8af46264d92a224ed46e41f2b698b1bbd245ae19321715322146"; + }; + + meta = { + description = ''Logging service for Erlang Applications.''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/knusbaum/erlogger"; + }; + } + ) {}; + + erlogger = erlogger_0_1_0; erlsh_0_1_0 = callPackage ( @@ -11690,27 +13688,6 @@ let erltrace = erltrace_0_1_4; - erlware_commons_0_14_0 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "erlware_commons"; - version = "0.14.0"; - src = fetchHex { - pkg = "erlware_commons"; - version = "0.14.0"; - sha256 = - "ec36ca48ce0d4e64a7b0e00771260257e91162816254dc2d8d3cc9f83285dafe"; - }; - - meta = { - description = ''Additional standard library for Erlang''; - license = stdenv.lib.licenses.apsl20; - homepage = "https://github.com/erlware/erlware_commons"; - }; - } - ) {}; - erlware_commons_0_15_0 = callPackage ( { buildRebar3, fetchHex }: @@ -11778,7 +13755,30 @@ let } ) {}; - erlware_commons = erlware_commons_0_19_0; + erlware_commons_0_20_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + erlware_commons = erlware_commons_0_20_0; erlydtl_0_11_1 = callPackage ( @@ -11828,8 +13828,8 @@ let erlzk_0_6_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "erlzk"; version = "0.6.1"; src = fetchHex { @@ -11850,6 +13850,54 @@ let erlzk = erlzk_0_6_1; + erocksdb_0_4_1 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "erocksdb"; + version = "0.4.1"; + src = fetchHex { + pkg = "erocksdb"; + version = "0.4.1"; + sha256 = + "982f25f0dcf4d1aa176ce4ec1b01b630bef601e4f8e103890fac23e0a3dc72ec"; + }; + compilePorts = true; + + meta = { + description = ''RocksDB for Erlang''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/leo-project/erocksdb"; + }; + } + ) {}; + + erocksdb = erocksdb_0_4_1; + + erwatch_0_3_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "erwatch"; + version = "0.3.0"; + src = fetchHex { + pkg = "erwatch"; + version = "0.3.0"; + sha256 = + "0be5f4e83d762aa36ac3582efb480fb8041d06057a122c5d94a9956c4e3dbccc"; + }; + + meta = { + description = ''Erwatch is an Erlang/OTP application for tracking + changes in a file system.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/yuce/erwatch.git"; + }; + } + ) {}; + + erwatch = erwatch_0_3_0; + es_0_0_1 = callPackage ( { buildMix, fetchHex }: @@ -11874,8 +13922,8 @@ let escalus_2_6_4 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "escalus"; version = "2.6.4"; src = fetchHex { @@ -11944,17 +13992,17 @@ let esip = esip_1_0_2; - espec_0_8_11 = callPackage + espec_0_8_16 = callPackage ( { buildMix, fetchHex, meck_0_8_4 }: buildMix { name = "espec"; - version = "0.8.11"; + version = "0.8.16"; src = fetchHex { pkg = "espec"; - version = "0.8.11"; + version = "0.8.16"; sha256 = - "a30b084605a8a4eaf41004e9c25036eb493d98cbc2118f18a0e648011a5c3bd1"; + "f96d469838a747f60bb23a7515e4065808af31da1c0f3c50162b0dd383248a95"; }; beamDeps = [ meck_0_8_4 ]; @@ -11967,12 +14015,12 @@ let } ) {}; - espec = espec_0_8_11; + espec = espec_0_8_16; espec_phoenix_0_2_0 = callPackage ( { - buildMix, fetchHex, phoenix_1_1_4, floki_0_7_1, espec_0_8_11 + buildMix, fetchHex, phoenix_1_1_4, floki_0_7_2, espec_0_8_16 }: buildMix { name = "espec_phoenix"; @@ -11983,7 +14031,7 @@ let sha256 = "069e7df74370905cdce3c87144e707174c13e13c6541ecc4ac114465292bf08e"; }; - beamDeps = [ phoenix_1_1_4 floki_0_7_1 espec_0_8_11 ]; + beamDeps = [ phoenix_1_1_4 floki_0_7_2 espec_0_8_16 ]; meta = { description = ''ESpec for Phoenix web framework.''; @@ -11997,8 +14045,8 @@ let esqlite_0_2_2 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "esqlite"; version = "0.2.2"; src = fetchHex { @@ -12007,7 +14055,6 @@ let sha256 = "5f15f8014baa9d31ee83817afe9164b3ecd76f77b2de7515f2cca2ca75b642e0"; }; - compilePorts = true; meta = { description = ''A Sqlite3 NIF''; @@ -12019,17 +14066,17 @@ let esqlite = esqlite_0_2_2; - estree_2_2_0 = callPackage + estree_2_3_0 = callPackage ( { buildMix, fetchHex }: buildMix { name = "estree"; - version = "2.2.0"; + version = "2.3.0"; src = fetchHex { pkg = "estree"; - version = "2.2.0"; + version = "2.3.0"; sha256 = - "0adb199b79b31f05f2f01ab87f099ea84684ffffb1571fb33cde05500f9367f2"; + "f73bf510523aac5518845d4d844a9690ba30450fc666ac138e8965a6c88b26ae"; }; meta = { @@ -12042,7 +14089,7 @@ let } ) {}; - estree = estree_2_2_0; + estree = estree_2_3_0; esync_0_0_1 = callPackage ( @@ -12070,7 +14117,7 @@ let etcd_0_0_2 = callPackage ( - { buildMix, fetchHex, httpoison_0_8_1, exjsx_3_2_0 }: + { buildMix, fetchHex, httpoison_0_8_2, exjsx_3_2_0 }: buildMix { name = "etcd"; version = "0.0.2"; @@ -12080,7 +14127,7 @@ let sha256 = "c1b559bc37812b9ab488f90f322dc0b826c94ac9809d9044b42b4fb420710848"; }; - beamDeps = [ httpoison_0_8_1 exjsx_3_2_0 ]; + beamDeps = [ httpoison_0_8_2 exjsx_3_2_0 ]; meta = { description = ''Etcd APIv2 Client for Elixir''; @@ -12115,6 +14162,34 @@ let ether = ether_0_0_1; + etherchain_org_0_0_3 = callPackage + ( + { + buildMix, fetchHex, vex_0_5_5, poison_1_5_2, httpoison_0_8_2 + }: + buildMix { + name = "etherchain_org"; + version = "0.0.3"; + src = fetchHex { + pkg = "etherchain_org"; + version = "0.0.3"; + sha256 = + "45b231f1d177be098e2ddd575dd53d0b8676d676ed18c932495307e098c40880"; + }; + beamDeps = [ vex_0_5_5 poison_1_5_2 httpoison_0_8_2 ]; + + meta = { + longDescription = ''WIP Elixir API wrapper for etherchain.org. + Provides access to ethereum blockchain data.''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/cyberpunk-ventures/etherchain_org_ex"; + }; + } + ) {}; + + etherchain_org = etherchain_org_0_0_3; + ets_map_0_0_1 = callPackage ( { buildMix, fetchHex }: @@ -12162,21 +14237,19 @@ let } ) {}; - etude_0_4_0 = callPackage + etude_1_0_0_beta_0 = callPackage ( - { - buildMix, fetchHex, rebind_0_1_3, parse_trans_2_9_0, lineo_0_1_0 - }: + { buildMix, fetchHex, poison_2_1_0, nile_0_1_3 }: buildMix { name = "etude"; - version = "0.4.0"; + version = "1.0.0-beta.0"; src = fetchHex { pkg = "etude"; - version = "0.4.0"; + version = "1.0.0-beta.0"; sha256 = - "602db062916cfe50b82257f1fdce039b08584d7ff285183c3a51060f197b4f01"; + "f5a2896982cd062fe188dcb0216ef5c960959aa2ba77f4d31b00d0dda56890dd"; }; - beamDeps = [ rebind_0_1_3 parse_trans_2_9_0 lineo_0_1_0 ]; + beamDeps = [ poison_2_1_0 nile_0_1_3 ]; meta = { description = ''parallel computation coordination utilities for @@ -12187,7 +14260,7 @@ let } ) {}; - etude = etude_0_4_0; + etude = etude_1_0_0_beta_0; euler_0_0_1 = callPackage ( @@ -12238,6 +14311,31 @@ let eunit_formatters = eunit_formatters_0_3_1; + evel_0_1_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + evel = evel_0_1_0; + event_source_encoder_0_0_3 = callPackage ( { buildMix, fetchHex }: @@ -12262,6 +14360,59 @@ let event_source_encoder = event_source_encoder_0_0_3; + eventstore_0_2_1 = callPackage + ( + { + buildMix, 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"; + }; + } + ) {}; + + eventstore = eventstore_0_2_1; + + eventstore_client_0_1_4 = callPackage + ( + { + buildMix, fetchHex, uuid_1_1_3, poison_2_1_0, httpoison_0_8_2 + }: + buildMix { + name = "eventstore_client"; + version = "0.1.4"; + src = fetchHex { + pkg = "eventstore_client"; + version = "0.1.4"; + sha256 = + "fa77e1a7906b3ed27c0dfa0bd41f27b3129285857948aa23a3f888b0dd531109"; + }; + beamDeps = [ uuid_1_1_3 poison_2_1_0 httpoison_0_8_2 ]; + + meta = { + description = ''HTTP Client for EventStore (geteventstore.com)''; + + homepage = + "https://github.com/tbug/elixir-eventstore-http-client"; + }; + } + ) {}; + + eventstore_client = eventstore_client_0_1_4; + everex_0_1_1 = callPackage ( { @@ -12327,7 +14478,7 @@ let ewebmachine_2_0_12 = callPackage ( - { buildMix, fetchHex, plug_1_1_1, cowboy_1_0_4 }: + { buildMix, fetchHex, plug_1_1_3, cowboy_1_0_4 }: buildMix { name = "ewebmachine"; version = "2.0.12"; @@ -12337,7 +14488,7 @@ let sha256 = "66a4ca701594da9396d6bab03f074f1ab56080a62e6545e6e455a24296c96a1a"; }; - beamDeps = [ plug_1_1_1 cowboy_1_0_4 ]; + beamDeps = [ plug_1_1_3 cowboy_1_0_4 ]; meta = { longDescription = ''Ewebmachine contains macros and plugs to @@ -12353,28 +14504,6 @@ let ewebmachine = ewebmachine_2_0_12; - ex2ms_1_3_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "ex2ms"; - version = "1.3.0"; - src = fetchHex { - pkg = "ex2ms"; - version = "1.3.0"; - sha256 = - "ff2bfb0adb93830705cd73f2860891fd44a8f22cc2fdaf9f23bfcf2e4bdcfa79"; - }; - - meta = { - description = ''Translates Elixir functions to match - specifications for use with `ets`.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/ericmj/ex2ms"; - }; - } - ) {}; - ex2ms_1_4_0 = callPackage ( { buildMix, fetchHex }: @@ -12445,7 +14574,7 @@ let ex_aerospike = ex_aerospike_0_0_1; - ex_aws_0_4_17 = callPackage + ex_aws_0_4_18 = callPackage ( { buildMix, @@ -12453,24 +14582,24 @@ let sweet_xml_0_6_1, poison_1_5_2, jsx_2_8_0, - httpotion_2_2_0, - httpoison_0_8_1 + httpotion_2_2_2, + httpoison_0_8_2 }: buildMix { name = "ex_aws"; - version = "0.4.17"; + version = "0.4.18"; src = fetchHex { pkg = "ex_aws"; - version = "0.4.17"; + version = "0.4.18"; sha256 = - "e0b28688f9409eb3132efc0d01e02854dd1a22fa7df8940ef88a75ba1448a01c"; + "6e534b4c4b56046a52d86d62be59358418e38cdd994428a80fbdbba5cc37f075"; }; beamDeps = [ sweet_xml_0_6_1 poison_1_5_2 jsx_2_8_0 - httpotion_2_2_0 - httpoison_0_8_1 + httpotion_2_2_2 + httpoison_0_8_2 ]; meta = { @@ -12482,7 +14611,7 @@ let } ) {}; - ex_aws = ex_aws_0_4_17; + ex_aws = ex_aws_0_4_18; ex_bitcask_0_1_0 = callPackage ( @@ -12537,7 +14666,7 @@ let ex_chimp_0_0_1 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "ex_chimp"; version = "0.0.1"; @@ -12547,7 +14676,7 @@ let sha256 = "1a4e97e2a4b7bf7401660acd61d7e35b9c758638c305324971eddc5bd1bb0bee"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''Basic/minimal Mailchimp API client.''; @@ -12561,7 +14690,7 @@ let ex_clacks_0_1_1 = callPackage ( - { buildMix, fetchHex, plug_1_1_1 }: + { buildMix, fetchHex, plug_1_1_3 }: buildMix { name = "ex_clacks"; version = "0.1.1"; @@ -12571,7 +14700,7 @@ let sha256 = "524f966b03b1a1ac4ab3f6beeef6ce5030cf3b16927c466d42a8b08c5355b231"; }; - beamDeps = [ plug_1_1_1 ]; + beamDeps = [ plug_1_1_3 ]; meta = { description = ''A Plug that pays homage to Terry Pratchett''; @@ -12583,19 +14712,19 @@ let ex_clacks = ex_clacks_0_1_1; - ex_closeio_0_0_7 = callPackage + ex_closeio_0_0_12 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "ex_closeio"; - version = "0.0.7"; + version = "0.0.12"; src = fetchHex { pkg = "ex_closeio"; - version = "0.0.7"; + version = "0.0.12"; sha256 = - "8873b4c80e610ebed7a43245aaeb182a56ad6709ca318cf4ee0bf9870fd4b0b4"; + "6090eaa4b699da9c242f498db0435cd45489702dc9859450cb4e26fd48288e79"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''Close.io client library for Elixir.''; @@ -12605,21 +14734,21 @@ let } ) {}; - ex_closeio = ex_closeio_0_0_7; + ex_closeio = ex_closeio_0_0_12; - ex_cloudinary_0_1_1 = callPackage + ex_cloudinary_0_1_2 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "ex_cloudinary"; - version = "0.1.1"; + version = "0.1.2"; src = fetchHex { pkg = "ex_cloudinary"; - version = "0.1.1"; + version = "0.1.2"; sha256 = - "1473ab409152d7d61062224ae5402c6ec677c10da63e29b1332c6fd35cf91381"; + "cbd90bcf8d5f9f7f2c624d2822704f693ff25716d2195281f418db4e13b553ea"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''A wrapper around the HTTPoison.Base module for @@ -12630,7 +14759,7 @@ let } ) {}; - ex_cloudinary = ex_cloudinary_0_1_1; + ex_cloudinary = ex_cloudinary_0_1_2; ex_conf_0_1_2 = callPackage ( @@ -12678,7 +14807,7 @@ let ex_crypto_0_0_1 = callPackage ( - { buildMix, fetchHex, timex_1_0_1, poison_2_1_0, pipe_0_0_2 }: + { buildMix, fetchHex, timex_2_1_3, poison_2_1_0, pipe_0_0_2 }: buildMix { name = "ex_crypto"; version = "0.0.1"; @@ -12688,7 +14817,7 @@ let sha256 = "f9c47326435e52154a6db97359356a44c1fe21a0d26fda24a46367ba33ccb85f"; }; - beamDeps = [ timex_1_0_1 poison_2_1_0 pipe_0_0_2 ]; + beamDeps = [ timex_2_1_3 poison_2_1_0 pipe_0_0_2 ]; meta = { longDescription = ''A wrapper around the Erlang Crypto module @@ -12726,7 +14855,7 @@ let ex_doc_0_10_0 = callPackage ( - { buildMix, fetchHex, earmark_0_1_14 }: + { buildMix, fetchHex, earmark_0_1_15 }: buildMix { name = "ex_doc"; version = "0.10.0"; @@ -12736,7 +14865,7 @@ let sha256 = "3d9f15777aa3fb62700d5984eb09ceeb6c1574d61be0f70801e3390e36942b35"; }; - beamDeps = [ earmark_0_1_14 ]; + beamDeps = [ earmark_0_1_15 ]; meta = { description = ''ExDoc is a documentation generation tool for @@ -12749,7 +14878,7 @@ let ex_doc_0_11_4 = callPackage ( - { buildMix, fetchHex, earmark_0_1_14 }: + { buildMix, fetchHex, earmark_0_1_15 }: buildMix { name = "ex_doc"; version = "0.11.4"; @@ -12759,7 +14888,7 @@ let sha256 = "639e97b24c1c6c172f557163b830673646983417de9ac0da2c25c7063deed293"; }; - beamDeps = [ earmark_0_1_14 ]; + beamDeps = [ earmark_0_1_15 ]; meta = { description = ''ExDoc is a documentation generation tool for @@ -12772,18 +14901,19 @@ let ex_doc = ex_doc_0_11_4; - ex_doc_0_6_2 = callPackage + ex_doc_0_7_3 = callPackage ( - { buildMix, fetchHex }: + { buildMix, fetchHex, earmark_0_1_15 }: buildMix { name = "ex_doc"; - version = "0.6.2"; + version = "0.7.3"; src = fetchHex { pkg = "ex_doc"; - version = "0.6.2"; + version = "0.7.3"; sha256 = - "fdd21c651fbe96f39697c3acd9ee6b849348cafb4000b92a130e2df8a0a3e2b6"; + "45efbc6d2dc58d864e41be8a4321a5ecf643a061ec71487453447b29539f81ff"; }; + beamDeps = [ earmark_0_1_15 ]; meta = { description = ''ExDoc is a documentation generation tool for @@ -12796,7 +14926,7 @@ let ex_doc_dash_0_3_0 = callPackage ( - { buildMix, fetchHex, ex_doc_0_11_4, earmark_0_1_14 }: + { buildMix, fetchHex, ex_doc_0_11_4, earmark_0_1_15 }: buildMix { name = "ex_doc_dash"; version = "0.3.0"; @@ -12806,7 +14936,7 @@ let sha256 = "0b511eecda1dd2c51fab8b1e071e3d6292f6a136232425d3f20baa9ca0fbeb43"; }; - beamDeps = [ ex_doc_0_11_4 earmark_0_1_14 ]; + beamDeps = [ ex_doc_0_11_4 earmark_0_1_15 ]; meta = { description = ''Formatter for ExDoc to generate docset @@ -12894,6 +15024,31 @@ let ex_edn = ex_edn_0_1_2; + ex_enum_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ex_enum = ex_enum_0_1_0; + ex_fabricators_0_1_0 = callPackage ( { buildMix, fetchHex }: @@ -12917,6 +15072,32 @@ let ex_fabricators = ex_fabricators_0_1_0; + ex_guard_0_10_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ex_guard = ex_guard_0_10_0; + ex_hl7_0_1_3 = callPackage ( { buildMix, fetchHex }: @@ -12940,9 +15121,33 @@ let ex_hl7 = ex_hl7_0_1_3; + ex_ical_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ex_ical = ex_ical_0_0_1; + ex_iss_1_0_0 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "ex_iss"; version = "1.0.0"; @@ -12952,7 +15157,7 @@ let sha256 = "8b2b2eebbd75593e814e712555c7f69138864317cf2f0093a82ca305138baa83"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { longDescription = ''This package is for interfacing with the Open @@ -13115,19 +15320,18 @@ let ex_minimatch = ex_minimatch_0_0_1; - ex_modbus_0_0_2 = callPackage + ex_modbus_0_0_3 = callPackage ( - { buildMix, fetchHex, ex_doc_0_11_4, earmark_0_1_19 }: + { buildMix, fetchHex }: buildMix { name = "ex_modbus"; - version = "0.0.2"; + version = "0.0.3"; src = fetchHex { pkg = "ex_modbus"; - version = "0.0.2"; + version = "0.0.3"; sha256 = - "8930d2bdd867ebc649f285689723499f39af181ee84cb4e7856eaa3f9cc21d30"; + "bdfd52c43e690a9af041f34b7cd1f6c2843e39fe51b9afcc2a83fbf4d254fd50"; }; - beamDeps = [ ex_doc_0_11_4 earmark_0_1_19 ]; meta = { description = ''An Elixir ModbusTCP client implementation.''; @@ -13137,11 +15341,11 @@ let } ) {}; - ex_modbus = ex_modbus_0_0_2; + ex_modbus = ex_modbus_0_0_3; ex_omegle_0_1_1 = callPackage ( - { buildMix, fetchHex, jsex_2_0_0, httpoison_0_8_1 }: + { buildMix, fetchHex, jsex_2_0_0, httpoison_0_8_2 }: buildMix { name = "ex_omegle"; version = "0.1.1"; @@ -13151,7 +15355,7 @@ let sha256 = "8166d1125a2670f55fce2030367d9da381e577ad122dcf1d03784e536c78cc65"; }; - beamDeps = [ jsex_2_0_0 httpoison_0_8_1 ]; + beamDeps = [ jsex_2_0_0 httpoison_0_8_2 ]; meta = { description = ''A minimal Omegle chat client library for @@ -13164,19 +15368,19 @@ let ex_omegle = ex_omegle_0_1_1; - ex_orient_1_0_2 = callPackage + ex_orient_1_1_1 = callPackage ( { buildMix, fetchHex, poolboy_1_2_1, poison_1_0_3, marco_polo_0_2_1 }: buildMix { name = "ex_orient"; - version = "1.0.2"; + version = "1.1.1"; src = fetchHex { pkg = "ex_orient"; - version = "1.0.2"; + version = "1.1.1"; sha256 = - "36296ba45e6d321c8c023ab110a1c80bac9e48afe0c6df00aa44223870d74796"; + "9cad40957987bb4aa440d798e6f7096de5136f54fe0b7bd7d0d5f67be63a7a08"; }; beamDeps = [ poolboy_1_2_1 poison_1_0_3 marco_polo_0_2_1 ]; @@ -13190,7 +15394,7 @@ let } ) {}; - ex_orient = ex_orient_1_0_2; + ex_orient = ex_orient_1_1_1; ex_parametarized_1_0_0 = callPackage ( @@ -13286,19 +15490,43 @@ let ex_pool = ex_pool_0_1_1; - ex_rated_1_2_1 = callPackage + ex_prometheus_io_0_0_3 = callPackage ( - { buildMix, fetchHex, ex2ms_1_3_0 }: + { buildMix, 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"; + }; + } + ) {}; + + ex_prometheus_io = ex_prometheus_io_0_0_3; + + ex_rated_1_2_2 = callPackage + ( + { buildMix, fetchHex, ex2ms_1_4_0 }: buildMix { name = "ex_rated"; - version = "1.2.1"; + version = "1.2.2"; src = fetchHex { pkg = "ex_rated"; - version = "1.2.1"; + version = "1.2.2"; sha256 = - "868282cdf5b8a6698382182411ec46965204a0fbe83e65368004e944a5c608ac"; + "65f7e9aaba3ba5bf8995b34a29c9572652b051cfdd7988e5f9b7ea329bb71ca1"; }; - beamDeps = [ ex2ms_1_3_0 ]; + beamDeps = [ ex2ms_1_4_0 ]; meta = { longDescription = ''ExRated, the OTP GenServer with the naughty @@ -13315,7 +15543,7 @@ let } ) {}; - ex_rated = ex_rated_1_2_1; + ex_rated = ex_rated_1_2_2; ex_rfc3966_0_2_3 = callPackage ( @@ -13369,6 +15597,33 @@ let ex_rfc3986 = ex_rfc3986_0_2_6; + ex_slp_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ex_slp = ex_slp_0_1_0; + ex_spec_1_0_0 = callPackage ( { buildMix, fetchHex }: @@ -13392,6 +15647,30 @@ let ex_spec = ex_spec_1_0_0; + ex_sshd_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ex_sshd = ex_sshd_0_0_1; + ex_statsd_0_5_3 = callPackage ( { buildMix, fetchHex }: @@ -13415,17 +15694,17 @@ let ex_statsd = ex_statsd_0_5_3; - ex_sync_0_0_1 = callPackage + ex_sync_0_0_2 = callPackage ( { buildMix, fetchHex, connection_1_0_2 }: buildMix { name = "ex_sync"; - version = "0.0.1"; + version = "0.0.2"; src = fetchHex { pkg = "ex_sync"; - version = "0.0.1"; + version = "0.0.2"; sha256 = - "82261cf62a567b8eb0eba35dfbf0d9b546110825e8c64bb4ebc2ac8e37458499"; + "2e6eb61310c708f59d10a5c53549230091a4e75c98352dcf04f34fabf3f81c35"; }; beamDeps = [ connection_1_0_2 ]; @@ -13439,19 +15718,19 @@ let } ) {}; - ex_sync = ex_sync_0_0_1; + ex_sync = ex_sync_0_0_2; - ex_test_0_0_1 = callPackage + ex_test_0_0_2 = callPackage ( { buildMix, fetchHex }: buildMix { name = "ex_test"; - version = "0.0.1"; + version = "0.0.2"; src = fetchHex { pkg = "ex_test"; - version = "0.0.1"; + version = "0.0.2"; sha256 = - "c283542766be3f9044068a6a91c22a8270987334151db7bd10f12c8db1ebfbe3"; + "fdc33e0fa2fdab921fa54f0484645681ed0695f69439a6f40430e31fbc589756"; }; meta = { @@ -13463,23 +15742,23 @@ let } ) {}; - ex_test = ex_test_0_0_1; + ex_test = ex_test_0_0_2; - ex_twilio_0_1_3 = callPackage + ex_twilio_0_1_4 = callPackage ( { - buildMix, fetchHex, poison_1_5_2, inflex_1_0_0, httpotion_2_1_0 + buildMix, fetchHex, poison_1_5_2, inflex_1_5_0, httpotion_2_2_2 }: buildMix { name = "ex_twilio"; - version = "0.1.3"; + version = "0.1.4"; src = fetchHex { pkg = "ex_twilio"; - version = "0.1.3"; + version = "0.1.4"; sha256 = - "50b949beed606a3e5dceb63c07db7f79cb0806901ea23bc109a9969429d8a2bf"; + "97caa270770cd0d9f17de05ad8498fab48eb8c6ac28e66cf6a64aa0ebf26b60d"; }; - beamDeps = [ poison_1_5_2 inflex_1_0_0 httpotion_2_1_0 ]; + beamDeps = [ poison_1_5_2 inflex_1_5_0 httpotion_2_2_2 ]; meta = { description = ''Twilio API library for Elixir''; @@ -13489,7 +15768,7 @@ let } ) {}; - ex_twilio = ex_twilio_0_1_3; + ex_twilio = ex_twilio_0_1_4; ex_twiml_2_1_0 = callPackage ( @@ -13561,6 +15840,53 @@ let ex_unit_fixtures = ex_unit_fixtures_0_3_1; + ex_unit_notifier_0_1_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "ex_unit_notifier"; + version = "0.1.0"; + src = fetchHex { + pkg = "ex_unit_notifier"; + version = "0.1.0"; + sha256 = + "e7566bd9ec23dc6862ea660667f1e9525af26609cef5ed03694b4e33049c5325"; + }; + + meta = { + description = ''Desktop notifications for ExUnit''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/navinpeiris/ex_unit_notifier"; + }; + } + ) {}; + + ex_unit_notifier = ex_unit_notifier_0_1_0; + + ex_victor_ops_0_2_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ex_victor_ops = ex_victor_ops_0_2_1; + ex_vmstats_0_0_1 = callPackage ( { buildMix, fetchHex }: @@ -13609,6 +15935,62 @@ let exactor = exactor_2_2_0; + exalgebra_0_0_4 = callPackage + ( + { buildMix, 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 = ''This library collects a host of common + functions that can be used in linear algebraic + computations.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/leighshepperson/exalgebra"; + }; + } + ) {}; + + exalgebra = exalgebra_0_0_4; + + exalice_0_0_5_alpha = callPackage + ( + { + buildMix, + fetchHex, + tirexs_0_8_0_beta5, + poison_2_1_0, + httpoison_0_8_2 + }: + buildMix { + name = "exalice"; + version = "0.0.5-alpha"; + src = fetchHex { + pkg = "exalice"; + version = "0.0.5-alpha"; + sha256 = + "205bc2a86dce72fbcfb8cd30ecb4efebcdcff3d5f0c22c176db5bf4530b2820a"; + }; + beamDeps = [ tirexs_0_8_0_beta5 poison_2_1_0 httpoison_0_8_2 ]; + + meta = { + description = ''ExAlice, a geocoder with swappable storage''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/kpanic/exalice"; + }; + } + ) {}; + + exalice = exalice_0_0_5_alpha; + example_files_0_2_0 = callPackage ( { buildMix, fetchHex }: @@ -13662,6 +16044,29 @@ let exauth = exauth_0_0_1; + exbackoff_0_0_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exbackoff = exbackoff_0_0_3; + exbouncer_0_0_1 = callPackage ( { buildMix, fetchHex }: @@ -13736,17 +16141,17 @@ let excellent = excellent_0_0_1; - excheck_0_3_2 = callPackage + excheck_0_3_3 = callPackage ( { buildMix, fetchHex }: buildMix { name = "excheck"; - version = "0.3.2"; + version = "0.3.3"; src = fetchHex { pkg = "excheck"; - version = "0.3.2"; + version = "0.3.3"; sha256 = - "138cf65d5ca716b94ff3368e6f089c855e59d95e503612399a231e68fc855484"; + "3a3b9c163a1b0152df8f6b8fa019d4980d77e36dbe3c7ed3d508ef066ee9f870"; }; meta = { @@ -13758,7 +16163,7 @@ let } ) {}; - excheck = excheck_0_3_2; + excheck = excheck_0_3_3; excoap_0_0_1 = callPackage ( @@ -13783,17 +16188,17 @@ let excoap = excoap_0_0_1; - exconstructor_0_9_0 = callPackage + exconstructor_1_0_2 = callPackage ( { buildMix, fetchHex }: buildMix { name = "exconstructor"; - version = "0.9.0"; + version = "1.0.2"; src = fetchHex { pkg = "exconstructor"; - version = "0.9.0"; + version = "1.0.2"; sha256 = - "14af965ba0370d7808e16f8b2781b8a5ea3e42cf6c34012efe75e60b56b2dbbc"; + "e8cd1c88d5ea044a340fed75deb1fda2edc71afaac157dce561288a6bf733035"; }; meta = { @@ -13808,7 +16213,7 @@ let } ) {}; - exconstructor = exconstructor_0_9_0; + exconstructor = exconstructor_1_0_2; excountries_0_0_3 = callPackage ( @@ -13837,7 +16242,7 @@ let excoveralls_0_5_1 = callPackage ( - { buildMix, fetchHex, hackney_1_4_8, exjsx_3_2_0 }: + { buildMix, fetchHex, hackney_1_6_0, exjsx_3_2_0 }: buildMix { name = "excoveralls"; version = "0.5.1"; @@ -13847,7 +16252,7 @@ let sha256 = "26c8bb6dadc8436c1e0155f50327e90c91d6efab88468c09ac10f12be7070324"; }; - beamDeps = [ hackney_1_4_8 exjsx_3_2_0 ]; + beamDeps = [ hackney_1_6_0 exjsx_3_2_0 ]; meta = { description = ''Coverage report tool for Elixir with coveralls.io @@ -13910,7 +16315,7 @@ let exdesk_0_2_0 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "exdesk"; version = "0.2.0"; @@ -13920,7 +16325,7 @@ let sha256 = "0c1e02bb4aef9075ff4affb3354c0e318dc3be1817faae8b450ef590c7d67688"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''Desk.com client library for elixir.''; @@ -13958,32 +16363,32 @@ let exdisque = exdisque_0_0_1; - exdjango_0_3_0 = callPackage + exdjango_0_3_1 = callPackage ( { buildMix, fetchHex, - redix_0_3_4, + redix_0_3_6, poolboy_1_5_1, poison_1_0_3, - plug_1_1_1, - comeonin_2_1_1 + plug_1_1_3, + comeonin_2_3_0 }: buildMix { name = "exdjango"; - version = "0.3.0"; + version = "0.3.1"; src = fetchHex { pkg = "exdjango"; - version = "0.3.0"; + version = "0.3.1"; sha256 = - "62cf5e5870b28b4cdf25b0056897bb92ba3ed7b92d87c8083ebf820c35213ef6"; + "ae7bb57e696d7e4ca5d05cac85afd67ccce611594f33a98c06a4922bdd44d6d6"; }; beamDeps = [ - redix_0_3_4 + redix_0_3_6 poolboy_1_5_1 poison_1_0_3 - plug_1_1_1 - comeonin_2_1_1 + plug_1_1_3 + comeonin_2_3_0 ]; meta = { @@ -13994,7 +16399,7 @@ let } ) {}; - exdjango = exdjango_0_3_0; + exdjango = exdjango_0_3_1; exdm_0_0_4 = callPackage ( @@ -14221,7 +16626,7 @@ let exfavicon_0_3_2 = callPackage ( - { buildMix, fetchHex, httpoison_0_8_1, floki_0_7_1 }: + { buildMix, fetchHex, httpoison_0_8_2, floki_0_8_0 }: buildMix { name = "exfavicon"; version = "0.3.2"; @@ -14231,7 +16636,7 @@ let sha256 = "95503035ea2b6768c7d3fb8af9769830b9933b2579c7fdcfdd6b775e830213c2"; }; - beamDeps = [ httpoison_0_8_1 floki_0_7_1 ]; + beamDeps = [ httpoison_0_8_2 floki_0_8_0 ]; meta = { description = ''A exfavicon to detect a site`s favicon.''; @@ -14243,25 +16648,25 @@ let exfavicon = exfavicon_0_3_2; - exfile_0_1_2 = callPackage + exfile_0_1_5 = callPackage ( { buildMix, fetchHex, plug_1_0_3, - phoenix_html_2_5_0, - ecto_2_0_0_beta_0 + phoenix_html_2_5_1, + ecto_2_0_0_beta_2 }: buildMix { name = "exfile"; - version = "0.1.2"; + version = "0.1.5"; src = fetchHex { pkg = "exfile"; - version = "0.1.2"; + version = "0.1.5"; sha256 = - "bb0e2e1ef86017b3d6cbf6d6818abea153f194a50cc84f359146a348bcc61664"; + "b2aee601b1db3ef5a8c5c638da287ec59153a21fb3b8bdbe0bd404d1e20696a1"; }; - beamDeps = [ plug_1_0_3 phoenix_html_2_5_0 ecto_2_0_0_beta_0 ]; + beamDeps = [ plug_1_0_3 phoenix_html_2_5_1 ecto_2_0_0_beta_2 ]; meta = { longDescription = ''File upload handling in Elixir and Plug. @@ -14273,23 +16678,53 @@ let } ) {}; - exfile = exfile_0_1_2; - - exfile_b2_0_1_0 = callPackage + exfile_0_2_0 = callPackage ( { - buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1, exfile_0_1_2 + buildMix, + fetchHex, + plug_1_0_3, + phoenix_html_2_5_1, + ecto_2_0_0_beta_2 + }: + buildMix { + name = "exfile"; + version = "0.2.0"; + src = fetchHex { + pkg = "exfile"; + version = "0.2.0"; + sha256 = + "f5977fbb7037e17d93224abec4e46dde7b60a6ce8e37654167c9abfbeacaf274"; + }; + beamDeps = [ plug_1_0_3 phoenix_html_2_5_1 ecto_2_0_0_beta_2 ]; + + meta = { + longDescription = ''File upload handling in Elixir and Plug. + Supports pluggable processors and storage + backends.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/keichan34/exfile"; + }; + } + ) {}; + + exfile = exfile_0_2_0; + + exfile_b2_0_1_3 = callPackage + ( + { + buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2, exfile_0_2_0 }: buildMix { name = "exfile_b2"; - version = "0.1.0"; + version = "0.1.3"; src = fetchHex { pkg = "exfile_b2"; - version = "0.1.0"; + version = "0.1.3"; sha256 = - "62a58a3347387b00fdf666984b02b6b0c28fda0b60395eea08de3c7a21af61f5"; + "f73e1d45279e9d279f2d8cb112a2d7e791ff0b129eea69252c22a6fc180a5106"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 exfile_0_1_2 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 exfile_0_2_0 ]; meta = { description = ''A Backblaze B2 storage backend adapter for @@ -14300,21 +16735,21 @@ let } ) {}; - exfile_b2 = exfile_b2_0_1_0; + exfile_b2 = exfile_b2_0_1_3; - exfile_imagemagick_0_1_0 = callPackage + exfile_imagemagick_0_1_1 = callPackage ( - { buildMix, fetchHex, exfile_0_1_2 }: + { buildMix, fetchHex, exfile_0_2_0 }: buildMix { name = "exfile_imagemagick"; - version = "0.1.0"; + version = "0.1.1"; src = fetchHex { pkg = "exfile_imagemagick"; - version = "0.1.0"; + version = "0.1.1"; sha256 = - "ab290f8a7e43678dc2289cf38558562cc433c59d1ddf8859525e22f5e4033c49"; + "be501b021d1d4a3603dbc6ed2223a81817ffb39bd51e0ee2a5314bd07f132695"; }; - beamDeps = [ exfile_0_1_2 ]; + beamDeps = [ exfile_0_2_0 ]; meta = { description = ''An ImageMagick file processor suite for @@ -14325,11 +16760,11 @@ let } ) {}; - exfile_imagemagick = exfile_imagemagick_0_1_0; + exfile_imagemagick = exfile_imagemagick_0_1_1; exfile_memory_0_1_0 = callPackage ( - { buildMix, fetchHex, exfile_0_1_2 }: + { buildMix, fetchHex, exfile_0_1_5 }: buildMix { name = "exfile_memory"; version = "0.1.0"; @@ -14339,7 +16774,7 @@ let sha256 = "66330c408a73094d115227d0e16b936229721e16703197559a828bfb7795f9d7"; }; - beamDeps = [ exfile_0_1_2 ]; + beamDeps = [ exfile_0_1_5 ]; meta = { description = ''In-memory (ets) storage backend for Exfile.''; @@ -14353,7 +16788,7 @@ let exfirebase_0_4_0 = callPackage ( - { buildMix, fetchHex, httpotion_2_2_0, exjsx_3_2_0 }: + { buildMix, fetchHex, httpotion_2_2_2, exjsx_3_2_0 }: buildMix { name = "exfirebase"; version = "0.4.0"; @@ -14363,7 +16798,7 @@ let sha256 = "acd2f1fe87e83437a5d52b811b3e86bc75933bc29b0daa2da836a97ddd60b478"; }; - beamDeps = [ httpotion_2_2_0 exjsx_3_2_0 ]; + beamDeps = [ httpotion_2_2_2 exjsx_3_2_0 ]; meta = { description = ''An elixir library for accessing the Firebase REST @@ -14376,19 +16811,19 @@ let exfirebase = exfirebase_0_4_0; - exfoaas_0_0_1 = callPackage + exfoaas_0_0_2 = callPackage ( - { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: buildMix { name = "exfoaas"; - version = "0.0.1"; + version = "0.0.2"; src = fetchHex { pkg = "exfoaas"; - version = "0.0.1"; + version = "0.0.2"; sha256 = - "ccfd3da421505d131a126d05d0def3ca99cdae6fec397956e4a5f1ee2bfae256"; + "521f355f8c38c056f66cd8ac236f561c2a3502e451c07a88761e05c22c8848aa"; }; - beamDeps = [ poison_2_1_0 httpoison_0_8_1 ]; + beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; meta = { description = ''brings the utility of FOAAS to elixir.''; @@ -14398,19 +16833,19 @@ let } ) {}; - exfoaas = exfoaas_0_0_1; + exfoaas = exfoaas_0_0_2; - exfsm_0_0_3 = callPackage + exfsm_0_1_3 = callPackage ( { buildMix, fetchHex }: buildMix { name = "exfsm"; - version = "0.0.3"; + version = "0.1.3"; src = fetchHex { pkg = "exfsm"; - version = "0.0.3"; + version = "0.1.3"; sha256 = - "2da7b2b25f9603fc3142da3090abe85425f9852b89c230316fb6d29691ede6eb"; + "6535a0565d6013ca728c10e11c9ac85216d995652892469f7380147da8c3d727"; }; meta = { @@ -14423,7 +16858,7 @@ let } ) {}; - exfsm = exfsm_0_0_3; + exfsm = exfsm_0_1_3; exfswatch_0_1_1 = callPackage ( @@ -14475,7 +16910,7 @@ let exgenius_0_0_5 = callPackage ( - { buildMix, fetchHex, httpoison_0_8_1, exjsx_3_2_0 }: + { buildMix, fetchHex, httpoison_0_8_2, exjsx_3_2_0 }: buildMix { name = "exgenius"; version = "0.0.5"; @@ -14485,7 +16920,7 @@ let sha256 = "f0f4463ac9ad79a102a1bf0ded91d77ed87ce262da6045990be51450ef240fd5"; }; - beamDeps = [ httpoison_0_8_1 exjsx_3_2_0 ]; + beamDeps = [ httpoison_0_8_2 exjsx_3_2_0 ]; meta = { longDescription = '' Elixir library for the (undocumented) Rap @@ -14501,7 +16936,7 @@ let exgpg_0_0_3 = callPackage ( - { buildMix, fetchHex, uuid_0_1_5, porcelain_2_0_1 }: + { buildMix, fetchHex, uuid_1_0_0, porcelain_2_0_1 }: buildMix { name = "exgpg"; version = "0.0.3"; @@ -14511,7 +16946,7 @@ let sha256 = "13499da2a59567f87f5293cc874ab1256e88089784645d997406d8f95978319a"; }; - beamDeps = [ uuid_0_1_5 porcelain_2_0_1 ]; + beamDeps = [ uuid_1_0_0 porcelain_2_0_1 ]; meta = { }; } @@ -14545,7 +16980,7 @@ let exgrid_0_3_0 = callPackage ( { - buildMix, fetchHex, timex_0_13_5, json_0_3_3, httpotion_1_0_0 + buildMix, fetchHex, timex_0_13_5, json_0_3_3, httpotion_2_2_2 }: buildMix { name = "exgrid"; @@ -14556,7 +16991,7 @@ let sha256 = "96676dfc20b2e8c7caf5f68c202eada246f192d3246922be7214a0da0d219506"; }; - beamDeps = [ timex_0_13_5 json_0_3_3 httpotion_1_0_0 ]; + beamDeps = [ timex_0_13_5 json_0_3_3 httpotion_2_2_2 ]; meta = { description = ''Elixir bindings for SendGrid`s REST API''; @@ -14568,25 +17003,25 @@ let exgrid = exgrid_0_3_0; - exhal_4_0_0 = callPackage + exhal_4_2_1 = callPackage ( { buildMix, fetchHex, uri_template_1_2_0, poison_2_1_0, - httpoison_0_8_1 + httpoison_0_8_2 }: buildMix { name = "exhal"; - version = "4.0.0"; + version = "4.2.1"; src = fetchHex { pkg = "exhal"; - version = "4.0.0"; + version = "4.2.1"; sha256 = - "94a10116449d0c5dce43bddd0a96ed2dbefa032883841752a48129227ae4b426"; + "5696572795d659441412e55600a3593d5d57828e0a3efcdc2c7985f9cdbe81a0"; }; - beamDeps = [ uri_template_1_2_0 poison_2_1_0 httpoison_0_8_1 ]; + beamDeps = [ uri_template_1_2_0 poison_2_1_0 httpoison_0_8_2 ]; meta = { description = ''Use HAL APIs with ease''; @@ -14595,7 +17030,7 @@ let } ) {}; - exhal = exhal_4_0_0; + exhal = exhal_4_2_1; exhcl_0_2_1 = callPackage ( @@ -14620,17 +17055,17 @@ let exhcl = exhcl_0_2_1; - exiban_0_0_3 = callPackage + exiban_0_0_4 = callPackage ( { buildMix, fetchHex }: buildMix { name = "exiban"; - version = "0.0.3"; + version = "0.0.4"; src = fetchHex { pkg = "exiban"; - version = "0.0.3"; + version = "0.0.4"; sha256 = - "98c2656de7ce4c27090f482704e7e915d9046c0a3c4545d7ae4b68986de776a8"; + "c1d1da991db264ca99b9e9245bb09d69f6297050b18329be1e4c01d5106778b5"; }; meta = { @@ -14642,19 +17077,43 @@ let } ) {}; - exiban = exiban_0_0_3; + exiban = exiban_0_0_4; - exirc_0_9_2 = callPackage + exintercom_0_1_6 = callPackage + ( + { buildMix, fetchHex, poison_1_0_3, httpoison_0_8_2 }: + buildMix { + name = "exintercom"; + version = "0.1.6"; + src = fetchHex { + pkg = "exintercom"; + version = "0.1.6"; + sha256 = + "3e4e112dc29a36244b490bb6fb40c861be12e70a7723323520430059c3ffeb51"; + }; + beamDeps = [ poison_1_0_3 httpoison_0_8_2 ]; + + meta = { + description = ''Intercom client library.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/versality/exintercom"; + }; + } + ) {}; + + exintercom = exintercom_0_1_6; + + exirc_0_10_0 = callPackage ( { buildMix, fetchHex }: buildMix { name = "exirc"; - version = "0.9.2"; + version = "0.10.0"; src = fetchHex { pkg = "exirc"; - version = "0.9.2"; + version = "0.10.0"; sha256 = - "5b534e0a1bb3d54b57df9c8265d861e4dc3f3078c5483d7520b398458a1c6367"; + "f2382ad3d97e791cc38ce54558296bb0afe7d222dc5f248ec72c6a0ca9c494a8"; }; meta = { @@ -14665,7 +17124,7 @@ let } ) {}; - exirc = exirc_0_9_2; + exirc = exirc_0_10_0; exjira_0_0_1 = callPackage ( @@ -14697,8 +17156,8 @@ let buildMix, fetchHex, sweet_xml_0_6_1, - httpoison_0_8_1, - ex_aws_0_4_17 + httpoison_0_8_2, + ex_aws_0_4_18 }: buildMix { name = "exjprop"; @@ -14709,7 +17168,7 @@ let sha256 = "9fcc1e2e3e12f9f49b1b42cb97df917b5021933d962370dbe67557718a5adee0"; }; - beamDeps = [ sweet_xml_0_6_1 httpoison_0_8_1 ex_aws_0_4_17 ]; + beamDeps = [ sweet_xml_0_6_1 httpoison_0_8_2 ex_aws_0_4_18 ]; meta = { description = ''Elixir library for reading Java properties files @@ -14748,7 +17207,7 @@ let exjsx_3_0_2 = callPackage ( - { buildMix, fetchHex, jsx_2_4_0 }: + { buildMix, fetchHex, jsx_2_3_1 }: buildMix { name = "exjsx"; version = "3.0.2"; @@ -14758,7 +17217,7 @@ let sha256 = "2cd67240a54e9cd2616bc83c0c352d47f87bccd2ec599eceedc00bcbe9063f07"; }; - beamDeps = [ jsx_2_4_0 ]; + beamDeps = [ jsx_2_3_1 ]; meta = { description = ''json for elixir''; @@ -14822,7 +17281,7 @@ let socket_0_2_8, poison_1_2_1, plug_0_8_4, - httpotion_1_0_0, + httpotion_2_2_2, cowboy_1_0_4 }: buildMix { @@ -14838,7 +17297,7 @@ let socket_0_2_8 poison_1_2_1 plug_0_8_4 - httpotion_1_0_0 + httpotion_2_2_2 cowboy_1_0_4 ]; @@ -14852,19 +17311,19 @@ let exkad = exkad_0_0_2; - exkanji_0_2_5 = callPackage + exkanji_0_2_6 = callPackage ( - { buildMix, fetchHex, exromaji_0_2_8 }: + { buildMix, fetchHex, exromaji_0_3_0 }: buildMix { name = "exkanji"; - version = "0.2.5"; + version = "0.2.6"; src = fetchHex { pkg = "exkanji"; - version = "0.2.5"; + version = "0.2.6"; sha256 = - "f88383523a4b01dbb534eb2f9f95b87cf75402b7a28962170e19919eb07f86a6"; + "2de4907764e9f1f2c67d9bc6b49a44d50fd0cbc86b5848cbada14438616636d1"; }; - beamDeps = [ exromaji_0_2_8 ]; + beamDeps = [ exromaji_0_3_0 ]; meta = { longDescription = ''A Elixir library for translating between @@ -14876,11 +17335,11 @@ let } ) {}; - exkanji = exkanji_0_2_5; + exkanji = exkanji_0_2_6; exkismet_0_0_2 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "exkismet"; version = "0.0.2"; @@ -14890,7 +17349,7 @@ let sha256 = "3648f010eb80891b0195f9ced0e02a5a08860a9d96e8f7bbe328c68f27b85b64"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''A client (completely unofficial) for the @@ -15139,7 +17598,7 @@ let exmoji = exmoji_0_2_2; - exns_0_3_1_beta = callPackage + exns_0_3_2_beta = callPackage ( { buildMix, @@ -15151,12 +17610,12 @@ let }: buildMix { name = "exns"; - version = "0.3.1-beta"; + version = "0.3.2-beta"; src = fetchHex { pkg = "exns"; - version = "0.3.1-beta"; + version = "0.3.2-beta"; sha256 = - "ac2042252d873f0449358628a83c49b80587017ed2962960bca0082809e74398"; + "cc29b065ea9c346a14052e6ebe738fe93714ed936ef23d57b08786f968c4dc48"; }; beamDeps = [ uuid_1_1_3 poolboy_1_5_1 poison_1_5_2 msgpax_0_8_2 ]; @@ -15170,7 +17629,7 @@ let } ) {}; - exns = exns_0_3_1_beta; + exns = exns_0_3_2_beta; exnumerable_0_0_1 = callPackage ( @@ -15244,17 +17703,17 @@ let exnumterator = exnumterator_1_0_0; - exoddic_1_2_0 = callPackage + exoddic_1_3_1 = callPackage ( { buildMix, fetchHex }: buildMix { name = "exoddic"; - version = "1.2.0"; + version = "1.3.1"; src = fetchHex { pkg = "exoddic"; - version = "1.2.0"; + version = "1.3.1"; sha256 = - "84d79ad8365f9efb5de30afbe074d5360828b3780ff21dfd06d865a3d7773d2e"; + "e244c4aab1a25836300973f8afd42aef41dea19121c748c4b6d7b447db842194"; }; meta = { @@ -15265,7 +17724,7 @@ let } ) {}; - exoddic = exoddic_1_2_0; + exoddic = exoddic_1_3_1; exometer_core_1_0_0 = callPackage ( @@ -15356,7 +17815,7 @@ let exparticle_0_0_2 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "exparticle"; version = "0.0.2"; @@ -15366,7 +17825,7 @@ let sha256 = "ce70b77da48e84307791af00143ad4b9677d39765459865976d459d3b1bdcaf2"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''ExParticle is an elixir client to communicate @@ -15437,7 +17896,7 @@ let expinboard_0_0_1 = callPackage ( { - buildMix, fetchHex, ibrowse_4_2_2, httpotion_2_1_0, exjsx_3_2_0 + buildMix, fetchHex, ibrowse_4_2_2, httpotion_2_2_2, exjsx_3_2_0 }: buildMix { name = "expinboard"; @@ -15448,7 +17907,7 @@ let sha256 = "3ff152d837293c0f53ead6cba4180ced55308d2869faa698e459abbe23d59bdc"; }; - beamDeps = [ ibrowse_4_2_2 httpotion_2_1_0 exjsx_3_2_0 ]; + beamDeps = [ ibrowse_4_2_2 httpotion_2_2_2 exjsx_3_2_0 ]; meta = { description = ''A simple elixir pinboard client.''; @@ -15483,17 +17942,17 @@ let expletive = expletive_0_1_4; - expool_0_1_0 = callPackage + expool_0_2_0 = callPackage ( { buildMix, fetchHex }: buildMix { name = "expool"; - version = "0.1.0"; + version = "0.2.0"; src = fetchHex { pkg = "expool"; - version = "0.1.0"; + version = "0.2.0"; sha256 = - "dfb6e81957a94080f33e8469c497102a36831d7fba4a902d895c3f82f5232060"; + "f0cc61c365d1950522ad5816cf638353602db5a5d74feb7c96748dfa2b6f9d07"; }; meta = { @@ -15504,7 +17963,30 @@ let } ) {}; - expool = expool_0_1_0; + expool = expool_0_2_0; + + export_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + export = export_0_0_2; expr_0_1_0 = callPackage ( @@ -15627,17 +18109,17 @@ let } ) {}; - exprotobuf_1_0_0_rc1 = callPackage + exprotobuf_1_0_0 = callPackage ( { buildMix, fetchHex, gpb_3_18_10 }: buildMix { name = "exprotobuf"; - version = "1.0.0-rc1"; + version = "1.0.0"; src = fetchHex { pkg = "exprotobuf"; - version = "1.0.0-rc1"; + version = "1.0.0"; sha256 = - "e4cbf0bc2672e0d9fa3afe5acac8617a4e94443256d5fc19e5e7721681dd3eff"; + "042cc4b2b3e9c13e6fcfd08e49043fa2640aa718e4d743404e1006a372bc2564"; }; beamDeps = [ gpb_3_18_10 ]; @@ -15651,28 +18133,28 @@ let } ) {}; - exprotobuf = exprotobuf_1_0_0_rc1; + exprotobuf = exprotobuf_1_0_0; - exq_0_6_4 = callPackage + exq_0_6_5 = callPackage ( { buildMix, fetchHex, uuid_1_1_3, - timex_1_0_1, - redix_0_3_4, + timex_2_1_3, + redix_0_3_6, poison_2_1_0 }: buildMix { name = "exq"; - version = "0.6.4"; + version = "0.6.5"; src = fetchHex { pkg = "exq"; - version = "0.6.4"; + version = "0.6.5"; sha256 = - "24b75a33da51ea3f3561a127237dbefa5b82d2ff478eb9591314644d89bc8c95"; + "bacb92950e9c01532c9467dc7b4f7d930d8a70ef8d7b9797237aac6f0b608ba2"; }; - beamDeps = [ uuid_1_1_3 timex_1_0_1 redix_0_3_4 poison_2_1_0 ]; + 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 @@ -15684,21 +18166,21 @@ let } ) {}; - exq = exq_0_6_4; + exq = exq_0_6_5; - exq_ui_0_6_4 = callPackage + exq_ui_0_6_5 = callPackage ( - { buildMix, fetchHex, plug_1_1_1, exq_0_6_4, cowboy_1_0_4 }: + { buildMix, fetchHex, plug_1_1_3, exq_0_6_5, cowboy_1_0_4 }: buildMix { name = "exq_ui"; - version = "0.6.4"; + version = "0.6.5"; src = fetchHex { pkg = "exq_ui"; - version = "0.6.4"; + version = "0.6.5"; sha256 = - "6072838b9161e8b036466dd8fb21ea99fd93beb2488d76f3d6561211eac36b71"; + "88763e802738438d54e3b33966e2544832ed2d8215497c9c63b08d8c7199b7f3"; }; - beamDeps = [ plug_1_1_1 exq_0_6_4 cowboy_1_0_4 ]; + 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 @@ -15710,7 +18192,7 @@ let } ) {}; - exq_ui = exq_ui_0_6_4; + exq_ui = exq_ui_0_6_5; exql_0_0_3 = callPackage ( @@ -15811,7 +18293,7 @@ let exrecaptcha_0_0_3 = callPackage ( - { buildMix, fetchHex, httpotion_1_0_0 }: + { buildMix, fetchHex, httpotion_2_2_2 }: buildMix { name = "exrecaptcha"; version = "0.0.3"; @@ -15821,7 +18303,7 @@ let sha256 = "2df1a9e868d3adc31a657755df04fabc9c9e7d12f56cbcc86b27f670dcd962b5"; }; - beamDeps = [ httpotion_1_0_0 ]; + beamDeps = [ httpotion_2_2_2 ]; meta = { longDescription = ''Simple ReCaptcha display/verify code for @@ -15859,6 +18341,53 @@ let exredis = exredis_0_2_3; + exref_0_1_0 = callPackage + ( + { buildMix, 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; + }; + } + ) {}; + + exref = exref_0_1_0; + + exrequester_0_5_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + exrequester = exrequester_0_5_2; + exrethinkdb_0_0_3 = callPackage ( { buildRebar3, fetchHex, poison_1_4_0 }: @@ -15884,19 +18413,43 @@ let exrethinkdb = exrethinkdb_0_0_3; - exrm_0_15_1 = callPackage + exrm_0_14_17 = callPackage ( - { buildMix, fetchHex, conform_0_13_0 }: + { buildMix, fetchHex, conform_0_11_0 }: buildMix { name = "exrm"; - version = "0.15.1"; + version = "0.14.17"; src = fetchHex { pkg = "exrm"; - version = "0.15.1"; + version = "0.14.17"; sha256 = - "ed2227e8b189af4deca0f1b637fdfe9514b817128f6c2b007ccb05c65d49f132"; + "c5b0c2bd4bad44d2f67f5ec720e5a4cff829dfac234aa79056970f83236bb976"; }; - beamDeps = [ conform_0_13_0 ]; + beamDeps = [ conform_0_11_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"; + }; + } + ) {}; + + exrm_0_14_2 = callPackage + ( + { buildMix, fetchHex, conform_0_10_5 }: + buildMix { + name = "exrm"; + version = "0.14.2"; + src = fetchHex { + pkg = "exrm"; + version = "0.14.2"; + sha256 = + "ff70905672059035bfa62a3bb0043809724c6a852050eac52faa06aeb65855c0"; + }; + beamDeps = [ conform_0_10_5 ]; meta = { longDescription = ''Exrm, or Elixir Release Manager, provides mix @@ -15910,7 +18463,7 @@ let exrm_0_18_8 = callPackage ( - { buildMix, fetchHex, relx_3_3_1, conform_0_16_0 }: + { buildMix, fetchHex, relx_3_3_2, conform_0_16_0 }: buildMix { name = "exrm"; version = "0.18.8"; @@ -15920,7 +18473,7 @@ let sha256 = "a8aa031d824f882a762404bc19b6fbe6c10703941097a6ef8bb93a62cc987e22"; }; - beamDeps = [ relx_3_3_1 conform_0_16_0 ]; + beamDeps = [ relx_3_3_2 conform_0_16_0 ]; meta = { longDescription = ''Exrm, or Elixir Release Manager, provides mix @@ -15956,19 +18509,19 @@ let } ) {}; - exrm_1_0_0_rc8 = callPackage + exrm_1_0_3 = callPackage ( - { buildMix, fetchHex, relx_3_17_0 }: + { buildMix, fetchHex, relx_3_18_0 }: buildMix { name = "exrm"; - version = "1.0.0-rc8"; + version = "1.0.3"; src = fetchHex { pkg = "exrm"; - version = "1.0.0-rc8"; + version = "1.0.3"; sha256 = - "f4bc906713eb57e9ac7c4bf16aa218cbb437b3392f2183eb3057e8f6921fa8fa"; + "22ce83a1ffab133ebc94cef871d830971ca0b2f9df3ba44caa8f7eadb13bbe3b"; }; - beamDeps = [ relx_3_17_0 ]; + beamDeps = [ relx_3_18_0 ]; meta = { longDescription = ''Exrm, or Elixir Release Manager, provides mix @@ -15980,11 +18533,49 @@ let } ) {}; - exrm = exrm_1_0_0_rc8; + exrm = exrm_1_0_3; + + exrm_deb_0_0_5 = callPackage + ( + { + buildMix, + 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"; + }; + } + ) {}; + + exrm_deb = exrm_deb_0_0_5; exrm_heroku_0_1_1 = callPackage ( - { buildMix, fetchHex, exrm_1_0_0_rc8 }: + { buildMix, fetchHex, exrm_1_0_3 }: buildMix { name = "exrm_heroku"; version = "0.1.1"; @@ -15994,7 +18585,7 @@ let sha256 = "19fc16f1cfcc1c86bc64796a287028b8a8d951f7737024893c1772ba658da76d"; }; - beamDeps = [ exrm_1_0_0_rc8 ]; + beamDeps = [ exrm_1_0_3 ]; meta = { description = ''Publish Elixir releases created with exrm release @@ -16009,7 +18600,7 @@ let exrm_rpm_0_3_0 = callPackage ( - { buildMix, fetchHex, exrm_0_15_1 }: + { buildMix, fetchHex, exrm_0_14_2 }: buildMix { name = "exrm_rpm"; version = "0.3.0"; @@ -16019,7 +18610,7 @@ let sha256 = "28c2339fac5073d615fb4a52816dd4fc56c9da2db9e71846b0affdf171643044"; }; - beamDeps = [ exrm_0_15_1 ]; + beamDeps = [ exrm_0_14_2 ]; meta = { longDescription = ''Adds simple Red Hat Package Manager (RPM) @@ -16035,17 +18626,17 @@ let exrm_rpm = exrm_rpm_0_3_0; - exromaji_0_2_8 = callPackage + exromaji_0_3_0 = callPackage ( { buildMix, fetchHex }: buildMix { name = "exromaji"; - version = "0.2.8"; + version = "0.3.0"; src = fetchHex { pkg = "exromaji"; - version = "0.2.8"; + version = "0.3.0"; sha256 = - "c402dc57b246ba09a93612e2ac715e013d063eada3f1a88bfe89ad59ecff23db"; + "d1b820b3de05bb3729b3b1d8b3e22ee965899a90abbec44ed6d18507a5f174d3"; }; meta = { @@ -16057,7 +18648,7 @@ let } ) {}; - exromaji = exromaji_0_2_8; + exromaji = exromaji_0_3_0; exrun_0_1_1 = callPackage ( @@ -16132,7 +18723,7 @@ let exseed_0_0_3 = callPackage ( - { buildMix, fetchHex, ecto_2_0_0_beta_0 }: + { buildMix, fetchHex, ecto_2_0_0_beta_2 }: buildMix { name = "exseed"; version = "0.0.3"; @@ -16142,7 +18733,7 @@ let sha256 = "d5f42ed419c9f1d5d179dc93fdf6a58344b07055764498f222f07f95cb82dd98"; }; - beamDeps = [ ecto_2_0_0_beta_0 ]; + beamDeps = [ ecto_2_0_0_beta_2 ]; meta = { description = ''A library that provides a simple DSL for seeding @@ -16155,35 +18746,35 @@ let exseed = exseed_0_0_3; - exsentry_0_2_1 = callPackage + exsentry_0_3_0 = callPackage ( { buildMix, fetchHex, uuid_1_1_3, - timex_1_0_1, - poison_1_5_2, - plug_1_1_1, + timex_2_1_3, + poison_1_0_3, + plug_1_1_3, ibrowse_4_2_2, - httpotion_2_2_0, + httpotion_2_2_2, fuzzyurl_0_8_1 }: buildMix { name = "exsentry"; - version = "0.2.1"; + version = "0.3.0"; src = fetchHex { pkg = "exsentry"; - version = "0.2.1"; + version = "0.3.0"; sha256 = - "3feebb7a00f9fac19c989214bf15131d540e1e88c27286c46b3083c4f85972fb"; + "0cc5b035b58a95e3361de9417a3ab61bf055d02fc3273b048011dcba7f2a515c"; }; beamDeps = [ uuid_1_1_3 - timex_1_0_1 - poison_1_5_2 - plug_1_1_1 + timex_2_1_3 + poison_1_0_3 + plug_1_1_3 ibrowse_4_2_2 - httpotion_2_2_0 + httpotion_2_2_2 fuzzyurl_0_8_1 ]; @@ -16196,11 +18787,11 @@ let } ) {}; - exsentry = exsentry_0_2_1; + exsentry = exsentry_0_3_0; exstatic_0_1_0 = callPackage ( - { buildMix, fetchHex, plug_1_1_1 }: + { buildMix, fetchHex, plug_1_1_3 }: buildMix { name = "exstatic"; version = "0.1.0"; @@ -16210,7 +18801,7 @@ let sha256 = "e063b91c0b2995e4a1a2c1aa56cdd578374320a8755844cc6471b58fa3874d0d"; }; - beamDeps = [ plug_1_1_1 ]; + beamDeps = [ plug_1_1_3 ]; meta = { longDescription = ''Serve static files from memory in the Phoenix @@ -16301,29 +18892,29 @@ let exsyslog = exsyslog_1_0_1; - extreme_0_4_3 = callPackage + extreme_0_5_0 = callPackage ( { buildMix, fetchHex, uuid_1_1_3, poison_1_5_2, - httpoison_0_8_1, + httpoison_0_8_2, exprotobuf_0_10_2 }: buildMix { name = "extreme"; - version = "0.4.3"; + version = "0.5.0"; src = fetchHex { pkg = "extreme"; - version = "0.4.3"; + version = "0.5.0"; sha256 = - "db08580b4b839be7bf3f6198efc7de02c22a3688f46ce32deca983db74f1e330"; + "ddbc42891e2d16a5d204939809e35236968c6bc06d4adab7027f8635fec222ab"; }; beamDeps = [ uuid_1_1_3 poison_1_5_2 - httpoison_0_8_1 + httpoison_0_8_2 exprotobuf_0_10_2 ]; @@ -16335,21 +18926,21 @@ let } ) {}; - extreme = extreme_0_4_3; + extreme = extreme_0_5_0; - extripe_0_2_0 = callPackage + extripe_0_3_2 = callPackage ( - { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: buildMix { name = "extripe"; - version = "0.2.0"; + version = "0.3.2"; src = fetchHex { pkg = "extripe"; - version = "0.2.0"; + version = "0.3.2"; sha256 = - "70cccdf79565d34ab4df68d89e22cfe574b2fe64b631303c496e27f83e798491"; + "4df5dd859ad780bdb4dc0d1c823a8df82cf7421037f1ed40adf20b426d6729a1"; }; - beamDeps = [ poison_2_1_0 httpoison_0_8_1 ]; + beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; meta = { description = ''Stripe API wrapper''; @@ -16359,7 +18950,7 @@ let } ) {}; - extripe = extripe_0_2_0; + extripe = extripe_0_3_2; exts_0_2_2 = callPackage ( @@ -16384,19 +18975,19 @@ let exts = exts_0_2_2; - extwitter_0_6_2 = callPackage + extwitter_0_7_0 = callPackage ( - { buildMix, fetchHex, timex_1_0_1, poison_1_5_2 }: + { buildMix, fetchHex, poison_1_5_2 }: buildMix { name = "extwitter"; - version = "0.6.2"; + version = "0.7.0"; src = fetchHex { pkg = "extwitter"; - version = "0.6.2"; + version = "0.7.0"; sha256 = - "dd5ea2b6c9f99e167024b3ec6fb97f4803f39521229771ae001f7b44ed572f76"; + "15fca145977192f315382d51258324ffd1862161deb586c67aaf0a205ca3cc73"; }; - beamDeps = [ timex_1_0_1 poison_1_5_2 ]; + beamDeps = [ poison_1_5_2 ]; meta = { description = ''Twitter client library for elixir.''; @@ -16406,7 +18997,7 @@ let } ) {}; - extwitter = extwitter_0_6_2; + extwitter = extwitter_0_7_0; exurban_0_0_1 = callPackage ( @@ -16438,8 +19029,8 @@ let buildMix, fetchHex, meck_0_8_4, - httpotion_1_0_0, - httpoison_0_8_1, + httpotion_2_2_2, + httpoison_0_8_2, exjsx_3_2_0, exactor_2_2_0 }: @@ -16454,8 +19045,8 @@ let }; beamDeps = [ meck_0_8_4 - httpotion_1_0_0 - httpoison_0_8_1 + httpotion_2_2_2 + httpoison_0_8_2 exjsx_3_2_0 exactor_2_2_0 ]; @@ -16469,30 +19060,30 @@ let } ) {}; - exvcr_0_7_1 = callPackage + exvcr_0_7_2 = callPackage ( { buildMix, fetchHex, meck_0_8_4, - httpotion_2_2_0, - httpoison_0_8_1, + httpotion_2_2_2, + httpoison_0_8_2, exjsx_3_2_0, exactor_2_2_0 }: buildMix { name = "exvcr"; - version = "0.7.1"; + version = "0.7.2"; src = fetchHex { pkg = "exvcr"; - version = "0.7.1"; + version = "0.7.2"; sha256 = - "e894995695be15a546c1acf09d87967b078e0f6bc0a2be540d226c8ae40b161d"; + "8e5feda0b2a9d2f2305bc68c76286cad73a1ecd9638038691cc17e378e321016"; }; beamDeps = [ meck_0_8_4 - httpotion_2_2_0 - httpoison_0_8_1 + httpotion_2_2_2 + httpoison_0_8_2 exjsx_3_2_0 exactor_2_2_0 ]; @@ -16506,12 +19097,12 @@ let } ) {}; - exvcr = exvcr_0_7_1; + exvcr = exvcr_0_7_2; exyelp_0_0_2 = callPackage ( { - buildMix, fetchHex, poison_2_1_0, oauther_1_0_2, httpoison_0_8_1 + buildMix, fetchHex, poison_2_1_0, oauther_1_0_2, httpoison_0_8_2 }: buildMix { name = "exyelp"; @@ -16522,7 +19113,7 @@ let sha256 = "1be8553ea0369a092eac1b6a0b47652b7c0570911483aa3ca454bef05ddd4d5d"; }; - beamDeps = [ poison_2_1_0 oauther_1_0_2 httpoison_0_8_1 ]; + beamDeps = [ poison_2_1_0 oauther_1_0_2 httpoison_0_8_2 ]; meta = { description = ''An Elixir Yelp API client''; @@ -16558,17 +19149,17 @@ let exyz = exyz_1_0_0; - eye_drops_1_1_0 = callPackage + eye_drops_1_0_1 = callPackage ( { buildMix, fetchHex, fs_0_9_2 }: buildMix { name = "eye_drops"; - version = "1.1.0"; + version = "1.0.1"; src = fetchHex { pkg = "eye_drops"; - version = "1.1.0"; + version = "1.0.1"; sha256 = - "e1ed246cd35d0b58798fdec5cca8066d9251cc37251f298e531d8163dbc11332"; + "4b57c4e6ec58e8e278c5dd2849ad248ccbf1cb9c340476cfebb7ac31e1bbe85d"; }; beamDeps = [ fs_0_9_2 ]; @@ -16582,7 +19173,31 @@ let } ) {}; - eye_drops = eye_drops_1_1_0; + eye_drops_1_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + eye_drops = eye_drops_1_2_0; ezcryptex_0_0_1 = callPackage ( @@ -16636,8 +19251,10 @@ let ezmq_0_2_0 = callPackage ( - { buildRebar3, fetchHex, lager_3_0_1, gen_listener_tcp_0_3_2 }: - buildRebar3 { + { + buildErlangMk, fetchHex, lager_2_1_1, gen_listener_tcp_0_3_2 + }: + buildErlangMk { name = "ezmq"; version = "0.2.0"; src = fetchHex { @@ -16646,8 +19263,7 @@ let sha256 = "bc804ffded0b0d0f684d4313ad3fa676479df962c584daaf5aa14ada5b86a52b"; }; - - beamDeps = [ lager_3_0_1 gen_listener_tcp_0_3_2 ]; + beamDeps = [ lager_2_1_1 gen_listener_tcp_0_3_2 ]; meta = { description = ''Native Erlang 0MQ implementation''; @@ -16659,21 +19275,21 @@ let ezmq = ezmq_0_2_0; - facebook_0_4_1 = callPackage + facebook_0_4_2 = callPackage ( { - buildMix, fetchHex, libex_config_0_2_0, json_0_3_3, hackney_1_4_8 + buildMix, fetchHex, libex_config_0_2_0, json_0_3_3, hackney_1_6_0 }: buildMix { name = "facebook"; - version = "0.4.1"; + version = "0.4.2"; src = fetchHex { pkg = "facebook"; - version = "0.4.1"; + version = "0.4.2"; sha256 = - "f5583fe383f8a2b421f91ddbc9beccc9626527e96ec3502c723cc99e1c47e863"; + "033147d8ae278172ea7fb6fd445bdd6288fb06a8479b9f0e0ae376acc1efdad6"; }; - beamDeps = [ libex_config_0_2_0 json_0_3_3 hackney_1_4_8 ]; + beamDeps = [ libex_config_0_2_0 json_0_3_3 hackney_1_6_0 ]; meta = { longDescription = ''Facebook Graph API Wrapper written in Elixir. @@ -16686,7 +19302,7 @@ let } ) {}; - facebook = facebook_0_4_1; + facebook = facebook_0_4_2; factory_girl_elixir_0_1_1 = callPackage ( @@ -16712,6 +19328,30 @@ let factory_girl_elixir = factory_girl_elixir_0_1_1; + fake_cas_1_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + fake_cas = fake_cas_1_0_1; + faker_0_6_0 = callPackage ( { buildMix, fetchHex }: @@ -16762,17 +19402,17 @@ let fast_tls = fast_tls_1_0_1; - fast_xml_1_1_3 = callPackage + fast_xml_1_1_11 = callPackage ( { buildRebar3, fetchHex, p1_utils_1_0_3 }: buildRebar3 { name = "fast_xml"; - version = "1.1.3"; + version = "1.1.11"; src = fetchHex { pkg = "fast_xml"; - version = "1.1.3"; + version = "1.1.11"; sha256 = - "ea1abe9cdfa0df67178378ba5ec11e746023b66bc1ed0f980ae69d2aa1f732c3"; + "58ad965b6e6913a7cc488552bb30a17d029a44c6b1a17f369870cd911ada46b8"; }; compilePorts = true; beamDeps = [ p1_utils_1_0_3 ]; @@ -16786,19 +19426,19 @@ let } ) {}; - fast_xml = fast_xml_1_1_3; + fast_xml = fast_xml_1_1_11; - fast_yaml_1_0_2 = callPackage + fast_yaml_1_0_3 = callPackage ( { buildRebar3, fetchHex, p1_utils_1_0_3 }: buildRebar3 { name = "fast_yaml"; - version = "1.0.2"; + version = "1.0.3"; src = fetchHex { pkg = "fast_yaml"; - version = "1.0.2"; + version = "1.0.3"; sha256 = - "2f2034d6003425b02619ba15658665134cfd81e3d1c9379c268f802a5775086d"; + "f2b2258dfb98ba69c16005d3944582994f2b83f830b717858a5d6807497274ba"; }; compilePorts = true; beamDeps = [ p1_utils_1_0_3 ]; @@ -16811,11 +19451,34 @@ let } ) {}; - fast_yaml = fast_yaml_1_0_2; + fast_yaml = fast_yaml_1_0_3; + + faust_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + faust = faust_0_1_0; favicon_0_0_7 = callPackage ( - { buildMix, fetchHex, httpoison_0_7_5, floki_0_7_1 }: + { buildMix, fetchHex, httpoison_0_7_5, floki_0_8_0 }: buildMix { name = "favicon"; version = "0.0.7"; @@ -16825,7 +19488,7 @@ let sha256 = "b9a577d3d22a6e51843eb334b87de512f48a548d7a7edf56e178e0dde420ba0e"; }; - beamDeps = [ httpoison_0_7_5 floki_0_7_1 ]; + beamDeps = [ httpoison_0_7_5 floki_0_8_0 ]; meta = { description = ''A library that fetches the favicon url for a @@ -16864,6 +19527,31 @@ let fdg = fdg_0_0_4; + feature_toggler_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + feature_toggler = feature_toggler_0_0_1; + feeder_1_4_7 = callPackage ( { buildRebar3, fetchHex }: @@ -16934,6 +19622,32 @@ let feeder_ex = feeder_ex_0_0_2; + feederer_0_5_6 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + feederer = feederer_0_5_6; + feedistiller_2_0_2 = callPackage ( { @@ -16972,7 +19686,7 @@ let feedlex_0_0_1 = callPackage ( - { buildMix, fetchHex, poison_1_3_1, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_3_1, httpoison_0_8_2 }: buildMix { name = "feedlex"; version = "0.0.1"; @@ -16982,7 +19696,7 @@ let sha256 = "1f20033824f816d6904837601c14bdffcf1a56a53b8ed7d7916a67e48e53b4a5"; }; - beamDeps = [ poison_1_3_1 httpoison_0_8_1 ]; + beamDeps = [ poison_1_3_1 httpoison_0_8_2 ]; meta = { longDescription = ''Feedly RSS reader client for Elixir @@ -17046,19 +19760,19 @@ let feedparser = feedparser_0_0_3; - fernet_ecto_0_0_4 = callPackage + fernet_ecto_0_0_5 = callPackage ( - { buildMix, fetchHex, ecto_1_1_3 }: + { buildMix, fetchHex, fernetex_0_0_2, ecto_1_1_5 }: buildMix { name = "fernet_ecto"; - version = "0.0.4"; + version = "0.0.5"; src = fetchHex { pkg = "fernet_ecto"; - version = "0.0.4"; + version = "0.0.5"; sha256 = - "22a9ab7a7fd1347620ba5dd9e128eae1e97d6403b0ee90a289580c2cb386e1c0"; + "d4f9d0c6ffda955b9a1870bfc525def01fb65fef0bb3c4ed739ce5bbfbb98cda"; }; - beamDeps = [ ecto_1_1_3 ]; + beamDeps = [ fernetex_0_0_2 ecto_1_1_5 ]; meta = { description = ''Fernet-encrypted fields for Ecto''; @@ -17068,21 +19782,21 @@ let } ) {}; - fernet_ecto = fernet_ecto_0_0_4; + fernet_ecto = fernet_ecto_0_0_5; - fernetex_0_0_1 = callPackage + fernetex_0_0_2 = callPackage ( - { buildMix, fetchHex, timex_0_19_5, json_0_3_3 }: + { buildMix, fetchHex, timex_1_0_2 }: buildMix { name = "fernetex"; - version = "0.0.1"; + version = "0.0.2"; src = fetchHex { pkg = "fernetex"; - version = "0.0.1"; + version = "0.0.2"; sha256 = - "0e386a7d783329a2742398e987b0584ca448b22b27ccfc857eab1b0752178714"; + "a6d052384397defe780d3551a16b8b639dba6f89aeea7a6984ecadf44501cfc9"; }; - beamDeps = [ timex_0_19_5 json_0_3_3 ]; + beamDeps = [ timex_1_0_2 ]; meta = { description = ''Elixir implementation of Fernet library based on @@ -17093,7 +19807,38 @@ let } ) {}; - fernetex = fernetex_0_0_1; + fernetex = fernetex_0_0_2; + + fifo_db_0_2_1 = callPackage + ( + { + buildRebar3, + fetchHex, + lager_3_0_2, + erocksdb_0_4_1, + eleveldb_2_1_3 + }: + buildRebar3 { + name = "fifo_db"; + version = "0.2.1"; + src = fetchHex { + pkg = "fifo_db"; + version = "0.2.1"; + sha256 = + "c712ec4dba2b6c358f44196b7bddb2f93ce7a61db2ce1b28d45ebe872e8bc207"; + }; + + beamDeps = [ lager_3_0_2 erocksdb_0_4_1 eleveldb_2_1_3 ]; + + meta = { + description = ''Project-FiFo db wrapper''; + license = stdenv.lib.licenses.cddl; + homepage = "https://github.com/project-fifo/fifo_db"; + }; + } + ) {}; + + fifo_db = fifo_db_0_2_1; fifo_dt_0_1_66 = callPackage ( @@ -17134,7 +19879,46 @@ let } ) {}; - fifo_dt = fifo_dt_0_1_66; + fifo_dt_0_1_68 = callPackage + ( + { + buildRebar3, + fetchHex, + riak_dt_2_1_1, + libsnarlmatch_0_1_7, + lager_2_1_1, + jsxd_0_1_10, + jsx_1_4_5, + fifo_utils_0_1_20 + }: + buildRebar3 { + name = "fifo_dt"; + version = "0.1.68"; + src = fetchHex { + pkg = "fifo_dt"; + version = "0.1.68"; + sha256 = + "dc465553abac1e4a9db50930bbba5ee15f625a440b482311ceb0e428cc121894"; + }; + + beamDeps = [ + riak_dt_2_1_1 + libsnarlmatch_0_1_7 + lager_2_1_1 + jsxd_0_1_10 + jsx_1_4_5 + fifo_utils_0_1_20 + ]; + + meta = { + description = ''FiFo datatype collection''; + license = stdenv.lib.licenses.cddl; + homepage = "https://github.com/project-fifo/fifo_dt"; + }; + } + ) {}; + + fifo_dt = fifo_dt_0_1_68; fifo_lager_0_1_3 = callPackage ( @@ -17251,17 +20035,17 @@ let } ) {}; - fifo_utils_0_1_21 = callPackage + fifo_utils_0_1_22 = callPackage ( { buildRebar3, fetchHex, uuid_erl_1_5_1, lager_2_1_1 }: buildRebar3 { name = "fifo_utils"; - version = "0.1.21"; + version = "0.1.22"; src = fetchHex { pkg = "fifo_utils"; - version = "0.1.21"; + version = "0.1.22"; sha256 = - "8a9298fd7486f56b74b4ffc1d6a3ff3713ffde44b248371f7f673a9bd76add60"; + "dd38d1418298600063354ebb84cbcbf6d49504416323368c8d590dd2a95e257e"; }; beamDeps = [ uuid_erl_1_5_1 lager_2_1_1 ]; @@ -17274,7 +20058,30 @@ let } ) {}; - fifo_utils = fifo_utils_0_1_21; + fifo_utils = fifo_utils_0_1_22; + + fifocache_1_0_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + fifocache = fifocache_1_0_1; figaro_0_1_0 = callPackage ( @@ -17323,6 +20130,31 @@ let figaro_elixir = figaro_elixir_1_0_0; + file_info_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + file_info = file_info_0_0_2; + filepreviews_1_0_1 = callPackage ( { buildMix, fetchHex, poison_1_4_0, httpoison_0_7_5 }: @@ -17375,7 +20207,7 @@ let finance_0_0_1 = callPackage ( - { buildMix, fetchHex, timex_1_0_1 }: + { buildMix, fetchHex, timex_1_0_2 }: buildMix { name = "finance"; version = "0.0.1"; @@ -17385,7 +20217,7 @@ let sha256 = "fe08fc521e65605d54fd8b68fbdfdbd233b408e8330cf8038337214b553c2c17"; }; - beamDeps = [ timex_1_0_1 ]; + beamDeps = [ timex_1_0_2 ]; meta = { longDescription = ''A library to calculate Xirr through the @@ -17431,25 +20263,25 @@ let finch = finch_0_0_3; - finicity_0_0_4 = callPackage + finicity_0_0_5 = callPackage ( { buildMix, fetchHex, xml_builder_0_0_8, - httpotion_2_1_0, - floki_0_7_1 + httpotion_2_2_2, + floki_0_8_0 }: buildMix { name = "finicity"; - version = "0.0.4"; + version = "0.0.5"; src = fetchHex { pkg = "finicity"; - version = "0.0.4"; + version = "0.0.5"; sha256 = - "bed2444d52366a7e6f49bafff0d985c04540ef298922273df11efebe9c1e8387"; + "b58ef39987976cf50851311a95b40504ba763c0d82256b012f5b1246bd92d9b4"; }; - beamDeps = [ xml_builder_0_0_8 httpotion_2_1_0 floki_0_7_1 ]; + beamDeps = [ xml_builder_0_0_8 httpotion_2_2_2 floki_0_8_0 ]; meta = { description = ''Client library for Finicity.''; @@ -17458,7 +20290,7 @@ let } ) {}; - finicity = finicity_0_0_4; + finicity = finicity_0_0_5; fireworks_0_5_1 = callPackage ( @@ -17513,7 +20345,7 @@ let fitbit_0_0_1 = callPackage ( { - buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1, hackney_1_4_8 + buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2, hackney_1_4_10 }: buildMix { name = "fitbit"; @@ -17524,7 +20356,7 @@ let sha256 = "dc09d3b6d37ea67d21a52a704bd52357daa223e18afe4831515730452b3ada25"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 hackney_1_4_8 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 hackney_1_4_10 ]; meta = { description = ''A Fitbit Library for Elixir''; @@ -17730,17 +20562,17 @@ let } ) {}; - floki_0_7_1 = callPackage + floki_0_7_2 = callPackage ( { buildMix, fetchHex, mochiweb_2_12_2 }: buildMix { name = "floki"; - version = "0.7.1"; + version = "0.7.2"; src = fetchHex { pkg = "floki"; - version = "0.7.1"; + version = "0.7.2"; sha256 = - "f4d9df7ffbfeed170dc81d9c6309e47fe3d51c6247b42a2341d8675d3ff653b1"; + "c7078ac2a54501a16ff469c78292bac5013e457ffa8801b74bc293616aa5b0d0"; }; beamDeps = [ mochiweb_2_12_2 ]; @@ -17753,7 +20585,30 @@ let } ) {}; - floki = floki_0_7_1; + floki_0_8_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + floki = floki_0_8_0; floorplan_0_1_1 = callPackage ( @@ -17761,11 +20616,11 @@ let buildMix, fetchHex, xml_builder_0_0_8, - tzdata_0_1_8, - timex_1_0_1, + tzdata_0_1_201603, + timex_1_0_2, postgrex_0_11_1, poison_1_5_2, - httpotion_2_1_0 + httpotion_2_2_2 }: buildMix { name = "floorplan"; @@ -17778,11 +20633,11 @@ let }; beamDeps = [ xml_builder_0_0_8 - tzdata_0_1_8 - timex_1_0_1 + tzdata_0_1_201603 + timex_1_0_2 postgrex_0_11_1 poison_1_5_2 - httpotion_2_1_0 + httpotion_2_2_2 ]; meta = { @@ -17796,21 +20651,21 @@ let floorplan = floorplan_0_1_1; - flower_power_0_2_0 = callPackage + flower_power_0_3_2 = callPackage ( { - buildMix, fetchHex, timex_1_0_1, poison_1_5_2, httpoison_0_7_5 + buildMix, fetchHex, timex_1_0_2, poison_1_5_2, httpoison_0_7_5 }: buildMix { name = "flower_power"; - version = "0.2.0"; + version = "0.3.2"; src = fetchHex { pkg = "flower_power"; - version = "0.2.0"; + version = "0.3.2"; sha256 = - "1ade69e578fd65dd2d10b8097846411f1a5d0a42ad55e9faa532c65bbaf59bbb"; + "f0b7d14fbe0ea78225f3b8424bc907ca6d977576d974b57dcd860afa8ed426a8"; }; - beamDeps = [ timex_1_0_1 poison_1_5_2 httpoison_0_7_5 ]; + beamDeps = [ timex_1_0_2 poison_1_5_2 httpoison_0_7_5 ]; meta = { description = ''Api client for flower power cloud api''; @@ -17820,12 +20675,12 @@ let } ) {}; - flower_power = flower_power_0_2_0; + flower_power = flower_power_0_3_2; fluent_client_0_1_0 = callPackage ( { - buildMix, fetchHex, socket_0_2_8, poison_1_3_1, msgpax_0_7_0 + buildMix, fetchHex, socket_0_2_8, poison_1_3_1, msgpax_0_7_1 }: buildMix { name = "fluent_client"; @@ -17836,7 +20691,7 @@ let sha256 = "df1d05da9475938422a734cd311564eef44bfebea3c37b06ab167368875c2d15"; }; - beamDeps = [ socket_0_2_8 poison_1_3_1 msgpax_0_7_0 ]; + beamDeps = [ socket_0_2_8 poison_1_3_1 msgpax_0_7_1 ]; meta = { description = ''fluentd client library''; @@ -17849,6 +20704,29 @@ let fluent_client = fluent_client_0_1_0; + fluxter_0_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + fluxter = fluxter_0_2_0; + fn_1_0_0 = callPackage ( { buildRebar3, fetchHex }: @@ -17921,17 +20799,17 @@ let folsom = folsom_0_8_3; - folsom_ddb_0_1_20 = callPackage + folsom_ddb_0_1_22 = callPackage ( { buildRebar3, fetchHex, ddb_client_0_1_17 }: buildRebar3 { name = "folsom_ddb"; - version = "0.1.20"; + version = "0.1.22"; src = fetchHex { pkg = "folsom_ddb"; - version = "0.1.20"; + version = "0.1.22"; sha256 = - "9103ab70b048bf35618daf85b314d815e66c23e7100a71b07dcbec18e75d02d1"; + "8b2c5b674b993738f22ff265159e6d71d6640632ed98e9c1cd3daef15b586e46"; }; beamDeps = [ ddb_client_0_1_17 ]; @@ -17944,7 +20822,7 @@ let } ) {}; - folsom_ddb = folsom_ddb_0_1_20; + folsom_ddb = folsom_ddb_0_1_22; folsomite_1_2_8 = callPackage ( @@ -17973,7 +20851,7 @@ let font_awesome_phoenix_0_3_2 = callPackage ( - { buildMix, fetchHex, phoenix_html_2_5_0 }: + { buildMix, fetchHex, phoenix_html_2_5_1 }: buildMix { name = "font_awesome_phoenix"; version = "0.3.2"; @@ -17983,7 +20861,7 @@ let sha256 = "826dd9e0400351cb539ccced605455d8da25490fd37a75085eb68fa133e65f34"; }; - beamDeps = [ phoenix_html_2_5_0 ]; + beamDeps = [ phoenix_html_2_5_1 ]; meta = { description = ''HTML helper functions to build Font Awesome icon @@ -17996,21 +20874,21 @@ let font_awesome_phoenix = font_awesome_phoenix_0_3_2; - forcex_0_1_0 = callPackage + forcex_0_2_0 = callPackage ( { - buildMix, fetchHex, timex_1_0_0_rc4, httpoison_0_8_1, exjsx_3_2_0 + buildMix, fetchHex, timex_1_0_2, httpoison_0_8_2, exjsx_3_2_0 }: buildMix { name = "forcex"; - version = "0.1.0"; + version = "0.2.0"; src = fetchHex { pkg = "forcex"; - version = "0.1.0"; + version = "0.2.0"; sha256 = - "3f7c4ddffaa0bfb0408b0148e14e344d7c42349923894ab44b56513c05c14c08"; + "31c6bd2d550193983812a5e8c4ed53d5d6be0fe30ce6628d62828f00544a7a4b"; }; - beamDeps = [ timex_1_0_0_rc4 httpoison_0_8_1 exjsx_3_2_0 ]; + beamDeps = [ timex_1_0_2 httpoison_0_8_2 exjsx_3_2_0 ]; meta = { description = ''Elixir library for the Force.com / SalesForce / @@ -18021,11 +20899,11 @@ let } ) {}; - forcex = forcex_0_1_0; + forcex = forcex_0_2_0; forecast_io_0_2_1 = callPackage ( - { buildMix, fetchHex, json_0_3_3, httpotion_1_0_0 }: + { buildMix, fetchHex, json_0_3_3, httpotion_2_2_2 }: buildMix { name = "forecast_io"; version = "0.2.1"; @@ -18035,7 +20913,7 @@ let sha256 = "e109212dcd55c7d94bf9d85c1d6ee6687d35eb065335df13fc105fc242506c09"; }; - beamDeps = [ json_0_3_3 httpotion_1_0_0 ]; + beamDeps = [ json_0_3_3 httpotion_2_2_2 ]; meta = { description = ''Simple wrapper for Forecast.IO API ''; @@ -18097,7 +20975,7 @@ let fox_0_1_12 = callPackage ( - { buildMix, fetchHex, timex_1_0_1, ecto_2_0_0_beta_0 }: + { buildMix, fetchHex, timex_2_1_3, ecto_2_0_0_beta_2 }: buildMix { name = "fox"; version = "0.1.12"; @@ -18107,7 +20985,7 @@ let sha256 = "3b4fe9b49422d99e0c888ca839e828b70b4334637f443a14afc941be5e6a847e"; }; - beamDeps = [ timex_1_0_1 ecto_2_0_0_beta_0 ]; + beamDeps = [ timex_2_1_3 ecto_2_0_0_beta_2 ]; meta = { longDescription = ''Collection of support utility functions and @@ -18123,27 +21001,6 @@ let fox = fox_0_1_12; - fqc_0_1_5 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "fqc"; - version = "0.1.5"; - src = fetchHex { - pkg = "fqc"; - version = "0.1.5"; - sha256 = - "47536dec351a12e1cbe0bc3b52bfff3b0690b0aec660472b5cf49f812eb9aa4f"; - }; - - meta = { - description = ''FiFo EQC helper''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/project-fifo/fqc"; - }; - } - ) {}; - fqc_0_1_7 = callPackage ( { buildRebar3, fetchHex }: @@ -18192,9 +21049,34 @@ let frank = frank_0_0_3; + freegeoip_0_0_4 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: + buildMix { + name = "freegeoip"; + version = "0.0.4"; + src = fetchHex { + pkg = "freegeoip"; + version = "0.0.4"; + sha256 = + "6776938ddc1318ee8a34ef6e3a5dcb85013bbb27feeae3c7d65487ff17e2b558"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; + + meta = { + description = ''Simple Elixir wrapper for freegeoip.net HTTP + API.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/juljimm/freegeoip-elixir"; + }; + } + ) {}; + + freegeoip = freegeoip_0_0_4; + friendly_1_0_1 = callPackage ( - { buildMix, fetchHex, floki_0_7_1 }: + { buildMix, fetchHex, floki_0_8_0 }: buildMix { name = "friendly"; version = "1.0.1"; @@ -18204,7 +21086,7 @@ let sha256 = "5bacdeba9a6752613c037f7ffacd4f7185cf9b348b3b41c73497e539bbb17602"; }; - beamDeps = [ floki_0_7_1 ]; + beamDeps = [ floki_0_8_0 ]; meta = { longDescription = ''HTML and XML parser with the most friendly @@ -18267,7 +21149,7 @@ let fulcrum_0_0_6 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "fulcrum"; version = "0.0.6"; @@ -18277,7 +21159,7 @@ let sha256 = "9cddd3906bad693cad791841d19b2be089e064a5f2dd35d340f46e6cd15d7930"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { longDescription = ''Fulcrum library for Elixir. The aim is to @@ -18317,14 +21199,40 @@ let fumanchu = fumanchu_0_0_1; + function_decorating_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + function_decorating = function_decorating_0_0_1; + funnel_0_4_1 = callPackage ( { buildMix, fetchHex, poolboy_1_5_1, - httpoison_0_8_1, - uuid_0_1_5, + httpoison_0_8_2, + uuid_1_0_0, poison_1_5_2 }: buildMix { @@ -18337,7 +21245,7 @@ let "84b937146c9464afc2a92e53aa0109de60caef599f82613fdcd4dc3e864025d7"; }; beamDeps = [ - poolboy_1_5_1 httpoison_0_8_1 uuid_0_1_5 poison_1_5_2 + poolboy_1_5_1 httpoison_0_8_2 uuid_1_0_0 poison_1_5_2 ]; meta = { @@ -18351,17 +21259,17 @@ let funnel = funnel_0_4_1; - fuse_2_0_0 = callPackage + fuse_2_2_0 = callPackage ( { buildRebar3, fetchHex }: buildRebar3 { name = "fuse"; - version = "2.0.0"; + version = "2.2.0"; src = fetchHex { pkg = "fuse"; - version = "2.0.0"; + version = "2.2.0"; sha256 = - "e2c55c0629ce418974165a65b342e54527333303d7e9c1f0493679144c9698cb"; + "c397f336455ab6596842d2199f018af69855f17df1635e212d3871a135ad46fa"; }; meta = { @@ -18372,7 +21280,7 @@ let } ) {}; - fuse = fuse_2_0_0; + fuse = fuse_2_2_0; fuzzyurl_0_8_1 = callPackage ( @@ -18398,10 +21306,34 @@ let fuzzyurl = fuzzyurl_0_8_1; + fwatch_0_5_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + fwatch = fwatch_0_5_0; + gateway_0_0_6 = callPackage ( { - buildMix, fetchHex, poison_2_1_0, httpoison_0_8_1, fox_0_1_12 + buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2, fox_0_1_12 }: buildMix { name = "gateway"; @@ -18412,7 +21344,7 @@ let sha256 = "4d0de05b0168ee0cc41c9c38491a4b4641d446f38170ca170d0d7440b0c8f619"; }; - beamDeps = [ poison_2_1_0 httpoison_0_8_1 fox_0_1_12 ]; + beamDeps = [ poison_2_1_0 httpoison_0_8_2 fox_0_1_12 ]; meta = { longDescription = ''A generic set of macros and conventions to @@ -18453,7 +21385,7 @@ let gcm_1_2_0 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "gcm"; version = "1.2.0"; @@ -18463,7 +21395,7 @@ let sha256 = "281d5c2dc94a24382292f6fbfe7348316e8afa0a40285978f03e7dcae068170a"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''GCM library to send pushes through GCM''; @@ -18576,6 +21508,29 @@ let gelfex = gelfex_0_0_1; + gen_leader_0_1_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "gen_leader"; + version = "0.1.0"; + src = fetchHex { + pkg = "gen_leader"; + version = "0.1.0"; + sha256 = + "31340f49935767f12b639b69cdc585f26ebcc1802ba46b33555b229da2366207"; + }; + + meta = { + description = ''The gen_leader behaviour''; + license = stdenv.lib.licenses.free; + homepage = "https://github.com/knusbaum/gen_leader_revival"; + }; + } + ) {}; + + gen_leader = gen_leader_0_1_0; + gen_listener_tcp_0_3_2 = callPackage ( { buildRebar3, fetchHex }: @@ -18599,6 +21554,32 @@ let gen_listener_tcp = gen_listener_tcp_0_3_2; + gen_rpc_1_0_2 = callPackage + ( + { buildRebar3, fetchHex, lager_3_0_2 }: + buildRebar3 { + name = "gen_rpc"; + version = "1.0.2"; + src = fetchHex { + pkg = "gen_rpc"; + version = "1.0.2"; + sha256 = + "2e7669c865be0051d322c092f83c0eadefeb04698098ee4b80cc43f60d39f5dd"; + }; + + beamDeps = [ lager_3_0_2 ]; + + meta = { + description = ''A scalable RPC library for Erlang-VM based + languages''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/priestjim/gen_rpc"; + }; + } + ) {}; + + gen_rpc = gen_rpc_1_0_2; + gen_smtp_0_9_0 = callPackage ( { buildRebar3, fetchHex }: @@ -18655,7 +21636,7 @@ let fetchHex, postgrex_0_11_1, poison_1_0_3, - ecto_2_0_0_beta_0 + ecto_2_0_0_beta_2 }: buildMix { name = "geo"; @@ -18666,7 +21647,7 @@ let sha256 = "c0ab2df75521a2f50ff339294ff914b3a71e4f3753c5a82851457e0d40bb2e9c"; }; - beamDeps = [ postgrex_0_11_1 poison_1_0_3 ecto_2_0_0_beta_0 ]; + beamDeps = [ postgrex_0_11_1 poison_1_0_3 ecto_2_0_0_beta_2 ]; meta = { description = ''PostGIS extension for Postgrex. Also encodes and @@ -18711,7 +21692,7 @@ let towel_0_2_1, poolboy_1_5_1, poison_1_5_2, - httpoison_0_8_1 + httpoison_0_8_2 }: buildMix { name = "geocoder"; @@ -18723,7 +21704,7 @@ let "67c45859114f5b82949cb98b75cfc862d739a5212164e4147552c6b3701cc975"; }; beamDeps = [ - towel_0_2_1 poolboy_1_5_1 poison_1_5_2 httpoison_0_8_1 + towel_0_2_1 poolboy_1_5_1 poison_1_5_2 httpoison_0_8_2 ]; meta = { @@ -18834,7 +21815,7 @@ let gh_webhook_plug_0_0_2 = callPackage ( - { buildMix, fetchHex, plug_1_1_1 }: + { buildMix, fetchHex, plug_1_1_3 }: buildMix { name = "gh_webhook_plug"; version = "0.0.2"; @@ -18844,7 +21825,7 @@ let sha256 = "f89c7b883923aea3a3c488e3344390e0771735df72dad7fec270ce49aba88854"; }; - beamDeps = [ plug_1_1_1 ]; + beamDeps = [ plug_1_1_3 ]; meta = { longDescription = ''This Plug makes it easy to listen and respond @@ -18858,17 +21839,17 @@ let gh_webhook_plug = gh_webhook_plug_0_0_2; - gibran_0_0_1 = callPackage + gibran_0_0_2 = callPackage ( { buildMix, fetchHex }: buildMix { name = "gibran"; - version = "0.0.1"; + version = "0.0.2"; src = fetchHex { pkg = "gibran"; - version = "0.0.1"; + version = "0.0.2"; sha256 = - "20e221e7743279bb37560c94bf93dea576d9a24d301cd75f3cfa5f6b0ec6dd20"; + "bdf0eb8c7469ac17e14e898b26fb47d4a360409f7a750bfde5d7d0765f327ca4"; }; meta = { @@ -18879,11 +21860,11 @@ let } ) {}; - gibran = gibran_0_0_1; + gibran = gibran_0_0_2; gil_0_0_3 = callPackage ( - { buildMix, fetchHex, httpoison_0_7_5, floki_0_7_1 }: + { buildMix, fetchHex, httpoison_0_7_5, floki_0_8_0 }: buildMix { name = "gil"; version = "0.0.3"; @@ -18893,7 +21874,7 @@ let sha256 = "5235fdfd30513bd5d75a93272fc952f3ae1c0746e400591c244383d8f0fe9403"; }; - beamDeps = [ httpoison_0_7_5 floki_0_7_1 ]; + beamDeps = [ httpoison_0_7_5 floki_0_8_0 ]; meta = { description = ''"Mix custome task for check exchange rate"''; @@ -18952,17 +21933,17 @@ let gimei_ex = gimei_ex_1_0_0; - git_cli_0_1_0 = callPackage + git_cli_0_2_0 = callPackage ( { buildMix, fetchHex }: buildMix { name = "git_cli"; - version = "0.1.0"; + version = "0.2.0"; src = fetchHex { pkg = "git_cli"; - version = "0.1.0"; + version = "0.2.0"; sha256 = - "08cc7b12b7c29cee656d81008e9627b027555cbdf78fa609b599d64bbef71214"; + "8e52506764fd6ba5f153d2bcd5635c160ed83a7a4e8834b4e67eee317a37f962"; }; meta = { @@ -18973,7 +21954,7 @@ let } ) {}; - git_cli = git_cli_0_1_0; + git_cli = git_cli_0_2_0; gitex_0_1_0 = callPackage ( @@ -19025,7 +22006,7 @@ let github_oauth_0_1_1 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "github_oauth"; version = "0.1.1"; @@ -19035,7 +22016,7 @@ let sha256 = "4e68983af9ed8146a2505ad759cb151c3202471285f07df6132a4acd47aa91f2"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''simple github oauth library''; @@ -19047,6 +22028,56 @@ let github_oauth = github_oauth_0_1_1; + github_trend_ex_0_1_2 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_2, floki_0_8_0 }: + buildMix { + name = "github_trend_ex"; + version = "0.1.2"; + src = fetchHex { + pkg = "github_trend_ex"; + version = "0.1.2"; + sha256 = + "019565ad8efe6c25414dcddc6a7fc99e34f0ff457989ec7b5ad03b79b0c8ca8b"; + }; + beamDeps = [ httpoison_0_8_2 floki_0_8_0 ]; + + meta = { + description = ''Get trend repositories from Github.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/KazuCocoa/github_trend_ex"; + }; + } + ) {}; + + github_trend_ex = github_trend_ex_0_1_2; + + gizoogle_0_0_2 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_2 }: + buildMix { + name = "gizoogle"; + version = "0.0.2"; + src = fetchHex { + pkg = "gizoogle"; + version = "0.0.2"; + sha256 = + "c22d720fc60df8670a194c6ed1fb17fe272a7560b478037aef4a1437331f60e3"; + }; + beamDeps = [ httpoison_0_8_2 ]; + + meta = { + longDescription = ''Uses Gizoogle ta allow you ta drop a rhyme + like a thug n` retrieve links fo` translated + sitez''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/notdevinclark/gizoogle"; + }; + } + ) {}; + + gizoogle = gizoogle_0_0_2; + glitchylicious_0_0_1 = callPackage ( { buildMix, fetchHex }: @@ -19094,25 +22125,44 @@ let global = global_1_0_0; - gmail_0_0_17 = callPackage + gm_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + gm = gm_0_0_2; + + gmail_0_1_8 = callPackage ( { - buildMix, - fetchHex, - timex_1_0_0_rc4, - poison_1_5_2, - httpoison_0_8_1 + buildMix, fetchHex, timex_2_1_3, poison_2_1_0, httpoison_0_8_2 }: buildMix { name = "gmail"; - version = "0.0.17"; + version = "0.1.8"; src = fetchHex { pkg = "gmail"; - version = "0.0.17"; + version = "0.1.8"; sha256 = - "3c8fa022730d7e8016c777e48977077d6ebc02c4382d13d94b60f452ed8e650d"; + "d307c44c9241730fa96d5dbab796295f3d55980465faddf610bf962cd359cbcf"; }; - beamDeps = [ timex_1_0_0_rc4 poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ timex_2_1_3 poison_2_1_0 httpoison_0_8_2 ]; meta = { description = ''A simple Gmail REST API client for Elixir''; @@ -19122,12 +22172,12 @@ let } ) {}; - gmail = gmail_0_0_17; + gmail = gmail_0_1_8; gold_0_12_0 = callPackage ( { - buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1, decimal_1_1_1 + buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2, decimal_1_1_1 }: buildMix { name = "gold"; @@ -19138,7 +22188,7 @@ let sha256 = "fba43501f6c25116c29358c4b5494de5e078cc516572045ac73a7944b918105b"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 decimal_1_1_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 decimal_1_1_1 ]; meta = { description = ''An Elixir library to interface with the Bitcoin @@ -19177,7 +22227,7 @@ let good_enough_geoid_0_0_2 = callPackage ( - { buildMix, fetchHex, csv_1_2_4 }: + { buildMix, fetchHex, csv_1_3_3 }: buildMix { name = "good_enough_geoid"; version = "0.0.2"; @@ -19187,7 +22237,7 @@ let sha256 = "7b2a556206f71e743d77c26a55b60b3282bd799b8254510f62afe2a4ec330746"; }; - beamDeps = [ csv_1_2_4 ]; + beamDeps = [ csv_1_3_3 ]; meta = { description = ''Get EGM Geoid heights that are good enough for @@ -19229,7 +22279,7 @@ let { buildMix, fetchHex, - plug_1_1_1, + plug_1_1_3, module_mocker_0_2_0, cowboy_1_0_4, access_token_extractor_0_1_1 @@ -19244,7 +22294,7 @@ let "029f2399456a7b7474635cab36544d35e200ddd7a470a905191de0fc3612adb5"; }; beamDeps = [ - plug_1_1_1 + plug_1_1_3 module_mocker_0_2_0 cowboy_1_0_4 access_token_extractor_0_1_1 @@ -19264,25 +22314,25 @@ let google_auth = google_auth_0_0_2; - google_sheets_2_0_3 = callPackage + google_sheets_2_0_5 = callPackage ( { buildMix, fetchHex, sweet_xml_0_6_1, - httpoison_0_8_1, - hackney_1_4_8 + httpoison_0_8_2, + hackney_1_6_0 }: buildMix { name = "google_sheets"; - version = "2.0.3"; + version = "2.0.5"; src = fetchHex { pkg = "google_sheets"; - version = "2.0.3"; + version = "2.0.5"; sha256 = - "10b5708d3fb7e41a4e8e026e0cdd2c282fb4804f7f3b53e2a9dd5ddce01749fe"; + "aeaaab3e2df75289cf14740a76b014652fb77a5ef95be3921fc36f4165812682"; }; - beamDeps = [ sweet_xml_0_6_1 httpoison_0_8_1 hackney_1_4_8 ]; + beamDeps = [ sweet_xml_0_6_1 httpoison_0_8_2 hackney_1_6_0 ]; meta = { description = ''OTP application for fetching and polling Google @@ -19293,7 +22343,7 @@ let } ) {}; - google_sheets = google_sheets_2_0_3; + google_sheets = google_sheets_2_0_5; goth_0_0_3 = callPackage ( @@ -19302,7 +22352,7 @@ let fetchHex, poison_1_5_2, json_web_token_0_2_4, - httpoison_0_8_1 + httpoison_0_8_2 }: buildMix { name = "goth"; @@ -19313,7 +22363,7 @@ let sha256 = "0bbf59ae842dc4518cf42123b0fb0d0255bcb72ea37c8ec13bab2efe2339ccc3"; }; - beamDeps = [ poison_1_5_2 json_web_token_0_2_4 httpoison_0_8_1 + beamDeps = [ poison_1_5_2 json_web_token_0_2_4 httpoison_0_8_2 ]; meta = { @@ -19330,8 +22380,8 @@ let gpb_3_18_10 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "gpb"; version = "3.18.10"; src = fetchHex { @@ -19352,8 +22402,8 @@ let gpb_3_18_8 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "gpb"; version = "3.18.8"; src = fetchHex { @@ -19372,17 +22422,17 @@ let } ) {}; - gpb_3_19_0 = callPackage + gpb_3_20_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "gpb"; - version = "3.19.0"; + version = "3.20.0"; src = fetchHex { pkg = "gpb"; - version = "3.19.0"; + version = "3.20.0"; sha256 = - "9d7fdee6914d5ce3850a58f00ae37240ba7ccb9ecf37aeb0e1bdfae37ca6b4b7"; + "d83eb25783fdc3f10b4f8e00c8434453a260958c696efa85fee53ed3a9447e83"; }; meta = { @@ -19394,7 +22444,7 @@ let } ) {}; - gpb = gpb_3_19_0; + gpb = gpb_3_20_0; gproc_0_3_1 = callPackage ( @@ -19517,17 +22567,17 @@ let graphmath = graphmath_1_0_2; - graphql_0_1_2 = callPackage + graphql_0_2_0 = callPackage ( { buildMix, fetchHex }: buildMix { name = "graphql"; - version = "0.1.2"; + version = "0.2.0"; src = fetchHex { pkg = "graphql"; - version = "0.1.2"; + version = "0.2.0"; sha256 = - "d517247d9518fb1db9631a988f02935a253da43c3c2818c8a1355631645bd92c"; + "2469337ef663fb63922e67beafa2a50d56de14176c699758a855210140c269df"; }; meta = { @@ -19538,7 +22588,7 @@ let } ) {}; - graphql = graphql_0_1_2; + graphql = graphql_0_2_0; graphql_ex_0_0_1 = callPackage ( @@ -19560,8 +22610,8 @@ let graphql_parser_0_0_3 = callPackage ( - { buildRebar3, fetchHex, poison_1_5_2 }: - buildRebar3 { + { buildErlangMk, fetchHex, poison_1_5_2 }: + buildErlangMk { name = "graphql_parser"; version = "0.0.3"; src = fetchHex { @@ -19570,7 +22620,6 @@ let sha256 = "c54d6d3a4d5daba22559bc306e3e52cb8d78d3a93738f615c16e405ad56ac6a9"; }; - beamDeps = [ poison_1_5_2 ]; meta = { @@ -19584,6 +22633,30 @@ let graphql_parser = graphql_parser_0_0_3; + graphql_relay_0_0_16 = callPackage + ( + { buildMix, fetchHex, poison_1_0_3, graphql_0_2_0, ecto_1_1_5 }: + buildMix { + name = "graphql_relay"; + version = "0.0.16"; + src = fetchHex { + pkg = "graphql_relay"; + version = "0.0.16"; + sha256 = + "70c84b22afba3dc47c0a68c4ba58f7f4319d1ef55c8a85364fc05e05bcaf97af"; + }; + beamDeps = [ poison_1_0_3 graphql_0_2_0 ecto_1_1_5 ]; + + meta = { + description = ''Elixir implementation of Relay for GraphQL''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/graphql-elixir/graphql_relay"; + }; + } + ) {}; + + graphql_relay = graphql_relay_0_0_16; + gravatarify_0_1_0 = callPackage ( { buildMix, fetchHex }: @@ -19631,6 +22704,34 @@ let gray = gray_0_0_2; + group_manager_0_0_8 = callPackage + ( + { buildMix, fetchHex, chatter_0_0_14 }: + buildMix { + name = "group_manager"; + version = "0.0.8"; + src = fetchHex { + pkg = "group_manager"; + version = "0.0.8"; + sha256 = + "69d9de842663ed764a8f6792c6a0f5a378e717e302058b9050b4a58be0d14cdf"; + }; + beamDeps = [ chatter_0_0_14 ]; + + meta = { + longDescription = ''GroupManager is extracted from the ScaleSmall + project as a standalone piece. This can be used + independently to manage a set of nodes and + coordinate a common goal expressed as integer + ranges.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/dbeck/groupman_ex/"; + }; + } + ) {}; + + group_manager = group_manager_0_0_8; + growl_0_0_2 = callPackage ( { buildMix, fetchHex }: @@ -19683,8 +22784,8 @@ let fetchHex, uuid_1_1_3, poison_1_5_2, - plug_1_1_1, - jose_1_6_1 + plug_1_1_3, + jose_1_7_3 }: buildMix { name = "guardian"; @@ -19695,7 +22796,7 @@ let sha256 = "741aaa989ab656317a247d1db4dcd8e3efbd840b4d451bed7a37504ffdba6dc9"; }; - beamDeps = [ uuid_1_1_3 poison_1_5_2 plug_1_1_1 jose_1_6_1 ]; + beamDeps = [ uuid_1_1_3 poison_1_5_2 plug_1_1_3 jose_1_7_3 ]; meta = { description = ''Elixir Authentication framework''; @@ -19714,8 +22815,8 @@ let fetchHex, uuid_1_1_3, poison_1_5_2, - plug_1_1_1, - jose_1_6_1 + plug_1_1_3, + jose_1_7_3 }: buildMix { name = "guardian"; @@ -19726,7 +22827,7 @@ let sha256 = "9a79ae386f777774ab2910007cd30b20e2ea8da51c0712ec07f8cc8a13dfe293"; }; - beamDeps = [ uuid_1_1_3 poison_1_5_2 plug_1_1_1 jose_1_6_1 ]; + beamDeps = [ uuid_1_1_3 poison_1_5_2 plug_1_1_3 jose_1_7_3 ]; meta = { description = ''Elixir Authentication framework''; @@ -19743,7 +22844,7 @@ let fetchHex, postgrex_0_11_1, guardian_0_9_1, - ecto_2_0_0_beta_0 + ecto_2_0_0_beta_2 }: buildMix { name = "guardian_db"; @@ -19754,7 +22855,7 @@ let sha256 = "d8fc1d33885c42c9a35c1c370bfe676b68a9b4fb54ed33ff7075e32cadcd1279"; }; - beamDeps = [ postgrex_0_11_1 guardian_0_9_1 ecto_2_0_0_beta_0 ]; + beamDeps = [ postgrex_0_11_1 guardian_0_9_1 ecto_2_0_0_beta_2 ]; meta = { description = ''DB tracking for token validity''; @@ -19821,7 +22922,7 @@ let fetchHex, websocket_client_1_1_0, poison_1_5_2, - httpoison_0_8_1 + httpoison_0_8_2 }: buildMix { name = "guri"; @@ -19832,7 +22933,7 @@ let sha256 = "7fa0f2ebff111c368895798041d982f00eec34589d93f10bb323bb5a09e1f888"; }; - beamDeps = [ websocket_client_1_1_0 poison_1_5_2 httpoison_0_8_1 + beamDeps = [ websocket_client_1_1_0 poison_1_5_2 httpoison_0_8_2 ]; meta = { @@ -19892,37 +22993,12 @@ let gutenex = gutenex_0_1_0; - hackney_1_0_6 = callPackage - ( - { - buildRebar3, fetchHex, ssl_verify_hostname_1_0_1, idna_1_0_2 - }: - buildRebar3 { - name = "hackney"; - version = "1.0.6"; - src = fetchHex { - pkg = "hackney"; - version = "1.0.6"; - sha256 = - "ba74e309ffd9413ca2fdc0c68871e31db9d6f779f8aa32f4828e08ebab8300da"; - }; - - beamDeps = [ ssl_verify_hostname_1_0_1 idna_1_0_2 ]; - - meta = { - description = ''simple HTTP client''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/benoitc/hackney"; - }; - } - ) {}; - hackney_1_1_0 = callPackage ( { - buildRebar3, fetchHex, ssl_verify_hostname_1_0_6, idna_1_0_3 + buildErlangMk, fetchHex, ssl_verify_hostname_1_0_6, idna_2_0_0 }: - buildRebar3 { + buildErlangMk { name = "hackney"; version = "1.1.0"; src = fetchHex { @@ -19931,8 +23007,7 @@ let sha256 = "c8551072fdc8d5d5faacc5a31050cb943c3a8eb533149798b3ff424ef2d68501"; }; - - beamDeps = [ ssl_verify_hostname_1_0_6 idna_1_0_3 ]; + beamDeps = [ ssl_verify_hostname_1_0_6 idna_2_0_0 ]; meta = { description = ''simple HTTP client''; @@ -19945,9 +23020,9 @@ let hackney_1_3_1 = callPackage ( { - buildRebar3, fetchHex, ssl_verify_hostname_1_0_6, idna_1_0_3 + buildErlangMk, fetchHex, ssl_verify_hostname_1_0_6, idna_2_0_0 }: - buildRebar3 { + buildErlangMk { name = "hackney"; version = "1.3.1"; src = fetchHex { @@ -19956,8 +23031,7 @@ let sha256 = "1a6316daceae744758fc88f2961e68c5a8b6cf1e1f49a28fc2caea6d27581add"; }; - - beamDeps = [ ssl_verify_hostname_1_0_6 idna_1_0_3 ]; + beamDeps = [ ssl_verify_hostname_1_0_6 idna_2_0_0 ]; meta = { description = ''simple HTTP client''; @@ -19970,9 +23044,9 @@ let hackney_1_3_2 = callPackage ( { - buildRebar3, fetchHex, ssl_verify_hostname_1_0_6, idna_1_0_3 + buildErlangMk, fetchHex, ssl_verify_hostname_1_0_6, idna_2_0_0 }: - buildRebar3 { + buildErlangMk { name = "hackney"; version = "1.3.2"; src = fetchHex { @@ -19981,8 +23055,42 @@ let sha256 = "9b811cff637b29f9c7e2c61abf01986c85cd4f64a9422315fd803993b4e82615"; }; + beamDeps = [ ssl_verify_hostname_1_0_6 idna_2_0_0 ]; - beamDeps = [ ssl_verify_hostname_1_0_6 idna_1_0_3 ]; + meta = { + description = ''simple HTTP client''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/benoitc/hackney"; + }; + } + ) {}; + + hackney_1_4_10 = callPackage + ( + { + buildRebar3, + fetchHex, + ssl_verify_hostname_1_0_5, + mimerl_1_0_2, + idna_1_1_0, + certifi_0_3_0 + }: + buildRebar3 { + name = "hackney"; + version = "1.4.10"; + src = fetchHex { + pkg = "hackney"; + version = "1.4.10"; + sha256 = + "dbdda6c342984ab0f35c5099dfab4b419a77771d096089a9173bf11ab6a0f7bf"; + }; + + beamDeps = [ + ssl_verify_hostname_1_0_5 + mimerl_1_0_2 + idna_1_1_0 + certifi_0_3_0 + ]; meta = { description = ''simple HTTP client''; @@ -20062,7 +23170,81 @@ let } ) {}; - hackney = hackney_1_4_8; + hackney_1_5_7 = callPackage + ( + { + buildRebar3, + fetchHex, + ssl_verify_fun_1_1_0, + mimerl_1_0_2, + metrics_1_0_1, + idna_1_2_0, + certifi_0_4_0 + }: + buildRebar3 { + name = "hackney"; + version = "1.5.7"; + src = fetchHex { + pkg = "hackney"; + version = "1.5.7"; + sha256 = + "627ed3f048b950d2dbbec918519f89f498a2136d74ca8180c15fad412b9bc869"; + }; + + beamDeps = [ + ssl_verify_fun_1_1_0 + mimerl_1_0_2 + metrics_1_0_1 + idna_1_2_0 + certifi_0_4_0 + ]; + + meta = { + description = ''simple HTTP client''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/benoitc/hackney"; + }; + } + ) {}; + + hackney_1_6_0 = callPackage + ( + { + buildRebar3, + fetchHex, + ssl_verify_fun_1_1_0, + mimerl_1_0_2, + metrics_1_0_1, + idna_1_2_0, + certifi_0_4_0 + }: + buildRebar3 { + name = "hackney"; + version = "1.6.0"; + src = fetchHex { + pkg = "hackney"; + version = "1.6.0"; + sha256 = + "8b517f17c794ab611815042d24e149daafbd898d63aac8baf6750b890261c716"; + }; + + beamDeps = [ + ssl_verify_fun_1_1_0 + mimerl_1_0_2 + metrics_1_0_1 + idna_1_2_0 + certifi_0_4_0 + ]; + + meta = { + description = ''simple HTTP client''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/benoitc/hackney"; + }; + } + ) {}; + + hackney = hackney_1_6_0; haikunator_1_0_1 = callPackage ( @@ -20090,8 +23272,8 @@ let hamcrest_0_1_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "hamcrest"; version = "0.1.1"; src = fetchHex { @@ -20159,19 +23341,19 @@ let harakiri = harakiri_0_6_0; - harvest_0_0_2 = callPackage + harvest_0_0_3 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: buildMix { name = "harvest"; - version = "0.0.2"; + version = "0.0.3"; src = fetchHex { pkg = "harvest"; - version = "0.0.2"; + version = "0.0.3"; sha256 = - "d4d7289c7f166cd035140b6ebe6a14c4cf1f1552b597473bcc29588c8e394e6d"; + "a9b52f37959a97e876603da5a34a0683e9e4a8e534fb7c672175602768fc812a"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; meta = { description = ''Harvest Time Tracking API wrapper written in @@ -20182,12 +23364,35 @@ let } ) {}; - harvest = harvest_0_0_2; + harvest = harvest_0_0_3; - hash_ring_ex_1_1_2 = callPackage + hash_ring_0_4_0 = callPackage ( { buildRebar3, 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"; + }; + } + ) {}; + + hash_ring = hash_ring_0_4_0; + + hash_ring_ex_1_1_2 = callPackage + ( + { buildMix, fetchHex }: + buildMix { name = "hash_ring_ex"; version = "1.1.2"; src = fetchHex { @@ -20208,17 +23413,17 @@ let hash_ring_ex = hash_ring_ex_1_1_2; - hashids_2_0_1 = callPackage + hashids_2_0_2 = callPackage ( { buildMix, fetchHex }: buildMix { name = "hashids"; - version = "2.0.1"; + version = "2.0.2"; src = fetchHex { pkg = "hashids"; - version = "2.0.1"; + version = "2.0.2"; sha256 = - "8f16b2bf57a71ce5da716bdd731c61e789e2c25f1fd5c00130f0efee9a251a26"; + "3dae063908483454ec691e61da580a056997b4c9affcf12b2330937ee48e6bf0"; }; meta = { @@ -20230,7 +23435,54 @@ let } ) {}; - hashids = hashids_2_0_1; + hashids = hashids_2_0_2; + + hdr_histogram_0_2_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "hdr_histogram"; + version = "0.2.0"; + src = fetchHex { + pkg = "hdr_histogram"; + version = "0.2.0"; + sha256 = + "42b6d038deeb6a6b695f5f18842afef240b2510e433bc08b21c9b3daa99a221e"; + }; + compilePorts = true; + + meta = { + description = ''High Dynamic Range Histogram Erlang/OTP + library''; + license = with stdenv.lib.licenses; [ cc0 bsd3 ]; + homepage = "https://github.com/HdrHistogram/hdr_histogram_erl"; + }; + } + ) {}; + + hdr_histogram = hdr_histogram_0_2_0; + + heap_1_0_0 = callPackage + ( + { buildMix, 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''; + + }; + } + ) {}; + + heap = heap_1_0_0; heapq_0_0_1 = callPackage ( @@ -20256,6 +23508,28 @@ let heapq = heapq_0_0_1; + hedwig_0_3_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + hedwig_1_0_0_rc3 = callPackage ( { buildMix, fetchHex, gproc_0_5_0 }: @@ -20280,9 +23554,57 @@ let hedwig = hedwig_1_0_0_rc3; + hedwig_hipchat_0_9_4 = callPackage + ( + { buildMix, fetchHex, romeo_0_4_0, hedwig_0_3_0 }: + buildMix { + name = "hedwig_hipchat"; + version = "0.9.4"; + src = fetchHex { + pkg = "hedwig_hipchat"; + version = "0.9.4"; + sha256 = + "4d42f307e1c9fd91a47808476a1c278997c6990a69db41f6ed081b61a69056f4"; + }; + beamDeps = [ romeo_0_4_0 hedwig_0_3_0 ]; + + meta = { + description = ''A HipChat adapter for Hedwig''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jwarlander/hedwig_hipchat"; + }; + } + ) {}; + + hedwig_hipchat = hedwig_hipchat_0_9_4; + + hedwig_irc_0_1_1 = callPackage + ( + { buildMix, fetchHex, hedwig_0_3_0, exirc_0_10_0 }: + buildMix { + name = "hedwig_irc"; + version = "0.1.1"; + src = fetchHex { + pkg = "hedwig_irc"; + version = "0.1.1"; + sha256 = + "367d1a654069078fad1a5d27a1447c6aa6044517fbe46c9e10182faa418d6085"; + }; + beamDeps = [ hedwig_0_3_0 exirc_0_10_0 ]; + + meta = { + description = ''An IRC adapter for Hedwig''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jeffweiss/hedwig_irc"; + }; + } + ) {}; + + hedwig_irc = hedwig_irc_0_1_1; + hedwig_xmpp_1_0_0_rc2 = callPackage ( - { buildMix, fetchHex, romeo_0_4_0, hedwig_1_0_0_rc3 }: + { buildMix, fetchHex, romeo_0_4_0, hedwig_0_3_0 }: buildMix { name = "hedwig_xmpp"; version = "1.0.0-rc2"; @@ -20292,7 +23614,7 @@ let sha256 = "79d60e836763c9eb88798bb5921e8eda717fbbf3030ca401f2a3915f58bc59e0"; }; - beamDeps = [ romeo_0_4_0 hedwig_1_0_0_rc3 ]; + beamDeps = [ romeo_0_4_0 hedwig_0_3_0 ]; meta = { description = ''An XMPP adapter for Hedwig''; @@ -20354,7 +23676,7 @@ let hello_world_header_0_0_1 = callPackage ( - { buildMix, fetchHex, plug_0_8_1, cowboy_1_0_4 }: + { buildMix, fetchHex, plug_0_5_2, cowboy_1_0_4 }: buildMix { name = "hello_world_header"; version = "0.0.1"; @@ -20364,7 +23686,7 @@ let sha256 = "caddb7712a66326face465231cf3bfe9210a62787cf5f499f9fbcc04e4695242"; }; - beamDeps = [ plug_0_8_1 cowboy_1_0_4 ]; + beamDeps = [ plug_0_5_2 cowboy_1_0_4 ]; meta = { description = ''Demo plug used for tutorial purposes.''; @@ -20432,8 +23754,8 @@ let fetchHex, table_rex_0_4_0, ibrowse_4_2_2, - httpotion_2_1_0, - floki_0_7_1 + httpotion_2_2_2, + floki_0_7_2 }: buildMix { name = "hex_searcher"; @@ -20447,8 +23769,8 @@ let beamDeps = [ table_rex_0_4_0 ibrowse_4_2_2 - httpotion_2_1_0 - floki_0_7_1 + httpotion_2_2_2 + floki_0_7_2 ]; meta = { @@ -20534,7 +23856,7 @@ let hexoku_0_1_0 = callPackage ( - { buildMix, fetchHex, jsex_2_0_0, httpoison_0_8_1 }: + { buildMix, fetchHex, jsex_2_0_0, httpoison_0_8_2 }: buildMix { name = "hexoku"; version = "0.1.0"; @@ -20544,7 +23866,7 @@ let sha256 = "39c24660842061d71922df5f87ac4fa065b3f18f64a4f438d40495ffeb9d711b"; }; - beamDeps = [ jsex_2_0_0 httpoison_0_8_1 ]; + beamDeps = [ jsex_2_0_0 httpoison_0_8_2 ]; meta = { description = ''Heroku API client and Heroku Mix tasks for Elixir @@ -20580,6 +23902,67 @@ let hlc = hlc_2_0_0; + hmc5883l_0_5_0 = callPackage + ( + { + buildMix, + fetchHex, + multidef_0_2_1, + mon_handler_1_0_2, + elixir_ale_0_4_1, + dialyze_0_1_4 + }: + buildMix { + name = "hmc5883l"; + version = "0.5.0"; + src = fetchHex { + pkg = "hmc5883l"; + version = "0.5.0"; + sha256 = + "cbda55c14a5e1fc5accd49de948331c5dc264286c6ecd58c348cb54c66fe6fa4"; + }; + beamDeps = [ + multidef_0_2_1 + mon_handler_1_0_2 + elixir_ale_0_4_1 + dialyze_0_1_4 + ]; + + meta = { + longDescription = ''OTP application for reading the HMC5883L + 3-axis magnetometer. Magnetic heading is read at + approx. 13hz (every 75ms)''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/tattdcodemonkey/hmc5883l"; + }; + } + ) {}; + + hmc5883l = hmc5883l_0_5_0; + + hoax_0_11_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + hoax = hoax_0_11_1; + holidays_0_1_1 = callPackage ( { buildMix, fetchHex }: @@ -20604,21 +23987,21 @@ let holidays = holidays_0_1_1; - honeybadger_0_3_1 = callPackage + honeybadger_0_4_0 = callPackage ( { - buildMix, fetchHex, poison_1_5_2, plug_0_8_1, httpoison_0_8_1 + buildMix, fetchHex, poison_2_1_0, plug_1_1_3, httpoison_0_8_2 }: buildMix { name = "honeybadger"; - version = "0.3.1"; + version = "0.4.0"; src = fetchHex { pkg = "honeybadger"; - version = "0.3.1"; + version = "0.4.0"; sha256 = - "9555cbe7a4069f27f8182c066411f6c439f79f147eb0a1605e13d55b07fb260b"; + "d2810f38e4a600476ac585c1980dffdf2f62eb2212fe27f76eb07e0ea2bc2dd8"; }; - beamDeps = [ poison_1_5_2 plug_0_8_1 httpoison_0_8_1 ]; + beamDeps = [ poison_2_1_0 plug_1_1_3 httpoison_0_8_2 ]; meta = { longDescription = ''Elixir client, Plug and error_logger for @@ -20631,7 +24014,7 @@ let } ) {}; - honeybadger = honeybadger_0_3_1; + honeybadger = honeybadger_0_4_0; honeydew_0_0_8 = callPackage ( @@ -20682,7 +24065,7 @@ let hound_0_8_2 = callPackage ( - { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: buildMix { name = "hound"; version = "0.8.2"; @@ -20692,7 +24075,7 @@ let sha256 = "3ecb4b7d20de76e6790d61e53555e3486ed5810bb6f0052321620b1d46ffb188"; }; - beamDeps = [ poison_2_1_0 httpoison_0_8_1 ]; + beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; meta = { description = ''Webdriver library for integration testing and @@ -20705,15 +24088,41 @@ let hound = hound_0_8_2; + hpack_1_0_0 = callPackage + ( + { buildMix, 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; + }; + } + ) {}; + + hpack = hpack_1_0_0; + hr_0_2_2 = callPackage ( { buildMix, fetchHex, yyid_0_1_2, - plug_1_1_1, - phoenix_html_2_5_0, - phoenix_ecto_3_0_0_beta_0, + plug_1_1_3, + phoenix_html_2_5_1, + phoenix_ecto_3_0_0_beta_2, phoenix_1_1_4, oauth2_0_3_0, linguist_0_1_5, @@ -20731,9 +24140,9 @@ let }; beamDeps = [ yyid_0_1_2 - plug_1_1_1 - phoenix_html_2_5_0 - phoenix_ecto_3_0_0_beta_0 + plug_1_1_3 + phoenix_html_2_5_1 + phoenix_ecto_3_0_0_beta_2 phoenix_1_1_4 oauth2_0_3_0 linguist_0_1_5 @@ -20754,7 +24163,7 @@ let hstore_0_0_2 = callPackage ( - { buildMix, fetchHex, postgrex_0_6_0, apex_0_3_7 }: + { buildMix, fetchHex, postgrex_0_8_4, apex_0_3_7 }: buildMix { name = "hstore"; version = "0.0.2"; @@ -20764,7 +24173,7 @@ let sha256 = "bd5040285c29162685f4db37ef3ad30c2bb473f5c54fe03ef29b4383cf23504a"; }; - beamDeps = [ postgrex_0_6_0 apex_0_3_7 ]; + beamDeps = [ postgrex_0_8_4 apex_0_3_7 ]; meta = { longDescription = ''A collection of encoders and decoders for @@ -20777,17 +24186,17 @@ let hstore = hstore_0_0_2; - html_builder_0_1_0 = callPackage + html_builder_0_1_1 = callPackage ( { buildMix, fetchHex }: buildMix { name = "html_builder"; - version = "0.1.0"; + version = "0.1.1"; src = fetchHex { pkg = "html_builder"; - version = "0.1.0"; + version = "0.1.1"; sha256 = - "825fa6d1be1c42bf91dcd198c791eb32156973a70273afb93616285f97dce0c2"; + "7cba41180419a26e2fb8ff1c075efcdf31e4079e06144d58623c32c1de3835d9"; }; meta = { @@ -20799,7 +24208,7 @@ let } ) {}; - html_builder = html_builder_0_1_0; + html_builder = html_builder_0_1_1; html_entities_0_3_0 = callPackage ( @@ -20824,6 +24233,28 @@ let html_entities = html_entities_0_3_0; + html_sanitize_ex_0_1_2 = callPackage + ( + { buildMix, fetchHex, mochiweb_2_12_2 }: + buildMix { + name = "html_sanitize_ex"; + version = "0.1.2"; + src = fetchHex { + pkg = "html_sanitize_ex"; + version = "0.1.2"; + sha256 = + "e6937b25832bcdccb8b547632428de7fe034199c871f037311d4340c345348a7"; + }; + beamDeps = [ mochiweb_2_12_2 ]; + + meta = { + description = ''HTML sanitizer for Elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/rrrene/html_sanitize_ex"; + }; + } + ) {}; + html_sanitize_ex_0_3_1 = callPackage ( { buildMix, fetchHex, mochiweb_2_12_2 }: @@ -20906,7 +24337,7 @@ let fetchHex, pool_0_0_2, excoveralls_0_5_1, - ex_doc_0_6_2, + ex_doc_0_7_3, earmark_0_1_19, dialyze_0_1_4 }: @@ -20922,7 +24353,7 @@ let beamDeps = [ pool_0_0_2 excoveralls_0_5_1 - ex_doc_0_6_2 + ex_doc_0_7_3 earmark_0_1_19 dialyze_0_1_4 ]; @@ -20938,13 +24369,62 @@ let http = http_0_0_1; + http2_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + http2 = http2_0_0_2; + + http_params_serializer_0_1_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + http_params_serializer = http_params_serializer_0_1_1; + http_proxy_1_0_1 = callPackage ( { buildMix, fetchHex, plug_1_0_3, - hackney_1_4_8, + hackney_1_4_10, exjsx_3_2_0, cowboy_1_0_4 }: @@ -20957,7 +24437,7 @@ let sha256 = "7ff5d10c8932b189844f9735742250e4fdbe9de5eba40c84e7447f54fc75fdd3"; }; - beamDeps = [ plug_1_0_3 hackney_1_4_8 exjsx_3_2_0 cowboy_1_0_4 + beamDeps = [ plug_1_0_3 hackney_1_4_10 exjsx_3_2_0 cowboy_1_0_4 ]; meta = { @@ -20978,7 +24458,7 @@ let fetchHex, xml_builder_0_0_8, poison_1_5_2, - plug_1_1_1, + plug_1_1_3, cowboy_1_0_4 }: buildMix { @@ -20991,7 +24471,7 @@ let "9a2844cc8c880621ca2689e0056f50e2c19e3b0e87a8e2524489459b377a8dc3"; }; beamDeps = [ - xml_builder_0_0_8 poison_1_5_2 plug_1_1_1 cowboy_1_0_4 + xml_builder_0_0_8 poison_1_5_2 plug_1_1_3 cowboy_1_0_4 ]; meta = { @@ -21009,8 +24489,8 @@ let http_signature_1_1_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "http_signature"; version = "1.1.0"; src = fetchHex { @@ -21059,7 +24539,7 @@ let httpehaviour_0_9_0 = callPackage ( - { buildMix, fetchHex, hackney_1_4_8 }: + { buildMix, fetchHex, hackney_1_6_0 }: buildMix { name = "httpehaviour"; version = "0.9.0"; @@ -21069,7 +24549,7 @@ let sha256 = "54e93dcf0e62d392781078cf029478194797fe67c98dffe99a91b5d5ec33e4e5"; }; - beamDeps = [ hackney_1_4_8 ]; + beamDeps = [ hackney_1_6_0 ]; meta = { description = ''Yet Yet Another HTTP client for Elixir powered by @@ -21084,7 +24564,7 @@ let httpoison_0_7_1 = callPackage ( - { buildMix, fetchHex, hackney_1_3_2 }: + { buildMix, fetchHex, hackney_1_4_8 }: buildMix { name = "httpoison"; version = "0.7.1"; @@ -21094,7 +24574,7 @@ let sha256 = "ad146f8a1e8cb81d50337ca62bd83a80fc1e3df768b93a9ed4c497c3a554c9b0"; }; - beamDeps = [ hackney_1_3_2 ]; + beamDeps = [ hackney_1_4_8 ]; meta = { description = ''Yet Another HTTP client for Elixir powered by @@ -21107,7 +24587,7 @@ let httpoison_0_7_5 = callPackage ( - { buildMix, fetchHex, hackney_1_3_2 }: + { buildMix, fetchHex, hackney_1_4_8 }: buildMix { name = "httpoison"; version = "0.7.5"; @@ -21117,7 +24597,7 @@ let sha256 = "a9b32452df3c4671c012953d6bb15e3a52bbb41b618f72cbd464e8c9320847c9"; }; - beamDeps = [ hackney_1_3_2 ]; + beamDeps = [ hackney_1_4_8 ]; meta = { description = ''Yet Another HTTP client for Elixir powered by @@ -21130,7 +24610,7 @@ let httpoison_0_8_0 = callPackage ( - { buildMix, fetchHex, hackney_1_4_8 }: + { buildMix, fetchHex, hackney_1_4_10 }: buildMix { name = "httpoison"; version = "0.8.0"; @@ -21140,7 +24620,7 @@ let sha256 = "7a6455689233867da40f285e9e3bcce506cd0c60b1094e1c449de76a46b9e50b"; }; - beamDeps = [ hackney_1_4_8 ]; + beamDeps = [ hackney_1_4_10 ]; meta = { description = ''Yet Another HTTP client for Elixir powered by @@ -21151,19 +24631,19 @@ let } ) {}; - httpoison_0_8_1 = callPackage + httpoison_0_8_2 = callPackage ( - { buildMix, fetchHex, hackney_1_4_8 }: + { buildMix, fetchHex, hackney_1_5_7 }: buildMix { name = "httpoison"; - version = "0.8.1"; + version = "0.8.2"; src = fetchHex { pkg = "httpoison"; - version = "0.8.1"; + version = "0.8.2"; sha256 = - "b4cf6955675f86c77f939b10d29491632a1d227ce1dc4c4db759bc4a52cea600"; + "00738e34fe2e254199c0324ef60b8150a7b2ced66c2296c4df8425c8e9b8d5c0"; }; - beamDeps = [ hackney_1_4_8 ]; + beamDeps = [ hackney_1_5_7 ]; meta = { description = ''Yet Another HTTP client for Elixir powered by @@ -21174,85 +24654,19 @@ let } ) {}; - httpoison = httpoison_0_8_1; + httpoison = httpoison_0_8_2; - httpotion_1_0_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "httpotion"; - version = "1.0.0"; - src = fetchHex { - pkg = "httpotion"; - version = "1.0.0"; - sha256 = - "1ff7af8a280928316ba43e15644b75eedd4481dcd56426beb6cad920b244b734"; - }; - - meta = { - description = ''Fancy HTTP client for Elixir, based on - ibrowse.''; - license = stdenv.lib.licenses.unlicense; - homepage = "https://github.com/myfreeweb/httpotion"; - }; - } - ) {}; - - httpotion_2_0_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "httpotion"; - version = "2.0.0"; - src = fetchHex { - pkg = "httpotion"; - version = "2.0.0"; - sha256 = - "550c94a898f3f2f0bb5f45a18380df66c478fc05b899a1febd7fd3ca666b93c8"; - }; - - meta = { - description = ''Fancy HTTP client for Elixir, based on - ibrowse.''; - license = stdenv.lib.licenses.unlicense; - homepage = "https://github.com/myfreeweb/httpotion"; - }; - } - ) {}; - - httpotion_2_1_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "httpotion"; - version = "2.1.0"; - src = fetchHex { - pkg = "httpotion"; - version = "2.1.0"; - sha256 = - "d34f1e82283b6b953f611dc24571aa2586e72e19d3d6632b8e3dba78cf1e3761"; - }; - - meta = { - description = ''Fancy HTTP client for Elixir, based on - ibrowse.''; - license = stdenv.lib.licenses.unlicense; - homepage = "https://github.com/myfreeweb/httpotion"; - }; - } - ) {}; - - httpotion_2_2_0 = callPackage + httpotion_2_2_2 = callPackage ( { buildMix, fetchHex, ibrowse_4_2_2 }: buildMix { name = "httpotion"; - version = "2.2.0"; + version = "2.2.2"; src = fetchHex { pkg = "httpotion"; - version = "2.2.0"; + version = "2.2.2"; sha256 = - "b5df0909f1cce248a021a1ba970053dbb59bd2695a188396bfc08b6bd73cbd77"; + "47c6b6c535592547366fe16bfa175385e7de09eecbb2dc6b0f2cea526ef45fbd"; }; beamDeps = [ ibrowse_4_2_2 ]; @@ -21265,7 +24679,7 @@ let } ) {}; - httpotion = httpotion_2_2_0; + httpotion = httpotion_2_2_2; httprot_0_1_7 = callPackage ( @@ -21317,7 +24731,7 @@ let huex_0_5_0 = callPackage ( - { buildMix, fetchHex, json_0_3_3, httpoison_0_8_1 }: + { buildMix, fetchHex, json_0_3_3, httpoison_0_8_2 }: buildMix { name = "huex"; version = "0.5.0"; @@ -21327,7 +24741,7 @@ let sha256 = "e5fe37fdc4299567922697516df8ade2f64d2c1573dc9a253e5037f66576858f"; }; - beamDeps = [ json_0_3_3 httpoison_0_8_1 ]; + beamDeps = [ json_0_3_3 httpoison_0_8_2 ]; meta = { description = ''Elixir client for Philips Hue connected light @@ -21417,8 +24831,8 @@ let fetchHex, porcelain_2_0_1, poison_1_5_2, - plug_1_1_1, - httpoison_0_8_1, + plug_1_1_3, + httpoison_0_8_2, cowboy_1_0_4 }: buildMix { @@ -21433,8 +24847,8 @@ let beamDeps = [ porcelain_2_0_1 poison_1_5_2 - plug_1_1_1 - httpoison_0_8_1 + plug_1_1_3 + httpoison_0_8_2 cowboy_1_0_4 ]; @@ -21495,7 +24909,7 @@ let iam_role_1_0_0 = callPackage ( - { buildMix, fetchHex, jsone_1_2_0 }: + { buildMix, fetchHex, jsone_1_2_1 }: buildMix { name = "iam_role"; version = "1.0.0"; @@ -21505,7 +24919,7 @@ let sha256 = "acfc5d5c5130a36dfb2b460f790bd9e32bf39274f17333bd65c28d216983761d"; }; - beamDeps = [ jsone_1_2_0 ]; + beamDeps = [ jsone_1_2_1 ]; meta = { description = ''Application for automatically fetching AWS IAM @@ -21592,8 +25006,8 @@ let idna_1_0_2 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "idna"; version = "1.0.2"; src = fetchHex { @@ -21632,20 +25046,108 @@ let } ) {}; - idna = idna_1_0_3; + idna_1_1_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "idna"; + version = "1.1.0"; + src = fetchHex { + pkg = "idna"; + version = "1.1.0"; + sha256 = + "d399393011cd2fa93761d70199b604b2f055bcf6cb45cac922870e122d2eb2fe"; + }; - ielixir_0_9_0 = callPackage + meta = { + description = ''A pure Erlang IDNA implementation''; + + homepage = "https://github.com/benoitc/erlang-idna"; + }; + } + ) {}; + + idna_1_2_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + idna_2_0_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + idna = idna_2_0_0; + + ieex_0_0_3 = callPackage ( { buildMix, 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"; + }; + } + ) {}; + + ieex = ieex_0_0_3; + + ielixir_0_9_5 = callPackage + ( + { buildMix, fetchHex, sqlite_ecto_0_5_0, ecto_0_15_0 }: buildMix { name = "ielixir"; - version = "0.9.0"; + version = "0.9.5"; src = fetchHex { pkg = "ielixir"; - version = "0.9.0"; + version = "0.9.5"; sha256 = - "a6cce07a3aeb493bd248f063ba0327e88103b64c0c54657e344dab1c6f568078"; + "77dae7b4b147da21161b6de0662d3bdeb13d15b12866b2e67add5ec3c550b7ce"; }; + beamDeps = [ sqlite_ecto_0_5_0 ecto_0_15_0 ]; meta = { description = ''Jupyter`s kernel for Elixir programming @@ -21656,11 +25158,11 @@ let } ) {}; - ielixir = ielixir_0_9_0; + ielixir = ielixir_0_9_5; ifttt_oauth_0_0_1 = callPackage ( - { buildMix, fetchHex, oauth2_0_5_0 }: + { buildMix, fetchHex, oauth2_0_6_0 }: buildMix { name = "ifttt_oauth"; version = "0.0.1"; @@ -21670,7 +25172,7 @@ let sha256 = "9029506687be770891b3fb54d9e39bab9dd0f65a9551c6b335a3b0a60dc3026c"; }; - beamDeps = [ oauth2_0_5_0 ]; + beamDeps = [ oauth2_0_6_0 ]; meta = { longDescription = ''A simple Elixir wrapper around @@ -21757,8 +25259,8 @@ let inaka_aleppo_0_9_9 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "inaka_aleppo"; version = "0.9.9"; src = fetchHex { @@ -21780,8 +25282,8 @@ let inaka_mixer_0_1_5 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "inaka_mixer"; version = "0.1.5"; src = fetchHex { @@ -21897,17 +25399,17 @@ let inet_cidr = inet_cidr_1_0_1; - inflex_0_2_3 = callPackage + inflex_0_2_4 = callPackage ( { buildMix, fetchHex }: buildMix { name = "inflex"; - version = "0.2.3"; + version = "0.2.4"; src = fetchHex { pkg = "inflex"; - version = "0.2.3"; + version = "0.2.4"; sha256 = - "1acb28e23bfb8a38e07fbb764a2691a59fce5c499a79fd27e869a43495710e64"; + "f4bf8389a59b04f2b92be024d6234fc3583863f06d23db70324f9cb6b5eba8bf"; }; meta = { @@ -22032,19 +25534,19 @@ let ini = ini_0_0_1; - inquisitor_0_0_2 = callPackage + inquisitor_0_1_0 = callPackage ( - { buildMix, fetchHex, ecto_2_0_0_beta_0 }: + { buildMix, fetchHex, ecto_2_0_0_beta_2 }: buildMix { name = "inquisitor"; - version = "0.0.2"; + version = "0.1.0"; src = fetchHex { pkg = "inquisitor"; - version = "0.0.2"; + version = "0.1.0"; sha256 = - "a4d6ed194db0600bad5a19b4efbdd900a0aa943ad79dc03a9a81aaba7ffd4d3d"; + "06a2cbfba419cc1d81f9c6a62a7f501f3aabaf991b514aa2b012c582c50609bd"; }; - beamDeps = [ ecto_2_0_0_beta_0 ]; + beamDeps = [ ecto_2_0_0_beta_2 ]; meta = { description = ''Easily build extendable and composable Ecto @@ -22055,7 +25557,7 @@ let } ) {}; - inquisitor = inquisitor_0_0_2; + inquisitor = inquisitor_0_1_0; insert_ordered_set_0_0_1 = callPackage ( @@ -22085,19 +25587,19 @@ let insert_ordered_set = insert_ordered_set_0_0_1; - insight_0_0_2 = callPackage + insight_0_1_3 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "insight"; - version = "0.0.2"; + version = "0.1.3"; src = fetchHex { pkg = "insight"; - version = "0.0.2"; + version = "0.1.3"; sha256 = - "0088430e0a2826d7b52313d9c29af67712530b18a21a192d5e134f975f0596fe"; + "5d7519317e4235d56128bef37a5319308921eab748df3295f1fa2842763a6ea3"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''Elixir package for consuming any Insight-powered @@ -22108,7 +25610,7 @@ let } ) {}; - insight = insight_0_0_2; + insight = insight_0_1_3; insights_0_0_2 = callPackage ( @@ -22134,21 +25636,21 @@ let insights = insights_0_0_2; - instream_0_9_0 = callPackage + instream_0_10_0 = callPackage ( { - buildMix, fetchHex, poolboy_1_5_1, poison_1_5_2, hackney_1_4_8 + buildMix, fetchHex, poolboy_1_5_1, poison_1_0_3, hackney_1_6_0 }: buildMix { name = "instream"; - version = "0.9.0"; + version = "0.10.0"; src = fetchHex { pkg = "instream"; - version = "0.9.0"; + version = "0.10.0"; sha256 = - "e0413b68ca4a593ca11179e968c7c5f79d897a2435d5d40def68f6bc59d7a042"; + "e43e1400c6c177cb3295585b2d29312571b1f8aaea643b4f605705db858283c4"; }; - beamDeps = [ poolboy_1_5_1 poison_1_5_2 hackney_1_4_8 ]; + beamDeps = [ poolboy_1_5_1 poison_1_0_3 hackney_1_6_0 ]; meta = { description = ''InfluxDB driver for Elixir''; @@ -22158,7 +25660,7 @@ let } ) {}; - instream = instream_0_9_0; + instream = instream_0_10_0; instrumental_0_1_3 = callPackage ( @@ -22186,7 +25688,7 @@ let intellij_elixir_0_1_2 = callPackage ( - { buildMix, fetchHex, exrm_0_15_1 }: + { buildMix, fetchHex, exrm_0_14_17 }: buildMix { name = "intellij_elixir"; version = "0.1.2"; @@ -22196,7 +25698,7 @@ let sha256 = "023e970e20ef19dbd6e818708c687faf9b47b525b9771bc910a4e48adc101a46"; }; - beamDeps = [ exrm_0_15_1 ]; + beamDeps = [ exrm_0_14_17 ]; meta = { longDescription = ''IntellijElixir allows intellij-elixir to ask @@ -22237,7 +25739,7 @@ let iplist_1_0_2 = callPackage ( - { buildMix, fetchHex, earmark_0_2_1, cidr_0_5_0 }: + { buildMix, fetchHex, earmark_0_2_1, cidr_1_0_0 }: buildMix { name = "iplist"; version = "1.0.2"; @@ -22247,7 +25749,7 @@ let sha256 = "fae5b5accc8b7a7618c2d1fbf94607ce6e79ca3b493da6643dbb1bd92be30bd4"; }; - beamDeps = [ earmark_0_2_1 cidr_0_5_0 ]; + beamDeps = [ earmark_0_2_1 cidr_1_0_0 ]; meta = { description = ''Library and CLI tool to expand IPv4 ranges to @@ -22260,6 +25762,53 @@ let iplist = iplist_1_0_2; + iptools_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + iptools = iptools_0_0_1; + + is_chinese_1_0_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + is_chinese = is_chinese_1_0_0; + is_email_0_0_2 = callPackage ( { buildMix, fetchHex }: @@ -22286,7 +25835,7 @@ let is_up_1_0_0 = callPackage ( - { buildMix, fetchHex, httpotion_2_1_0 }: + { buildMix, fetchHex, httpotion_2_2_2 }: buildMix { name = "is_up"; version = "1.0.0"; @@ -22296,7 +25845,7 @@ let sha256 = "8811dde26c0142174987941b6395e1934e54c3a88db1d5b19e38b6f794e93c87"; }; - beamDeps = [ httpotion_2_1_0 ]; + beamDeps = [ httpotion_2_2_2 ]; meta = { description = ''Check whether a given url is up.''; @@ -22363,7 +25912,7 @@ let isbndbex_0_0_1 = callPackage ( { - buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1, credo_0_1_10 + buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2, credo_0_3_2 }: buildMix { name = "isbndbex"; @@ -22374,7 +25923,7 @@ let sha256 = "565fe2ea413d0ec50d51c166ad1dd5dc840c3cdb01e70467484017aa6b14d1f9"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 credo_0_1_10 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 credo_0_3_2 ]; meta = { description = ''Elixir wrapper for isbndb.com json api.''; @@ -22388,7 +25937,7 @@ let isn_1_0_0 = callPackage ( - { buildMix, fetchHex, postgrex_0_11_1, ecto_2_0_0_beta_0 }: + { buildMix, fetchHex, postgrex_0_11_1, ecto_2_0_0_beta_2 }: buildMix { name = "isn"; version = "1.0.0"; @@ -22398,7 +25947,7 @@ let sha256 = "08fe62a8fa20333f65e750d7e4abe8c2f215994e514e495178fa718b5a4e3673"; }; - beamDeps = [ postgrex_0_11_1 ecto_2_0_0_beta_0 ]; + beamDeps = [ postgrex_0_11_1 ecto_2_0_0_beta_2 ]; meta = { description = ''Ecto types for the postgreSQL isn extension.''; @@ -22410,19 +25959,19 @@ let isn = isn_1_0_0; - iso3166_0_0_2 = callPackage + iso3166_0_0_3 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, floki_0_7_1 }: + { buildMix, fetchHex, poison_2_1_0, floki_0_8_0 }: buildMix { name = "iso3166"; - version = "0.0.2"; + version = "0.0.3"; src = fetchHex { pkg = "iso3166"; - version = "0.0.2"; + version = "0.0.3"; sha256 = - "c36a652871f31d4b50b4ebd75e99094a1cf9ad7d3df9ddd467b94c2b4dbf9466"; + "9d531b578e4535fd7b85d8f50da3374d057ae7b7c7ecc522710eb7f638660b79"; }; - beamDeps = [ poison_1_5_2 floki_0_7_1 ]; + beamDeps = [ poison_2_1_0 floki_0_8_0 ]; meta = { longDescription = ''A library that provides a list of ISO3166 @@ -22435,34 +25984,34 @@ let } ) {}; - iso3166 = iso3166_0_0_2; + iso3166 = iso3166_0_0_3; - ja_serializer_0_7_1 = callPackage + ja_serializer_0_8_1 = callPackage ( { buildMix, fetchHex, scrivener_1_1_2, - poison_1_5_2, - plug_1_1_1, + poison_1_0_3, + plug_1_1_3, inflex_1_5_0, - ecto_2_0_0_beta_0 + ecto_2_0_0_beta_2 }: buildMix { name = "ja_serializer"; - version = "0.7.1"; + version = "0.8.1"; src = fetchHex { pkg = "ja_serializer"; - version = "0.7.1"; + version = "0.8.1"; sha256 = - "3f85203b1dd2e1c501ac41d45e9213a659e67c00ebacbe1b3e5b042c50f226ea"; + "5f68d075f32456e6de55297601c65a8b2a8144135c6adbb51d13c6d0db338b93"; }; beamDeps = [ scrivener_1_1_2 - poison_1_5_2 - plug_1_1_1 + poison_1_0_3 + plug_1_1_3 inflex_1_5_0 - ecto_2_0_0_beta_0 + ecto_2_0_0_beta_2 ]; meta = { @@ -22476,11 +26025,11 @@ let } ) {}; - ja_serializer = ja_serializer_0_7_1; + ja_serializer = ja_serializer_0_8_1; janrain_0_0_1 = callPackage ( - { buildMix, fetchHex, httpoison_0_8_1 }: + { buildMix, fetchHex, httpoison_0_8_2 }: buildMix { name = "janrain"; version = "0.0.1"; @@ -22490,7 +26039,7 @@ let sha256 = "35299ee088dfd5647e7a5cd129d5011f2d6319fe53045b2a8ce3ddf70792cc78"; }; - beamDeps = [ httpoison_0_8_1 ]; + beamDeps = [ httpoison_0_8_2 ]; meta = { longDescription = ''A small library to help with Janrain logins. @@ -22528,17 +26077,17 @@ let japanese_holiday = japanese_holiday_0_0_2; - jazz_0_1_1 = callPackage + jazz_0_1_2 = callPackage ( { buildMix, fetchHex }: buildMix { name = "jazz"; - version = "0.1.1"; + version = "0.1.2"; src = fetchHex { pkg = "jazz"; - version = "0.1.1"; + version = "0.1.2"; sha256 = - "e348e93a07c449789d17ddddd11cba080ef43132affdd1a287765f3e307ecd1c"; + "db316e2334f3dc3745dc208eba1900471d52713e2c65b7b83cb913deffd5f4a7"; }; meta = { @@ -22670,7 +26219,7 @@ let jira_0_0_8 = callPackage ( - { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: buildMix { name = "jira"; version = "0.0.8"; @@ -22680,7 +26229,7 @@ let sha256 = "71c19ef23ea7351a2dc7b8f14d0c5794ff00382fa43a88a2235ec9c1741a73cb"; }; - beamDeps = [ poison_2_1_0 httpoison_0_8_1 ]; + beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; meta = { description = ''An Elixir client library for JIRA + JIRA Agile / @@ -22740,7 +26289,7 @@ let joken_0_16_1 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, plug_1_1_1, jose_1_6_1 }: + { buildMix, fetchHex, poison_1_5_2, plug_1_1_3, jose_1_7_3 }: buildMix { name = "joken"; version = "0.16.1"; @@ -22750,7 +26299,7 @@ let sha256 = "a804bfd350f61688f6ce8d9898bc17fd4b59990c054debeea44234d53048d93d"; }; - beamDeps = [ poison_1_5_2 plug_1_1_1 jose_1_6_1 ]; + beamDeps = [ poison_1_5_2 plug_1_1_3 jose_1_7_3 ]; meta = { description = ''JWT Library for Elixir''; @@ -22762,7 +26311,7 @@ let joken_1_1_0 = callPackage ( - { buildMix, fetchHex, poison_1_0_3, plug_1_1_1, jose_1_6_1 }: + { buildMix, fetchHex, poison_1_0_3, plug_1_1_3, jose_1_7_3 }: buildMix { name = "joken"; version = "1.1.0"; @@ -22772,7 +26321,7 @@ let sha256 = "05e3ff0799b97b8513a5a17a8f57b1d7ee250f32561e559c997c0ecbea462287"; }; - beamDeps = [ poison_1_0_3 plug_1_1_1 jose_1_6_1 ]; + beamDeps = [ poison_1_0_3 plug_1_1_3 jose_1_7_3 ]; meta = { description = ''JWT Library for Elixir''; @@ -22786,7 +26335,7 @@ let jolt_0_1_0 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, plug_1_1_1, cowboy_1_0_4 }: + { buildMix, fetchHex, poison_1_5_2, plug_1_1_3, cowboy_1_0_4 }: buildMix { name = "jolt"; version = "0.1.0"; @@ -22796,7 +26345,7 @@ let sha256 = "922498b234a1b0a813255d3abf5caa64a9afdc41eb4d8d71f87d71c41fe792e8"; }; - beamDeps = [ poison_1_5_2 plug_1_1_1 cowboy_1_0_4 ]; + beamDeps = [ poison_1_5_2 plug_1_1_3 cowboy_1_0_4 ]; meta = { longDescription = ''A full REST JSON API with zero coding, @@ -22834,19 +26383,18 @@ let jorel_mix = jorel_mix_0_0_1; - jose_1_6_1 = callPackage + jose_1_4_2 = callPackage ( - { buildRebar3, fetchHex, base64url_0_0_1 }: - buildRebar3 { + { buildMix, fetchHex, base64url_0_0_1 }: + buildMix { name = "jose"; - version = "1.6.1"; + version = "1.4.2"; src = fetchHex { pkg = "jose"; - version = "1.6.1"; + version = "1.4.2"; sha256 = - "36f1875790af6a1353a737fa13c6ba1f5356f1bd569341ac035eeaa22be23ac9"; + "7bc79dfa28b0194c9334eddeaf33d02b51d4101d5b18f08086503a7b82be7cb0"; }; - beamDeps = [ base64url_0_0_1 ]; meta = { @@ -22858,7 +26406,30 @@ let } ) {}; - jose = jose_1_6_1; + jose_1_7_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + jose = jose_1_7_3; jsex_2_0_0 = callPackage ( @@ -23008,7 +26579,7 @@ let jsonapi_0_1_0 = callPackage ( - { buildMix, fetchHex, plug_1_1_1 }: + { buildMix, fetchHex, plug_1_1_3 }: buildMix { name = "jsonapi"; version = "0.1.0"; @@ -23018,7 +26589,7 @@ let sha256 = "b4c7d4797a680f23ae8dae666b4e71573f0bb3330223ebb53985e754ade265c8"; }; - beamDeps = [ plug_1_1_1 ]; + beamDeps = [ plug_1_1_3 ]; meta = { longDescription = ''Fully functional JSONAPI V1 Serializer as @@ -23032,17 +26603,17 @@ let jsonapi = jsonapi_0_1_0; - jsone_1_2_0 = callPackage + jsone_1_2_1 = callPackage ( { buildRebar3, fetchHex }: buildRebar3 { name = "jsone"; - version = "1.2.0"; + version = "1.2.1"; src = fetchHex { pkg = "jsone"; - version = "1.2.0"; + version = "1.2.1"; sha256 = - "a60e74284d3a923cde65c00a39dd4542fd7da7c22e8385c0378ad419c54b2e08"; + "d7e772c545a8df144790c3891d09e3be9f917965ebc0bed301f8fd8d3b319059"; }; meta = { @@ -23053,7 +26624,7 @@ let } ) {}; - jsone = jsone_1_2_0; + jsone = jsone_1_2_1; jsx_1_4_5 = callPackage ( @@ -23078,6 +26649,29 @@ let } ) {}; + jsx_2_3_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + jsx_2_4_0 = callPackage ( { buildMix, fetchHex }: @@ -23149,8 +26743,8 @@ let jsx_2_7_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildMix, fetchHex }: + buildMix { name = "jsx"; version = "2.7.1"; src = fetchHex { @@ -23172,8 +26766,8 @@ let jsx_2_8_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildMix, fetchHex }: + buildMix { name = "jsx"; version = "2.8.0"; src = fetchHex { @@ -23244,17 +26838,17 @@ let jsxn = jsxn_0_2_1; - junit_formatter_0_1_2 = callPackage + junit_formatter_1_0_0 = callPackage ( { buildMix, fetchHex }: buildMix { name = "junit_formatter"; - version = "0.1.2"; + version = "1.0.0"; src = fetchHex { pkg = "junit_formatter"; - version = "0.1.2"; + version = "1.0.0"; sha256 = - "1bfd13c71b116541b46ca1b9c07fb82483da9acaaad706e277e4b08e2b198316"; + "f01064940927874ef2c3d275182822951167c7bd685f5d2b0dfcc84928fa0dcb"; }; meta = { @@ -23268,19 +26862,19 @@ let } ) {}; - junit_formatter = junit_formatter_0_1_2; + junit_formatter = junit_formatter_1_0_0; - jwalk_1_1_0 = callPackage + jwalk_1_1_2 = callPackage ( { buildRebar3, fetchHex }: buildRebar3 { name = "jwalk"; - version = "1.1.0"; + version = "1.1.2"; src = fetchHex { pkg = "jwalk"; - version = "1.1.0"; + version = "1.1.2"; sha256 = - "10c150910ba3539583887cb2b5c3f70d602138471e6f6b5c22498aa18ed654e1"; + "322d6bc04c1b16efdd711711c101415f9df18a87af31315e6d04e48e678d1bf0"; }; meta = { @@ -23293,19 +26887,19 @@ let } ) {}; - jwalk = jwalk_1_1_0; + jwalk = jwalk_1_1_2; - jwt_0_1_1 = callPackage + jwt_0_1_2 = callPackage ( { buildRebar3, fetchHex, jsx_2_8_0, base64url_0_0_1 }: buildRebar3 { name = "jwt"; - version = "0.1.1"; + version = "0.1.2"; src = fetchHex { pkg = "jwt"; - version = "0.1.1"; + version = "0.1.2"; sha256 = - "abcff4a2a42af2b7b7bdf55eeb2b73ce2e3bef760750004e74bc5835d64d2188"; + "be9a6502857f40e3c285909a80a21d00dffcb9330951abe86e6c9cffb17770f1"; }; beamDeps = [ jsx_2_8_0 base64url_0_0_1 ]; @@ -23318,7 +26912,7 @@ let } ) {}; - jwt = jwt_0_1_1; + jwt = jwt_0_1_2; jwt_claims_0_0_3 = callPackage ( @@ -23369,17 +26963,40 @@ let jwtex = jwtex_0_0_1; - kafka_ex_0_4_0 = callPackage + k6_bytea_1_1_5 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "k6_bytea"; + version = "1.1.5"; + src = fetchHex { + pkg = "k6_bytea"; + version = "1.1.5"; + sha256 = + "1ce4ca84bbe45890bc3c07809f8e01fb80c4613226fbd318aaac73d4cd233132"; + }; + compilePorts = true; + + meta = { + description = ''A mutable byte array for Erlang.''; + license = stdenv.lib.licenses.mit; + }; + } + ) {}; + + k6_bytea = k6_bytea_1_1_5; + + kafka_ex_0_5_0 = callPackage ( { buildMix, fetchHex }: buildMix { name = "kafka_ex"; - version = "0.4.0"; + version = "0.5.0"; src = fetchHex { pkg = "kafka_ex"; - version = "0.4.0"; + version = "0.5.0"; sha256 = - "93355c6acb4d11b000ced332da9ac91dad1ed0468e9f240b040869a0cde5d71a"; + "5e5d5be9bad3d9b9e77f75047c479aadc140d7e13be85a912cef8e7d647f0ae7"; }; meta = { @@ -23390,19 +27007,19 @@ let } ) {}; - kafka_ex = kafka_ex_0_4_0; + kafka_ex = kafka_ex_0_5_0; - kaguya_0_3_7 = callPackage + kaguya_0_4_1 = callPackage ( { buildMix, fetchHex }: buildMix { name = "kaguya"; - version = "0.3.7"; + version = "0.4.1"; src = fetchHex { pkg = "kaguya"; - version = "0.3.7"; + version = "0.4.1"; sha256 = - "eced5d988fb5bc868e09402c2dd1f6cc67e60d9f07af2d263aada831021f0d84"; + "071fbb9b096d2c4e987a820ea1a9d749d3da378c306053f3c44f5c9a9c748fa1"; }; meta = { @@ -23416,7 +27033,7 @@ let } ) {}; - kaguya = kaguya_0_3_7; + kaguya = kaguya_0_4_1; kalecto_0_3_3 = callPackage ( @@ -23447,7 +27064,7 @@ let kalends_0_6_5 = callPackage ( - { buildRebar3, fetchHex, tzdata_0_1_8 }: + { buildRebar3, fetchHex, tzdata_0_1_201603 }: buildRebar3 { name = "kalends"; version = "0.6.5"; @@ -23458,7 +27075,7 @@ let "b16621edbccdbe5d3f76efe03dab59292f3782d0d7e29bbe2de9943e49968fe2"; }; - beamDeps = [ tzdata_0_1_8 ]; + beamDeps = [ tzdata_0_1_201603 ]; meta = { longDescription = ''Kalends is a datetime library in pure Elixir @@ -23475,7 +27092,7 @@ let kane_0_0_5 = callPackage ( { - buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1, goth_0_0_3 + buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2, goth_0_0_3 }: buildMix { name = "kane"; @@ -23486,7 +27103,7 @@ let sha256 = "e4865178b16793d4f947dee2f21448b3639fad2b1edeb515df67707cf30dc2c3"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 goth_0_0_3 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 goth_0_0_3 ]; meta = { longDescription = ''A library for interacting with Google Cloud @@ -23500,28 +27117,22 @@ let kane = kane_0_0_5; - katipo_0_2_4 = callPackage + katipo_0_3_2 = callPackage ( { - buildRebar3, - fetchHex, - uri_0_1_0, - quintana_0_2_0, - gproc_0_5_0, - cowlib_1_0_0 + buildRebar3, fetchHex, quintana_0_2_0, gproc_0_5_0, cowlib_1_0_0 }: buildRebar3 { name = "katipo"; - version = "0.2.4"; + version = "0.3.2"; src = fetchHex { pkg = "katipo"; - version = "0.2.4"; + version = "0.3.2"; sha256 = - "7ad315785b1e43a78c9d5912469401ab5fa396182acf1ab40feea39539a53d1e"; + "b940c01fcffd5609bf325eb15b7e6bfbbf19f57b9fa39d7117cf16b8d0df0890"; }; compilePorts = true; - beamDeps = [ uri_0_1_0 quintana_0_2_0 gproc_0_5_0 cowlib_1_0_0 - ]; + beamDeps = [ quintana_0_2_0 gproc_0_5_0 cowlib_1_0_0 ]; meta = { description = ''HTTP client based on libcurl''; @@ -23531,7 +27142,37 @@ let } ) {}; - katipo = katipo_0_2_4; + katipo = katipo_0_3_2; + + kcl_0_4_1 = callPackage + ( + { + buildMix, + 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"; + }; + } + ) {}; + + kcl = kcl_0_4_1; keccakf1600_2_0_0 = callPackage ( @@ -23560,7 +27201,7 @@ let keelless_0_1_0 = callPackage ( { - buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1, hackney_1_4_4 + buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2, hackney_1_4_4 }: buildMix { name = "keelless"; @@ -23571,7 +27212,7 @@ let sha256 = "b038600bb0520975a052fe6852a2dcd0dbd1069309134c617519079037d6927e"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 hackney_1_4_4 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 hackney_1_4_4 ]; meta = { description = ''Keen IO API for Elixir.''; @@ -23585,7 +27226,7 @@ let keenex_0_2_0 = callPackage ( - { buildMix, fetchHex, poison_1_3_1, httpotion_1_0_0 }: + { buildMix, fetchHex, poison_1_3_1, httpotion_2_2_2 }: buildMix { name = "keenex"; version = "0.2.0"; @@ -23595,7 +27236,7 @@ let sha256 = "5f66d942fe7066bec625985779d7e69647462e586a704e449cc7229ea752ccb9"; }; - beamDeps = [ poison_1_3_1 httpotion_1_0_0 ]; + beamDeps = [ poison_1_3_1 httpotion_2_2_2 ]; meta = { description = ''Keen.io API Client''; @@ -23607,6 +27248,32 @@ let keenex = keenex_0_2_0; + kerosene_0_0_1 = callPackage + ( + { + buildMix, fetchHex, phoenix_html_2_0_0_dev, ecto_2_0_0_beta_2 + }: + buildMix { + name = "kerosene"; + version = "0.0.1"; + src = fetchHex { + pkg = "kerosene"; + version = "0.0.1"; + sha256 = + "a4a54d2ac3179a4b14b2c115740294003cae23cf30adaad203310d79451d5ddd"; + }; + beamDeps = [ phoenix_html_2_0_0_dev ecto_2_0_0_beta_2 ]; + + meta = { + description = ''Pagination for Ecto and Phoenix.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/elixirdrops/kerosene"; + }; + } + ) {}; + + kerosene = kerosene_0_0_1; + key2value_1_5_1 = callPackage ( { buildRebar3, fetchHex }: @@ -23656,7 +27323,7 @@ let kindred_0_0_1 = callPackage ( { - buildMix, fetchHex, poison_2_0_1, httpoison_0_8_1, ex_rated_1_2_1 + buildMix, fetchHex, poison_2_0_1, httpoison_0_8_2, ex_rated_1_2_2 }: buildMix { name = "kindred"; @@ -23667,7 +27334,7 @@ let sha256 = "48b229e007f3d6d06e38f49c85598c20fb6e76d92afd441a86fdee931c2f5fc2"; }; - beamDeps = [ poison_2_0_1 httpoison_0_8_1 ex_rated_1_2_1 ]; + beamDeps = [ poison_2_0_1 httpoison_0_8_2 ex_rated_1_2_2 ]; meta = { description = ''League of Legends API client written in Elixir''; @@ -23732,7 +27399,7 @@ let kubex_0_1_1 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "kubex"; version = "0.1.1"; @@ -23742,7 +27409,7 @@ let sha256 = "b0bd22246731b1c4d4d7f832cd0015fd6586022c779fb6672f45a648da7dcf79"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''Kubernetes integration for and in pure Elixir.''; @@ -23807,8 +27474,8 @@ let lager_2_1_1 = callPackage ( - { buildRebar3, fetchHex, goldrush_0_1_7 }: - buildRebar3 { + { buildErlangMk, fetchHex, goldrush_0_1_7 }: + buildErlangMk { name = "lager"; version = "2.1.1"; src = fetchHex { @@ -23817,7 +27484,6 @@ let sha256 = "5eb1c17ff0f8692285b7648ef5d827d492b8d7554da782afc300ebb4861d5aba"; }; - beamDeps = [ goldrush_0_1_7 ]; meta = { @@ -23901,6 +27567,31 @@ let lager_graylog = lager_graylog_0_1_0; + lager_hipchat_0_2_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + lager_hipchat = lager_hipchat_0_2_0; + lager_logger_1_0_2 = callPackage ( { buildMix, fetchHex, lager_3_0_2 }: @@ -23976,17 +27667,17 @@ let lager_watchdog = lager_watchdog_0_1_10; - lasp_0_0_4 = callPackage + lasp_0_0_5 = callPackage ( { buildRebar3, fetchHex }: buildRebar3 { name = "lasp"; - version = "0.0.4"; + version = "0.0.5"; src = fetchHex { pkg = "lasp"; - version = "0.0.4"; + version = "0.0.5"; sha256 = - "d119098a34bbd0331ab1cb22e0f1f1d25da35132f8a61ecdc0ed5c0135c84942"; + "0298ef6ad4a35a3ac93ad64c722adc852d45b2d9f8fb76b47edf257481150349"; }; meta = { @@ -23998,12 +27689,12 @@ let } ) {}; - lasp = lasp_0_0_4; + lasp = lasp_0_0_5; lasse_1_1_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "lasse"; version = "1.1.0"; src = fetchHex { @@ -24073,6 +27764,54 @@ let ledx = ledx_0_0_1; + left_pad_0_0_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + left_pad = left_pad_0_0_3; + + leftpad_1_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + leftpad = leftpad_1_0_1; + level_1_0_0 = callPackage ( { buildRebar3, fetchHex }: @@ -24168,19 +27907,40 @@ let } ) {}; - lhttpc = lhttpc_1_3_0; + lhttpc_1_4_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "lhttpc"; + version = "1.4.0"; + src = fetchHex { + pkg = "lhttpc"; + version = "1.4.0"; + sha256 = + "26d5a12b63fedb3e862a816a472258007dc1e85b75a9bcdb0223425e39827777"; + }; - libchunter_0_1_45 = callPackage + meta = { + description = ''Lightweight HTTP Client''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/talko/lhttpc"; + }; + } + ) {}; + + lhttpc = lhttpc_1_4_0; + + libchunter_0_1_46 = callPackage ( { buildRebar3, fetchHex, lager_2_1_1, fifo_spec_0_1_27 }: buildRebar3 { name = "libchunter"; - version = "0.1.45"; + version = "0.1.46"; src = fetchHex { pkg = "libchunter"; - version = "0.1.45"; + version = "0.1.46"; sha256 = - "ecd76f18b2a1ee115b86a6b485119c2a36de9da1d41449dd5bc7e139dedeeb4b"; + "39f117de7cd71e65c793380266595b5b8fdd29edb8ca28b114efbaa2866eba90"; }; beamDeps = [ lager_2_1_1 fifo_spec_0_1_27 ]; @@ -24193,7 +27953,33 @@ let } ) {}; - libchunter = libchunter_0_1_45; + libchunter = libchunter_0_1_46; + + libdecaf_0_0_2 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "libdecaf"; + version = "0.0.2"; + src = fetchHex { + pkg = "libdecaf"; + version = "0.0.2"; + sha256 = + "1e4ab8b542388941118927ae45021c4fb8097f9cce5c2d875624c330adc92b0a"; + }; + compilePorts = true; + + meta = { + longDescription = ''libdecaf NIF for ECDH (X25519, X448), EdDSA + (Ed25519, Ed25519ph, Ed448, Ed448ph), + curve25519, curve448''; + license = stdenv.lib.licenses.mpl20; + homepage = "https://github.com/potatosalad/erlang-libdecaf"; + }; + } + ) {}; + + libdecaf = libdecaf_0_0_2; libex_config_0_2_0 = callPackage ( @@ -24219,6 +28005,38 @@ let libex_config = libex_config_0_2_0; + libhowl_0_1_34 = callPackage + ( + { + buildRebar3, + fetchHex, + mdns_client_lib_0_1_38, + lager_2_1_1, + fifo_spec_0_1_27 + }: + buildRebar3 { + name = "libhowl"; + version = "0.1.34"; + src = fetchHex { + pkg = "libhowl"; + version = "0.1.34"; + sha256 = + "d358c609db2f09d05d51fc73e78b0fbddedbe4cbbc298711e664bfbf0662e10d"; + }; + + beamDeps = [ mdns_client_lib_0_1_38 lager_2_1_1 fifo_spec_0_1_27 + ]; + + meta = { + description = ''howl client library''; + license = stdenv.lib.licenses.cddl; + homepage = "https://github.com/project-fifo/libhowl"; + }; + } + ) {}; + + libhowl = libhowl_0_1_34; + libleofs_0_1_2 = callPackage ( { buildRebar3, fetchHex, jsx_1_4_5 }: @@ -24305,31 +28123,44 @@ let } ) {}; - libsnarl = libsnarl_0_3_40; - - libsnarlmatch_0_1_5 = callPackage + libsnarl_0_3_44 = callPackage ( - { buildRebar3, fetchHex, fqc_0_1_5 }: + { + buildRebar3, + fetchHex, + oauth2_erlang_0_6_1, + mdns_client_lib_0_1_38, + libsnarlmatch_0_1_7, + lager_2_1_1, + fifo_spec_0_1_27 + }: buildRebar3 { - name = "libsnarlmatch"; - version = "0.1.5"; + name = "libsnarl"; + version = "0.3.44"; src = fetchHex { - pkg = "libsnarlmatch"; - version = "0.1.5"; + pkg = "libsnarl"; + version = "0.3.44"; sha256 = - "11410122ca7a0685c4a7df1795d7f5a1e7bf9c5f17096414402fd9d1f0e1ac04"; + "a77b2f532758a7016c375ddf16e316d5a4a727c65418bf7255ed158c8b1e243c"; }; - beamDeps = [ fqc_0_1_5 ]; + beamDeps = [ + oauth2_erlang_0_6_1 + mdns_client_lib_0_1_38 + libsnarlmatch_0_1_7 + lager_2_1_1 + fifo_spec_0_1_27 + ]; meta = { - description = ''permission matcher library''; - license = stdenv.lib.licenses.cddl; - homepage = "https://github.com/project-fifo/libsnarlmatch"; + description = ''snarl interface library''; + }; } ) {}; + libsnarl = libsnarl_0_3_44; + libsnarlmatch_0_1_7 = callPackage ( { buildRebar3, fetchHex }: @@ -24353,26 +28184,26 @@ let libsnarlmatch = libsnarlmatch_0_1_7; - libsniffle_0_3_37 = callPackage + libsniffle_0_3_45 = callPackage ( { buildRebar3, fetchHex, - mdns_client_lib_0_1_33, - lager_3_0_2, + mdns_client_lib_0_1_38, + lager_2_1_1, fifo_spec_0_1_27 }: buildRebar3 { name = "libsniffle"; - version = "0.3.37"; + version = "0.3.45"; src = fetchHex { pkg = "libsniffle"; - version = "0.3.37"; + version = "0.3.45"; sha256 = - "fa840488f50292bbe206e7c13cc9640099cacec8aea3c0c581f6cc482b5bd94c"; + "906329c2a54689f74a53a3cd3fa1fc96ad88be326860227e4a2c731ab40738ed"; }; - beamDeps = [ mdns_client_lib_0_1_33 lager_3_0_2 fifo_spec_0_1_27 + beamDeps = [ mdns_client_lib_0_1_38 lager_2_1_1 fifo_spec_0_1_27 ]; meta = { @@ -24383,19 +28214,19 @@ let } ) {}; - libsniffle = libsniffle_0_3_37; + libsniffle = libsniffle_0_3_45; - libsodium_0_0_3 = callPackage + libsodium_0_0_4 = callPackage ( { buildRebar3, fetchHex }: buildRebar3 { name = "libsodium"; - version = "0.0.3"; + version = "0.0.4"; src = fetchHex { pkg = "libsodium"; - version = "0.0.3"; + version = "0.0.4"; sha256 = - "e66e9d91647a1519194cb0b240144123d68fae0f8cb57a9be9ced30ba8e24397"; + "0ace378dd062546571e0607bddf96fe1dcf62a871fab42b4542328e3bca4b38a"; }; compilePorts = true; @@ -24407,7 +28238,7 @@ let } ) {}; - libsodium = libsodium_0_0_3; + libsodium = libsodium_0_0_4; lineo_0_1_0 = callPackage ( @@ -24500,6 +28331,30 @@ let liquid = liquid_0_1_0; + lob_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + lob = lob_0_1_0; + locker_1_0_8 = callPackage ( { buildRebar3, fetchHex, proper_1_1_1_beta }: @@ -24550,17 +28405,17 @@ let logfmt = logfmt_3_0_2; - logger_file_backend_0_0_6 = callPackage + logger_file_backend_0_0_7 = callPackage ( { buildMix, fetchHex }: buildMix { name = "logger_file_backend"; - version = "0.0.6"; + version = "0.0.7"; src = fetchHex { pkg = "logger_file_backend"; - version = "0.0.6"; + version = "0.0.7"; sha256 = - "57554adfad0599adc3ea540accc1791d4adffedbe87640c0b92df9b860bb1c69"; + "135823f39e810f1826cbd6fa5e1207c6d60a6de09b563c9a204f5b55587cf5a4"; }; meta = { @@ -24571,7 +28426,33 @@ let } ) {}; - logger_file_backend = logger_file_backend_0_0_6; + logger_file_backend = logger_file_backend_0_0_7; + + logger_json_file_backend_0_1_2 = callPackage + ( + { buildMix, fetchHex, poison_1_0_3 }: + buildMix { + name = "logger_json_file_backend"; + version = "0.1.2"; + src = fetchHex { + pkg = "logger_json_file_backend"; + version = "0.1.2"; + sha256 = + "5734a14534ec57f7b1603c53d091facd4e47d7e5b83cf99d1c73439527d995d9"; + }; + beamDeps = [ poison_1_0_3 ]; + + meta = { + description = ''Logger backend that write a json map per line to + a file''; + license = stdenv.lib.licenses.isc; + homepage = + "https://github.com/xflagstudio/elixir_logger_json_file_backend"; + }; + } + ) {}; + + logger_json_file_backend = logger_json_file_backend_0_1_2; logger_logentries_backend_0_0_1 = callPackage ( @@ -24599,19 +28480,19 @@ let logger_logentries_backend = logger_logentries_backend_0_0_1; - logger_loggly_backend_0_1_0 = callPackage + logger_loggly_backend_0_2_0 = callPackage ( - { buildMix, fetchHex, httpoison_0_8_1 }: + { buildMix, fetchHex, httpoison_0_8_2 }: buildMix { name = "logger_loggly_backend"; - version = "0.1.0"; + version = "0.2.0"; src = fetchHex { pkg = "logger_loggly_backend"; - version = "0.1.0"; + version = "0.2.0"; sha256 = - "4b19e284f0b910c824a228093afa176ea4b9c4546893b2ad5da2769aa2bcbc85"; + "111d0e256ace86e2af366b1afc7152b4aadd3cd6c093d5d2b119c08a84395fd6"; }; - beamDeps = [ httpoison_0_8_1 ]; + beamDeps = [ httpoison_0_8_2 ]; meta = { description = ''Loggly logger backend''; @@ -24621,21 +28502,21 @@ let } ) {}; - logger_loggly_backend = logger_loggly_backend_0_1_0; + logger_loggly_backend = logger_loggly_backend_0_2_0; - logger_logstash_backend_1_0_0 = callPackage + logger_logstash_backend_2_0_0 = callPackage ( - { buildMix, fetchHex, timex_1_0_1, exjsx_3_1_0 }: + { buildMix, fetchHex, timex_2_1_3, exjsx_3_1_0 }: buildMix { name = "logger_logstash_backend"; - version = "1.0.0"; + version = "2.0.0"; src = fetchHex { pkg = "logger_logstash_backend"; - version = "1.0.0"; + version = "2.0.0"; sha256 = - "ca36f8ab5f738c143da6b72c9d603ede7e201e2a1c7d683b270c2641d14bbcb2"; + "e0c709aa8fbddd825ef5cc5287e0d04f4470498173555e07156675aeba2b2b7a"; }; - beamDeps = [ timex_1_0_1 exjsx_3_1_0 ]; + beamDeps = [ timex_2_1_3 exjsx_3_1_0 ]; meta = { description = ''Logstash UDP producer backend for Logger.''; @@ -24645,7 +28526,7 @@ let } ) {}; - logger_logstash_backend = logger_logstash_backend_1_0_0; + logger_logstash_backend = logger_logstash_backend_2_0_0; logger_papertrail_backend_0_0_2 = callPackage ( @@ -24789,17 +28670,17 @@ let ltsv = ltsv_0_1_0; - luhn_0_3_0 = callPackage + luhn_0_3_1 = callPackage ( { buildMix, fetchHex }: buildMix { name = "luhn"; - version = "0.3.0"; + version = "0.3.1"; src = fetchHex { pkg = "luhn"; - version = "0.3.0"; + version = "0.3.1"; sha256 = - "e98e7dac83e18d75dbcb87559f17f7b40c00edf79a38b02b9ab5a7d74b05efc2"; + "86aba88228660238ad981b92cb7a0e92be04772fc54fe5effb338c94b3b7d9fa"; }; meta = { @@ -24810,7 +28691,7 @@ let } ) {}; - luhn = luhn_0_3_0; + luhn = luhn_0_3_1; luhnatex_0_5_0 = callPackage ( @@ -24835,6 +28716,84 @@ let luhnatex = luhnatex_0_5_0; + lyn_0_0_16 = callPackage + ( + { + buildMix, + fetchHex, + ueberauth_twitter_0_2_2, + ueberauth_slack_0_2_0, + ueberauth_identity_0_2_3, + ueberauth_google_0_2_0, + ueberauth_github_0_2_0, + ueberauth_facebook_0_3_2, + ueberauth_0_2_0, + scrivener_1_1_2, + postgrex_0_11_1, + poolboy_1_5_1, + poison_1_5_2, + phoenix_html_2_5_1, + phoenix_ecto_3_0_0_beta_2, + phoenix_1_1_4, + json_0_3_3, + inflex_1_5_0, + guardian_db_0_4_0, + guardian_0_9_1, + gettext_0_10_0, + exos_1_0_0, + cowboy_1_0_4, + comeonin_2_1_1, + absinthe_plug_1_0_0 + }: + buildMix { + name = "lyn"; + version = "0.0.16"; + src = fetchHex { + pkg = "lyn"; + version = "0.0.16"; + sha256 = + "63eeabb42336605c1fd79addbdf6a3300bb3101e019be9279f69a98c86345660"; + }; + beamDeps = [ + ueberauth_twitter_0_2_2 + ueberauth_slack_0_2_0 + ueberauth_identity_0_2_3 + ueberauth_google_0_2_0 + ueberauth_github_0_2_0 + ueberauth_facebook_0_3_2 + ueberauth_0_2_0 + scrivener_1_1_2 + postgrex_0_11_1 + poolboy_1_5_1 + poison_1_5_2 + phoenix_html_2_5_1 + phoenix_ecto_3_0_0_beta_2 + phoenix_1_1_4 + json_0_3_3 + inflex_1_5_0 + guardian_db_0_4_0 + guardian_0_9_1 + gettext_0_10_0 + exos_1_0_0 + cowboy_1_0_4 + comeonin_2_1_1 + absinthe_plug_1_0_0 + ]; + + meta = { + longDescription = ''This is a CMS written in Elixir. Aims to be + the great open-source ecommerce and/or startup + solution for those who are searching for a + performance and stability on top of modern + technologies like React and Elixir.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/viatsko/lyn"; + }; + } + ) {}; + + lyn = lyn_0_0_16; + lz4_0_2_2 = callPackage ( { buildRebar3, fetchHex }: @@ -24883,19 +28842,19 @@ let lz_string = lz_string_0_0_3; - m2x_1_3_1 = callPackage + m2x_2_0_0 = callPackage ( - { buildMix, fetchHex, json_0_3_3, hackney_1_4_8 }: + { buildMix, fetchHex, json_0_3_3, hackney_1_6_0 }: buildMix { name = "m2x"; - version = "1.3.1"; + version = "2.0.0"; src = fetchHex { pkg = "m2x"; - version = "1.3.1"; + version = "2.0.0"; sha256 = - "3325226ac185b40304469aa94a7376511bf57d535eb1d32b2aca6c2009c54fe2"; + "e125cf588d48d9b04fb4a003bb62ab1a8e8df359866dba0cde6444e9fd7ce939"; }; - beamDeps = [ json_0_3_3 hackney_1_4_8 ]; + beamDeps = [ json_0_3_3 hackney_1_6_0 ]; meta = { longDescription = ''Elixir client library for the AT&T M2X @@ -24910,11 +28869,11 @@ let } ) {}; - m2x = m2x_1_3_1; + m2x = m2x_2_0_0; m2x_erlang_1_3_1 = callPackage ( - { buildMix, fetchHex, jsx_2_8_0, hackney_1_4_8 }: + { buildMix, fetchHex, jsx_2_8_0, hackney_1_6_0 }: buildMix { name = "m2x_erlang"; version = "1.3.1"; @@ -24924,7 +28883,7 @@ let sha256 = "873db746f4428490670b54aabcc93fda8d94c3c4e25c94a9aef7275858a8b809"; }; - beamDeps = [ jsx_2_8_0 hackney_1_4_8 ]; + beamDeps = [ jsx_2_8_0 hackney_1_6_0 ]; meta = { longDescription = ''Erlang client library for the AT&T M2X @@ -24964,17 +28923,41 @@ let mad = mad_0_9_0; - mail_0_0_2 = callPackage + magic_number_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + magic_number = magic_number_0_0_1; + + mail_0_0_4 = callPackage ( { buildMix, fetchHex }: buildMix { name = "mail"; - version = "0.0.2"; + version = "0.0.4"; src = fetchHex { pkg = "mail"; - version = "0.0.2"; + version = "0.0.4"; sha256 = - "724cea5cac7b0ffdf2fa65a8d89d7c83de72da7eba6d6b31f8669854cb32baa3"; + "015bb93bc3233fbf0bb28daf71963ddc290d574d9b3d63e1b45641d1a2d4571e"; }; meta = { @@ -24985,7 +28968,7 @@ let } ) {}; - mail = mail_0_0_2; + mail = mail_0_0_4; mailchimp_0_0_5 = callPackage ( @@ -25012,19 +28995,19 @@ let mailchimp = mailchimp_0_0_5; - mailer_1_0_0 = callPackage + mailer_1_0_1 = callPackage ( - { buildMix, fetchHex, timex_1_0_1, gen_smtp_0_9_0 }: + { buildMix, fetchHex, timex_2_1_3, gen_smtp_0_9_0 }: buildMix { name = "mailer"; - version = "1.0.0"; + version = "1.0.1"; src = fetchHex { pkg = "mailer"; - version = "1.0.0"; + version = "1.0.1"; sha256 = - "cd54048c0cea44b9d96b82352d74fadf078e705b343c62a6e6e27f60de21099b"; + "08b834102ad6eb2f2a363b70939935d3d23d1e3a68d96a2a7f8730fb7834c63d"; }; - beamDeps = [ timex_1_0_1 gen_smtp_0_9_0 ]; + beamDeps = [ timex_2_1_3 gen_smtp_0_9_0 ]; meta = { description = ''Mailer - A simple email client''; @@ -25034,7 +29017,7 @@ let } ) {}; - mailer = mailer_1_0_0; + mailer = mailer_1_0_1; mailgun_0_0_2 = callPackage ( @@ -25083,7 +29066,7 @@ let mailgun_webhook_auth_1_0_0 = callPackage ( - { buildMix, fetchHex, plug_0_8_1, cowboy_1_0_4 }: + { buildMix, fetchHex, plug_0_5_2, cowboy_1_0_4 }: buildMix { name = "mailgun_webhook_auth"; version = "1.0.0"; @@ -25093,7 +29076,7 @@ let sha256 = "0e6c93d8fd37fc948db0f92ee545ecbed99787dc04ceb8981e588b06ad3108eb"; }; - beamDeps = [ plug_0_8_1 cowboy_1_0_4 ]; + beamDeps = [ plug_0_5_2 cowboy_1_0_4 ]; meta = { description = ''A Plug for validating Mailgun Webhook requests in @@ -25137,19 +29120,19 @@ let mailibex = mailibex_0_1_0; - mailman_0_2_1 = callPackage + mailman_0_2_2 = callPackage ( { buildMix, fetchHex, gen_smtp_0_9_0, ex_doc_0_11_4, earmark_0_2_1 }: buildMix { name = "mailman"; - version = "0.2.1"; + version = "0.2.2"; src = fetchHex { pkg = "mailman"; - version = "0.2.1"; + version = "0.2.2"; sha256 = - "b1594af744dc0e879ed8e42133c7d1d8136468218be2c6dfbf416dd3861b20c7"; + "3a7aaf863017c0b9d924e31ccb34649ba31bcbbd8eac4837bbe3a040c37f94ab"; }; beamDeps = [ gen_smtp_0_9_0 ex_doc_0_11_4 earmark_0_2_1 ]; @@ -25162,7 +29145,7 @@ let } ) {}; - mailman = mailman_0_2_1; + mailman = mailman_0_2_2; majremind_0_0_1 = callPackage ( @@ -25192,7 +29175,7 @@ let mandrag_0_1_1 = callPackage ( - { buildMix, fetchHex, exrm_0_15_1 }: + { buildMix, fetchHex, exrm_1_0_3 }: buildMix { name = "mandrag"; version = "0.1.1"; @@ -25202,7 +29185,7 @@ let sha256 = "e9e9fcbb844a2a86ecd95f5f8fa7db9f6ff88f3e2a6dca2bd996f4f71bbf125d"; }; - beamDeps = [ exrm_0_15_1 ]; + beamDeps = [ exrm_1_0_3 ]; meta = { description = ''A simple, extremely assumptive deploy script for @@ -25241,7 +29224,7 @@ let mandrill_0_4_1 = callPackage ( - { buildMix, fetchHex, httpoison_0_8_1, exjsx_3_1_0 }: + { buildMix, fetchHex, httpoison_0_8_2, exjsx_3_1_0 }: buildMix { name = "mandrill"; version = "0.4.1"; @@ -25251,7 +29234,7 @@ let sha256 = "2d554149c425c511a006d978427acc1d384c8f6d4f3699fdce04e42e24268400"; }; - beamDeps = [ httpoison_0_8_1 exjsx_3_1_0 ]; + beamDeps = [ httpoison_0_8_2 exjsx_3_1_0 ]; meta = { longDescription = ''A Mandrill wrapper for Elixir Requires an @@ -25268,7 +29251,7 @@ let mandrillex_0_2_0 = callPackage ( { - buildMix, fetchHex, jsex_2_0_0, httpoison_0_8_1, hackney_1_0_6 + buildMix, fetchHex, jsex_2_0_0, httpoison_0_8_2, hackney_1_4_8 }: buildMix { name = "mandrillex"; @@ -25279,7 +29262,7 @@ let sha256 = "840bf36e545cde376797603df4109aae49d2c17b2b06f84a058fff4448d362eb"; }; - beamDeps = [ jsex_2_0_0 httpoison_0_8_1 hackney_1_0_6 ]; + beamDeps = [ jsex_2_0_0 httpoison_0_8_2 hackney_1_4_8 ]; meta = { longDescription = ''A Mandrill wrapper for Elixir Requires an @@ -25293,6 +29276,30 @@ let mandrillex = mandrillex_0_2_0; + maptu_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + maptu = maptu_0_1_0; + marco_polo_0_2_1 = callPackage ( { buildMix, fetchHex, decimal_1_1_1, connection_1_0_0_rc_1 }: @@ -25317,6 +29324,29 @@ let marco_polo = marco_polo_0_2_1; + mariaex_0_1_7 = callPackage + ( + { buildMix, 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.''; + + homepage = "https://github.com/xerions/mariaex"; + }; + } + ) {}; + mariaex_0_4_3 = callPackage ( { buildMix, fetchHex, decimal_1_1_1 }: @@ -25340,19 +29370,19 @@ let } ) {}; - mariaex_0_5_0 = callPackage + mariaex_0_7_0 = callPackage ( - { buildMix, fetchHex, decimal_1_1_1 }: + { buildMix, fetchHex, decimal_1_1_1, db_connection_0_2_4 }: buildMix { name = "mariaex"; - version = "0.5.0"; + version = "0.7.0"; src = fetchHex { pkg = "mariaex"; - version = "0.5.0"; + version = "0.7.0"; sha256 = - "fe2a576c6b4e446c3744af7dda0a3ed6f179f80451a8e412be520b9005bb26c0"; + "758c1d8a75a9ce71f047e8d54b0fa1cde518252b25aecb9b8c42f918340bdfb6"; }; - beamDeps = [ decimal_1_1_1 ]; + beamDeps = [ decimal_1_1_1 db_connection_0_2_4 ]; meta = { description = ''Pure elixir database driver for MariaDB / @@ -25363,30 +29393,7 @@ let } ) {}; - mariaex_0_6_2 = callPackage - ( - { buildMix, fetchHex, decimal_1_1_1, connection_1_0_2 }: - buildMix { - name = "mariaex"; - version = "0.6.2"; - src = fetchHex { - pkg = "mariaex"; - version = "0.6.2"; - sha256 = - "195d9f46e09029872505402159ec713cdfa7b847622cc6b6db658c0d24f85ecd"; - }; - beamDeps = [ decimal_1_1_1 connection_1_0_2 ]; - - meta = { - description = ''Pure elixir database driver for MariaDB / - MySQL.''; - - homepage = "https://github.com/xerions/mariaex"; - }; - } - ) {}; - - mariaex = mariaex_0_6_2; + mariaex = mariaex_0_7_0; marked_0_0_1 = callPackage ( @@ -25410,19 +29417,70 @@ let marked = marked_0_0_1; - maru_0_9_3 = callPackage + markit_0_1_2 = callPackage ( - { buildMix, fetchHex, poison_1_0_3, plug_1_1_1, cowboy_1_0_4 }: + { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: + buildMix { + name = "markit"; + version = "0.1.2"; + src = fetchHex { + pkg = "markit"; + version = "0.1.2"; + sha256 = + "6304ceb1e7a5787555bc7d048bf3c9c0b432fe5378c6d630fb02d0bb871e57b5"; + }; + beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; + + meta = { + description = ''Access stock market data from markit.com''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/col/markit"; + }; + } + ) {}; + + markit = markit_0_1_2; + + markit_skill_0_0_2 = callPackage + ( + { + buildMix, fetchHex, markit_0_1_2, inflex_1_5_0, alexa_0_1_12 + }: + buildMix { + name = "markit_skill"; + version = "0.0.2"; + src = fetchHex { + pkg = "markit_skill"; + version = "0.0.2"; + sha256 = + "166d8ef88c08c21821dda379a053af761db4de5dff50226bfcb0e3a18fc855db"; + }; + beamDeps = [ markit_0_1_2 inflex_1_5_0 alexa_0_1_12 ]; + + meta = { + description = ''Amazon Alexa skill that uses data from + Markit.com''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/col/markit_skill"; + }; + } + ) {}; + + markit_skill = markit_skill_0_0_2; + + maru_0_9_5 = callPackage + ( + { buildMix, fetchHex, poison_1_0_3, plug_1_1_3, cowboy_1_0_4 }: buildMix { name = "maru"; - version = "0.9.3"; + version = "0.9.5"; src = fetchHex { pkg = "maru"; - version = "0.9.3"; + version = "0.9.5"; sha256 = - "6dd160dbc77b72a1954d53c5d584402006f0c28a278f3f28c5ec651246db480d"; + "36456f36fea5b2fc5cacd280535347f11d949799bfb8506e772e30b062056d3d"; }; - beamDeps = [ poison_1_0_3 plug_1_1_1 cowboy_1_0_4 ]; + beamDeps = [ poison_1_0_3 plug_1_1_3 cowboy_1_0_4 ]; meta = { description = ''REST-like API micro-framework for elixir inspired @@ -25433,7 +29491,7 @@ let } ) {}; - maru = maru_0_9_3; + maru = maru_0_9_5; maru_entity_0_1_2 = callPackage ( @@ -25457,19 +29515,19 @@ let maru_entity = maru_entity_0_1_2; - maru_swagger_0_7_1 = callPackage + maru_swagger_0_7_3 = callPackage ( - { buildMix, fetchHex, maru_0_9_3 }: + { buildMix, fetchHex, maru_0_9_5 }: buildMix { name = "maru_swagger"; - version = "0.7.1"; + version = "0.7.3"; src = fetchHex { pkg = "maru_swagger"; - version = "0.7.1"; + version = "0.7.3"; sha256 = - "035cfecc126ccdc830694c8c6f6c1d3376b6d037b31d30f31b53334305179940"; + "919148f80e76bd4dba89021cbffcf359cfe05028250d05a3eacf2bae5e24ec46"; }; - beamDeps = [ maru_0_9_3 ]; + beamDeps = [ maru_0_9_5 ]; meta = { description = ''Add swagger compliant documentation to your maru @@ -25480,7 +29538,7 @@ let } ) {}; - maru_swagger = maru_swagger_0_7_1; + maru_swagger = maru_swagger_0_7_3; marvel_1_0_0 = callPackage ( @@ -25489,7 +29547,7 @@ let fetchHex, timex_0_13_5, poison_1_5_2, - httpoison_0_8_1 + httpoison_0_8_2 }: buildRebar3 { name = "marvel"; @@ -25501,7 +29559,7 @@ let "7b5e99ccfa84954c2e46295aa72ab57b7511e1ec8e0bd13d1c5948efe1a0d23d"; }; - beamDeps = [ timex_0_13_5 poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ timex_0_13_5 poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''Marvel API and CLI Client ''; @@ -25521,7 +29579,7 @@ let slack_0_3_0, poison_2_1_0, ibrowse_4_2_2, - httpotion_2_2_0 + httpotion_2_2_2 }: buildMix { name = "marvin"; @@ -25533,7 +29591,7 @@ let "722a97aef1d0f7fb783948002897ea1ec67ac77cb471016386bf485bb8bd86c7"; }; beamDeps = [ - slack_0_3_0 poison_2_1_0 ibrowse_4_2_2 httpotion_2_2_0 + slack_0_3_0 poison_2_1_0 ibrowse_4_2_2 httpotion_2_2_2 ]; meta = { @@ -25618,36 +29676,36 @@ let maybe = maybe_0_0_1; - mazurka_0_3_32 = callPackage + mazurka_0_3_34 = callPackage ( { buildMix, fetchHex, xml_builder_0_0_8, poison_2_1_0, - plug_1_1_1, - mimetype_parser_0_1_1, + plug_1_1_3, + mimetype_parser_0_1_2, mazurka_dsl_0_1_1, - html_builder_0_1_0, + html_builder_0_1_1, etude_0_3_7, ecto_1_0_7 }: buildMix { name = "mazurka"; - version = "0.3.32"; + version = "0.3.34"; src = fetchHex { pkg = "mazurka"; - version = "0.3.32"; + version = "0.3.34"; sha256 = - "93a1a7fe508daae8df47a6bf8d3969d5cf93a206b65a5c350a0ea26005968f6a"; + "4efd11082e2c6af965bc2f5e282601858f5e8d78f9ace30ba7baa27b03333023"; }; beamDeps = [ xml_builder_0_0_8 poison_2_1_0 - plug_1_1_1 - mimetype_parser_0_1_1 + plug_1_1_3 + mimetype_parser_0_1_2 mazurka_dsl_0_1_1 - html_builder_0_1_0 + html_builder_0_1_1 etude_0_3_7 ecto_1_0_7 ]; @@ -25660,7 +29718,7 @@ let } ) {}; - mazurka = mazurka_0_3_32; + mazurka = mazurka_0_3_34; mazurka_dsl_0_1_1 = callPackage ( @@ -25687,7 +29745,7 @@ let mazurka_mediatype_0_2_0 = callPackage ( - { buildMix, fetchHex, etude_0_4_0 }: + { buildMix, fetchHex, etude_1_0_0_beta_0 }: buildMix { name = "mazurka_mediatype"; version = "0.2.0"; @@ -25697,7 +29755,7 @@ let sha256 = "4ccd8b27d6405e93cb34861f211d69b79ab46c2dbc5c7874d4ee3c580a5754bb"; }; - beamDeps = [ etude_0_4_0 ]; + beamDeps = [ etude_1_0_0_beta_0 ]; meta = { description = ''mazurka mediatype interface''; @@ -25716,7 +29774,7 @@ let fetchHex, poison_1_3_1, mazurka_mediatype_0_2_0, - etude_0_4_0 + etude_1_0_0_beta_0 }: buildMix { name = "mazurka_mediatype_hyperjson"; @@ -25727,7 +29785,11 @@ let sha256 = "f09489f242598ece8496f50c9dfc3d1a051b6115a654ebbb9ce5336e04b2cb8d"; }; - beamDeps = [ poison_1_3_1 mazurka_mediatype_0_2_0 etude_0_4_0 ]; + beamDeps = [ + poison_1_3_1 + mazurka_mediatype_0_2_0 + etude_1_0_0_beta_0 + ]; meta = { description = ''hyper+json mediatype compiler for mazurka''; @@ -25740,10 +29802,64 @@ let mazurka_mediatype_hyperjson = mazurka_mediatype_hyperjson_0_2_3; + mc_data_0_0_2 = callPackage + ( + { buildMix, 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/hansihe/elixir_mc_data"; + }; + } + ) {}; + + mc_data = mc_data_0_0_2; + + mc_protocol_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + mc_protocol = mc_protocol_0_0_1; + mcrypt_0_1_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "mcrypt"; version = "0.1.0"; src = fetchHex { @@ -25752,7 +29868,6 @@ let sha256 = "508a35ba255190f80309dcabf9c81c88b86b9ec13af180627ad51b8e5cf2a4cd"; }; - compilePorts = true; meta = { description = ''NIF wrapper around libmcrypt.''; @@ -25841,7 +29956,36 @@ let } ) {}; - mdns_client_lib = mdns_client_lib_0_1_33; + mdns_client_lib_0_1_38 = callPackage + ( + { + buildRebar3, + fetchHex, + pooler_1_5_0, + mdns_client_0_1_7, + lager_2_1_1 + }: + buildRebar3 { + name = "mdns_client_lib"; + version = "0.1.38"; + src = fetchHex { + pkg = "mdns_client_lib"; + version = "0.1.38"; + sha256 = + "46b990c883ca02c780a2295ffe75b51888c028ca42cd86b8ad517eca80cbd765"; + }; + + beamDeps = [ pooler_1_5_0 mdns_client_0_1_7 lager_2_1_1 ]; + + meta = { + description = ''client lib for mdns aware tcp servers''; + license = stdenv.lib.licenses.cddl; + homepage = "https://github.com/Licenser/mdns_client_lib"; + }; + } + ) {}; + + mdns_client_lib = mdns_client_lib_0_1_38; mdns_server_0_2_0 = callPackage ( @@ -25900,8 +30044,8 @@ let meck_0_8_4 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "meck"; version = "0.8.4"; src = fetchHex { @@ -25923,7 +30067,7 @@ let medex_0_1_2 = callPackage ( - { buildMix, fetchHex, plug_1_1_1, cowboy_1_0_4, consul_1_0_3 }: + { buildMix, fetchHex, plug_1_1_3, cowboy_1_0_4, consul_1_0_3 }: buildMix { name = "medex"; version = "0.1.2"; @@ -25933,7 +30077,7 @@ let sha256 = "dd8dd07892a4aedbe7680fa8637b1c17b7615b2aaea0b25b84acad4ed50700d2"; }; - beamDeps = [ plug_1_1_1 cowboy_1_0_4 consul_1_0_3 ]; + beamDeps = [ plug_1_1_3 cowboy_1_0_4 consul_1_0_3 ]; meta = { longDescription = ''Medical Examination - application for @@ -25970,19 +30114,19 @@ let meld = meld_0_1_2; - mellon_0_1_0 = callPackage + mellon_0_1_1 = callPackage ( - { buildMix, fetchHex, poison_2_1_0, plug_1_1_1 }: + { buildMix, fetchHex, poison_2_1_0, plug_1_1_3 }: buildMix { name = "mellon"; - version = "0.1.0"; + version = "0.1.1"; src = fetchHex { pkg = "mellon"; - version = "0.1.0"; + version = "0.1.1"; sha256 = - "e9252f1abdc4c38a4ad9cc3bd194630f7756ba22a25e6ebf8e937b1600cb9aae"; + "2b05fca901c0b9609cdd65cfb015a7646a9ec239cf1694ee8f1384a53a5ac0b4"; }; - beamDeps = [ poison_2_1_0 plug_1_1_1 ]; + beamDeps = [ poison_2_1_0 plug_1_1_3 ]; meta = { longDescription = ''Mellon is a Plug used in authentication of @@ -25994,21 +30138,46 @@ let } ) {}; - mellon = mellon_0_1_0; + mellon = mellon_0_1_1; - memcache_client_1_0_0 = callPackage + mem_0_1_2 = callPackage ( - { buildMix, fetchHex, poolboy_1_5_1, poison_1_5_2 }: + { buildMix, fetchHex }: + buildMix { + name = "mem"; + version = "0.1.2"; + src = fetchHex { + pkg = "mem"; + version = "0.1.2"; + sha256 = + "492f8bc52ca5d7ccdfdfac19d8a6f145eb9d268b712b02c207544022dfe2d42b"; + }; + + meta = { + description = ''ETS based KV cache with TTL and LRU support''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/falood/mem"; + }; + } + ) {}; + + mem = mem_0_1_2; + + memcache_client_1_1_0 = callPackage + ( + { + buildMix, fetchHex, poolboy_1_5_1, poison_2_1_0, connection_1_0_2 + }: buildMix { name = "memcache_client"; - version = "1.0.0"; + version = "1.1.0"; src = fetchHex { pkg = "memcache_client"; - version = "1.0.0"; + version = "1.1.0"; sha256 = - "ef5977dc10fd0d55606887168735ae4a0c481a1edbf2a28e042cab3f53e1f9c3"; + "e12d6add6d9ef817f7cf47d85c37c75c9ec81512a7ad88f23b50963048bce439"; }; - beamDeps = [ poolboy_1_5_1 poison_1_5_2 ]; + beamDeps = [ poolboy_1_5_1 poison_2_1_0 connection_1_0_2 ]; meta = { description = ''Memcache client library utilizing the memcache @@ -26019,7 +30188,7 @@ let } ) {}; - memcache_client = memcache_client_1_0_0; + memcache_client = memcache_client_1_1_0; message_pack_0_2_0 = callPackage ( @@ -26071,7 +30240,7 @@ let metainvestigator_0_0_3 = callPackage ( - { buildMix, fetchHex, floki_0_7_1 }: + { buildMix, fetchHex, floki_0_8_0 }: buildMix { name = "metainvestigator"; version = "0.0.3"; @@ -26081,7 +30250,7 @@ let sha256 = "774b3973090491a9a342a68c5cf099c98581ae0f1b1d313a08a7d2030d541781"; }; - beamDeps = [ floki_0_7_1 ]; + beamDeps = [ floki_0_8_0 ]; meta = { description = ''A library for web scraping, inspired by @@ -26094,17 +30263,17 @@ let metainvestigator = metainvestigator_0_0_3; - metrics_0_2_1 = callPackage + metrics_1_0_1 = callPackage ( { buildRebar3, fetchHex }: buildRebar3 { name = "metrics"; - version = "0.2.1"; + version = "1.0.1"; src = fetchHex { pkg = "metrics"; - version = "0.2.1"; + version = "1.0.1"; sha256 = - "1cccc3534fa5a7861a3dcc0414afba00a616937e82c95d6172a523a5d2e97c03"; + "69b09adddc4f74a40716ae54d140f93beb0fb8978d8636eaded0c31b6f099f16"; }; meta = { @@ -26116,7 +30285,29 @@ let } ) {}; - metrics = metrics_0_2_1; + metrics_1_1_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + metrics = metrics_1_1_0; metrix_0_2_0 = callPackage ( @@ -26169,19 +30360,19 @@ let mex = mex_0_0_5; - microformats2_0_0_1 = callPackage + microformats2_0_0_5 = callPackage ( - { buildMix, fetchHex, httpotion_2_2_0, floki_0_7_1 }: + { buildMix, fetchHex, httpotion_2_2_2, floki_0_7_2 }: buildMix { name = "microformats2"; - version = "0.0.1"; + version = "0.0.5"; src = fetchHex { pkg = "microformats2"; - version = "0.0.1"; + version = "0.0.5"; sha256 = - "9b14b1065763c422beb7fea518a1374bb17bcbe8f903381612e4deb3c9b8e385"; + "890ca1812738869aa65865339a730c5542949cac4b017b25fc276e81b37157b2"; }; - beamDeps = [ httpotion_2_2_0 floki_0_7_1 ]; + beamDeps = [ httpotion_2_2_2 floki_0_7_2 ]; meta = { description = ''A microformats2 parser @@ -26193,7 +30384,7 @@ let } ) {}; - microformats2 = microformats2_0_0_1; + microformats2 = microformats2_0_0_5; milliseconds_0_0_1 = callPackage ( @@ -26309,17 +30500,17 @@ let mimerl = mimerl_1_1_0; - mimetype_parser_0_1_1 = callPackage + mimetype_parser_0_1_2 = callPackage ( { buildMix, fetchHex }: buildMix { name = "mimetype_parser"; - version = "0.1.1"; + version = "0.1.2"; src = fetchHex { pkg = "mimetype_parser"; - version = "0.1.1"; + version = "0.1.2"; sha256 = - "ec26e5e2bb279babd5bd415d626d04040d9f719fc2b0066eb909777a93015fce"; + "c495521cad6cf49fb79098e68e921c58955312df46c9c5aa5abab44224c2647d"; }; meta = { @@ -26330,7 +30521,7 @@ let } ) {}; - mimetype_parser = mimetype_parser_0_1_1; + mimetype_parser = mimetype_parser_0_1_2; mimex_0_1_0 = callPackage ( @@ -26355,17 +30546,17 @@ let mimex = mimex_0_1_0; - minmaxlist_0_0_5 = callPackage + minmaxlist_0_0_6 = callPackage ( { buildMix, fetchHex }: buildMix { name = "minmaxlist"; - version = "0.0.5"; + version = "0.0.6"; src = fetchHex { pkg = "minmaxlist"; - version = "0.0.5"; + version = "0.0.6"; sha256 = - "6d14c8a55196e803cb6cdfded42f57d61b96e4bd3ce7c31f36e33a3257256d8e"; + "cc9bc50dc971c8c3743bcecdaca35330593d6466d911c656ba7d718836e68a57"; }; meta = { @@ -26378,7 +30569,7 @@ let } ) {}; - minmaxlist = minmaxlist_0_0_5; + minmaxlist = minmaxlist_0_0_6; misc_random_0_2_6 = callPackage ( @@ -26530,17 +30721,17 @@ let mix_info = mix_info_0_7_2; - mix_test_watch_0_2_5 = callPackage + mix_test_watch_0_2_6 = callPackage ( { buildMix, fetchHex, fs_0_9_2 }: buildMix { name = "mix_test_watch"; - version = "0.2.5"; + version = "0.2.6"; src = fetchHex { pkg = "mix_test_watch"; - version = "0.2.5"; + version = "0.2.6"; sha256 = - "68ddd24df6d6ca77f8a95d4bb0443998031984122aa574d79434fac25f10da7b"; + "b7019e9a0eba42bc98f15be9c1402f23c2b0dab7b67e71bba8bc5b337b0ab273"; }; beamDeps = [ fs_0_9_2 ]; @@ -26552,7 +30743,7 @@ let } ) {}; - mix_test_watch = mix_test_watch_0_2_5; + mix_test_watch = mix_test_watch_0_2_6; mixpanel_0_0_3 = callPackage ( @@ -26581,7 +30772,7 @@ let mixpanel_api_ex_0_8_3 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "mixpanel_api_ex"; version = "0.8.3"; @@ -26591,7 +30782,7 @@ let sha256 = "1ff5eb4aa333495a86868873deb8fcd04c5f2e6f2560d77ac6ccbe07e2e3d7b4"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''Elixir client for the Mixpanel API.''; @@ -26605,7 +30796,7 @@ let mixpanel_data_client_0_0_2 = callPackage ( - { buildMix, fetchHex, poison_1_3_1, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_3_1, httpoison_0_8_2 }: buildMix { name = "mixpanel_data_client"; version = "0.0.2"; @@ -26615,7 +30806,7 @@ let sha256 = "7f3bbd608ae18153655f27bd50ea01ad85630d6c1cc6ab9ed336e95419f06c86"; }; - beamDeps = [ poison_1_3_1 httpoison_0_8_1 ]; + beamDeps = [ poison_1_3_1 httpoison_0_8_2 ]; meta = { description = ''Client library for interacting with the Mixpanel @@ -26630,7 +30821,7 @@ let mixstar_0_0_1 = callPackage ( - { buildMix, fetchHex, netrc_0_0_2, httpoison_0_8_1 }: + { buildMix, fetchHex, netrc_0_0_2, httpoison_0_8_2 }: buildMix { name = "mixstar"; version = "0.0.1"; @@ -26640,7 +30831,7 @@ let sha256 = "d7f9014711d04049c90a8f835857d1bde04647b326d1ec949e2a90477f4d4a39"; }; - beamDeps = [ netrc_0_0_2 httpoison_0_8_1 ]; + beamDeps = [ netrc_0_0_2 httpoison_0_8_2 ]; meta = { description = ''MixStar starred GitHub repository that depends on @@ -26678,7 +30869,7 @@ let mmExchangeRate_0_0_1 = callPackage ( - { buildMix, fetchHex, jsx_2_8_0, httpotion_1_0_0 }: + { buildMix, fetchHex, jsx_2_8_0, httpotion_2_2_2 }: buildMix { name = "mmExchangeRate"; version = "0.0.1"; @@ -26688,7 +30879,7 @@ let sha256 = "6daf6e74bf3ce8f9d7cc19b18b023d700201a847dde94a0eef1f263ce65efbac"; }; - beamDeps = [ jsx_2_8_0 httpotion_1_0_0 ]; + beamDeps = [ jsx_2_8_0 httpotion_2_2_2 ]; meta = { longDescription = ''A simple exchange rate checker and calculator @@ -26749,6 +30940,30 @@ let mmath = mmath_0_1_16; + mnemonic_slugs_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + mnemonic_slugs = mnemonic_slugs_0_0_1; + mobiledoc_0_0_1 = callPackage ( { buildMix, fetchHex }: @@ -26776,8 +30991,8 @@ let mochiweb_2_12_2 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "mochiweb"; version = "2.12.2"; src = fetchHex { @@ -26798,19 +31013,41 @@ let mochiweb = mochiweb_2_12_2; - mock_0_1_1 = callPackage + mochiweb_html_2_13_0 = callPackage ( - { buildRebar3, fetchHex, meck_0_8_4 }: + { buildRebar3, fetchHex }: buildRebar3 { - name = "mock"; - version = "0.1.1"; + name = "mochiweb_html"; + version = "2.13.0"; src = fetchHex { - pkg = "mock"; - version = "0.1.1"; + pkg = "mochiweb_html"; + version = "2.13.0"; sha256 = - "d2d73a2f0621bbf23011fdc6a29eca114381e77098e19b71d0774278ca80bc01"; + "c05f969fd011b357ea2f577c2b996776241d179ba2eb1bcba274cc23fdcf5439"; }; + meta = { + description = ''Mochiweb HTML parser''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mochi/mochiweb"; + }; + } + ) {}; + + mochiweb_html = mochiweb_html_2_13_0; + + mock_0_1_3 = callPackage + ( + { buildMix, fetchHex, meck_0_8_4 }: + buildMix { + name = "mock"; + version = "0.1.3"; + src = fetchHex { + pkg = "mock"; + version = "0.1.3"; + sha256 = + "bf7cf50d528394d870cdecac4920ab719cec0af98eff95759b57cab0e5ee143e"; + }; beamDeps = [ meck_0_8_4 ]; meta = { @@ -26826,7 +31063,7 @@ let } ) {}; - mock = mock_0_1_1; + mock = mock_0_1_3; module_mocker_0_2_0 = callPackage ( @@ -26917,7 +31154,7 @@ let mojoauth_1_0_2 = callPackage ( - { buildMix, fetchHex, timex_1_0_1 }: + { buildMix, fetchHex, timex_1_0_2 }: buildMix { name = "mojoauth"; version = "1.0.2"; @@ -26927,7 +31164,7 @@ let sha256 = "72d8b3fdff6d6571d7dcc9ad46b249823c84e0321920a0e9d6f39ee5f9fc2f23"; }; - beamDeps = [ timex_1_0_1 ]; + beamDeps = [ timex_1_0_2 ]; meta = { longDescription = ''MojoAuth is a set of standard approaches to @@ -26966,7 +31203,7 @@ let mon_handler_1_0_2 = callPackage ( - { buildMix, fetchHex, dialyze_0_2_0 }: + { buildMix, fetchHex, dialyze_0_2_1 }: buildMix { name = "mon_handler"; version = "1.0.2"; @@ -26976,7 +31213,7 @@ let sha256 = "d18942f95750b94e3da1d9fca7a2ea4b1b1d27c017feff76cb109b29bb308f58"; }; - beamDeps = [ dialyze_0_2_0 ]; + beamDeps = [ dialyze_0_2_1 ]; meta = { longDescription = ''A minimal GenServer that monitors a given @@ -27042,7 +31279,7 @@ let mondo_0_1_0 = callPackage ( { - buildMix, fetchHex, poison_2_1_0, plug_1_1_1, httpoison_0_8_1 + buildMix, fetchHex, poison_2_1_0, plug_1_1_3, httpoison_0_8_2 }: buildMix { name = "mondo"; @@ -27053,7 +31290,7 @@ let sha256 = "f557216314e098137f5140f1194e2eba7a2a030d78affc23ea5943f586ab1095"; }; - beamDeps = [ poison_2_1_0 plug_1_1_1 httpoison_0_8_1 ]; + beamDeps = [ poison_2_1_0 plug_1_1_3 httpoison_0_8_2 ]; meta = { description = ''An Elixir client for the Mondo API.''; @@ -27067,7 +31304,7 @@ let monetized_0_3_2 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, ecto_1_1_3, decimal_1_1_1 }: + { buildMix, fetchHex, poison_1_5_2, ecto_1_1_5, decimal_1_1_1 }: buildMix { name = "monetized"; version = "0.3.2"; @@ -27077,7 +31314,7 @@ let sha256 = "1978e46c6dd352fea0e9ce208835886ea4fd07dfc1555ee2f9adce98a9e82ce6"; }; - beamDeps = [ poison_1_5_2 ecto_1_1_3 decimal_1_1_1 ]; + beamDeps = [ poison_1_5_2 ecto_1_1_5 decimal_1_1_1 ]; meta = { description = ''A lightweight solution for handling and storing @@ -27163,17 +31400,17 @@ let mongodb = mongodb_0_1_1; - mongodb_ecto_0_1_3 = callPackage + mongodb_ecto_0_1_4 = callPackage ( { buildMix, fetchHex, mongodb_0_1_1, ecto_1_0_7 }: buildMix { name = "mongodb_ecto"; - version = "0.1.3"; + version = "0.1.4"; src = fetchHex { pkg = "mongodb_ecto"; - version = "0.1.3"; + version = "0.1.4"; sha256 = - "8befad3e958f3924cb780dbf958d63539d48e23ca680e4e9dc1cf63b6827ce8a"; + "2f9cc8c8cd316e187f4b8b94d0a88618ce4a6cb1b6cfa7856573f3376fb443bf"; }; beamDeps = [ mongodb_0_1_1 ecto_1_0_7 ]; @@ -27185,7 +31422,7 @@ let } ) {}; - mongodb_ecto = mongodb_ecto_0_1_3; + mongodb_ecto = mongodb_ecto_0_1_4; monk_0_1_3 = callPackage ( @@ -27307,17 +31544,17 @@ let mpinyin = mpinyin_0_0_2; - msgpack_0_4_0 = callPackage + msgpack_0_5_0 = callPackage ( { buildRebar3, fetchHex }: buildRebar3 { name = "msgpack"; - version = "0.4.0"; + version = "0.5.0"; src = fetchHex { pkg = "msgpack"; - version = "0.4.0"; + version = "0.5.0"; sha256 = - "cb69184b254bcddfd0b3b813fa9ffc87dd4642ad026bb8117e2384b55239eae4"; + "520ae767b3c3c0796d2913c92f463bc8b4dee091880734f5b99a90921e18b704"; }; meta = { @@ -27328,19 +31565,19 @@ let } ) {}; - msgpack = msgpack_0_4_0; + msgpack = msgpack_0_5_0; - msgpax_0_7_0 = callPackage + msgpax_0_7_1 = callPackage ( { buildMix, fetchHex }: buildMix { name = "msgpax"; - version = "0.7.0"; + version = "0.7.1"; src = fetchHex { pkg = "msgpax"; - version = "0.7.0"; + version = "0.7.1"; sha256 = - "c51838cc08674eada16ff7ff516b1c4028fecba602bdc04747f85a94dca25202"; + "3d2bb32de9552482f35b86cbdc547ee94b67615bfcc831222cde869afa202f2c"; }; meta = { @@ -27504,7 +31741,7 @@ let murdoch_0_0_1 = callPackage ( { - buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1, goth_0_0_3 + buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2, goth_0_0_3 }: buildMix { name = "murdoch"; @@ -27515,7 +31752,7 @@ let sha256 = "77ec44ca76d6b4a14df7222104a36cb29ed25f7d52fb3ffe30807ddc82a2d9ad"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 goth_0_0_3 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 goth_0_0_3 ]; meta = { longDescription = ''A library for interacting with Google Cloud @@ -27529,6 +31766,30 @@ let murdoch = murdoch_0_0_1; + murmur_0_2_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + murmur_1_0_0 = callPackage ( { buildMix, fetchHex }: @@ -27601,6 +31862,30 @@ let mustachex = mustachex_0_0_1; + mutant_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + mutant = mutant_0_0_2; + mynumber_1_0_0 = callPackage ( { buildMix, fetchHex }: @@ -27675,8 +31960,8 @@ let n2o_2_3_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildMix, fetchHex }: + buildMix { name = "n2o"; version = "2.3.0"; src = fetchHex { @@ -27720,19 +32005,19 @@ let nacl = nacl_0_3_0; - nadia_0_3_3 = callPackage + nadia_0_4_0 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "nadia"; - version = "0.3.3"; + version = "0.4.0"; src = fetchHex { pkg = "nadia"; - version = "0.3.3"; + version = "0.4.0"; sha256 = - "8ea94a9a92aac18b98736148892c6ec672fa599cb5aa222757393c1551228b4e"; + "e76217333ad6d02ec971bfa781e70268285fc417aebb486318e0584affccb08d"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''Telegram Bot API Wrapper written in Elixir''; @@ -27742,7 +32027,7 @@ let } ) {}; - nadia = nadia_0_3_3; + nadia = nadia_0_4_0; nat_set_0_0_1 = callPackage ( @@ -27817,17 +32102,17 @@ let nats = nats_0_0_1; - nats_msg_0_3_3 = callPackage + nats_msg_0_4_1 = callPackage ( { buildRebar3, fetchHex }: buildRebar3 { name = "nats_msg"; - version = "0.3.3"; + version = "0.4.1"; src = fetchHex { pkg = "nats_msg"; - version = "0.3.3"; + version = "0.4.1"; sha256 = - "80b2669f8c53395c156d3a121befe71a5131d7a42f14a38fbd7778a179b498ac"; + "8e21a78bf2ae76d7702bcc03eb87bdddac1b99edebfc99db98e8e94a7a5361c4"; }; meta = { @@ -27839,7 +32124,7 @@ let } ) {}; - nats_msg = nats_msg_0_3_3; + nats_msg = nats_msg_0_4_1; natsio_0_1_4 = callPackage ( @@ -27895,7 +32180,7 @@ let fetchHex, poison_1_5_2, httpoison_0_7_5, - floki_0_7_1, + floki_0_8_0, exprintf_0_1_6 }: buildMix { @@ -27910,7 +32195,7 @@ let beamDeps = [ poison_1_5_2 httpoison_0_7_5 - floki_0_7_1 + floki_0_8_0 exprintf_0_1_6 ]; @@ -27927,7 +32212,7 @@ let navigation_history_0_2_0 = callPackage ( - { buildMix, fetchHex, plug_1_1_1 }: + { buildMix, fetchHex, plug_1_1_3 }: buildMix { name = "navigation_history"; version = "0.2.0"; @@ -27937,7 +32222,7 @@ let sha256 = "9fbddedd831930c3f2e784c53442558d90d68040f9921dfa9441da63d6b8dacc"; }; - beamDeps = [ plug_1_1_1 ]; + beamDeps = [ plug_1_1_3 ]; meta = { description = ''Navigation history tracking plug''; @@ -27978,6 +32263,45 @@ let navigation_tree = navigation_tree_0_4_4; + ndc_ex_sdk_0_0_7 = callPackage + ( + { + buildMix, + 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"; + }; + } + ) {}; + + ndc_ex_sdk = ndc_ex_sdk_0_0_7; + neat_ex_1_1_0 = callPackage ( { buildMix, fetchHex, json_0_3_3 }: @@ -28013,30 +32337,80 @@ let neat_ex = neat_ex_1_1_0; - neo4j_sips_0_1_12 = callPackage + nectar_0_0_1 = callPackage + ( + { buildMix, 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; + }; + } + ) {}; + + nectar = nectar_0_0_1; + + neo4j_0_3_0 = callPackage + ( + { buildErlangMk, fetchHex, jiffy_0_14_7, hackney_1_4_10 }: + buildErlangMk { + name = "neo4j"; + version = "0.3.0"; + src = fetchHex { + pkg = "neo4j"; + version = "0.3.0"; + sha256 = + "93b07252e5216dbccedda19a28873ab5352f59a3c0f257b85a14d3b4e47d3cf7"; + }; + beamDeps = [ jiffy_0_14_7 hackney_1_4_10 ]; + + meta = { + longDescription = ''Erlang client library for Neo4J This is a + lightweight wrapper for Neo4j REST API. Exposes + all of the functionality exposed by Neo4J REST + API. Please refer to README to see if you need + version 0.2.1 or 0.3''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/dmitriid/neo4j-erlang"; + }; + } + ) {}; + + neo4j = neo4j_0_3_0; + + neo4j_sips_0_1_25 = callPackage ( { buildMix, fetchHex, poolboy_1_5_1, - poison_1_5_2, - httpoison_0_7_5, - con_cache_0_9_0 + poison_2_1_0, + httpoison_0_8_2, + con_cache_0_11_0 }: buildMix { name = "neo4j_sips"; - version = "0.1.12"; + version = "0.1.25"; src = fetchHex { pkg = "neo4j_sips"; - version = "0.1.12"; + version = "0.1.25"; sha256 = - "7a4547b36abd57856f04c8d0b7f2a39eb9fdf7a8c088fdf5836853559ad7aee2"; + "b81aa758aa45ec67c40d8876e5bf6a69e290e0c8d529e078546e930dbc3dcd8e"; }; beamDeps = [ poolboy_1_5_1 - poison_1_5_2 - httpoison_0_7_5 - con_cache_0_9_0 + poison_2_1_0 + httpoison_0_8_2 + con_cache_0_11_0 ]; meta = { @@ -28048,7 +32422,43 @@ let } ) {}; - neo4j_sips = neo4j_sips_0_1_12; + neo4j_sips = neo4j_sips_0_1_25; + + neo4j_sips_models_0_1_1 = callPackage + ( + { + buildMix, + fetchHex, + timex_1_0_2, + neo4j_sips_0_1_25, + inflex_1_5_0, + chronos_1_5_1 + }: + buildMix { + name = "neo4j_sips_models"; + version = "0.1.1"; + src = fetchHex { + pkg = "neo4j_sips_models"; + version = "0.1.1"; + sha256 = + "6572993cd5acdcdf77490d608236c869ce0cda2931beda2a272f85f2f1831759"; + }; + beamDeps = [ + timex_1_0_2 + neo4j_sips_0_1_25 + inflex_1_5_0 + chronos_1_5_1 + ]; + + meta = { + description = ''Add Models support to the Neo4J Elixir driver''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/florinpatrascu/neo4j_sips_models"; + }; + } + ) {}; + + neo4j_sips_models = neo4j_sips_models_0_1_1; neotoma_1_7_3 = callPackage ( @@ -28097,10 +32507,35 @@ let neotomex = neotomex_0_1_4; + nerves_0_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + nerves = nerves_0_2_0; + nerves_io_neopixel_0_2_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "nerves_io_neopixel"; version = "0.2.0"; src = fetchHex { @@ -28146,19 +32581,19 @@ let nest = nest_0_0_1; - nested_set_0_0_1 = callPackage + nested_set_0_0_2 = callPackage ( - { buildMix, fetchHex, ecto_1_1_3 }: + { buildMix, fetchHex, ecto_1_1_5 }: buildMix { name = "nested_set"; - version = "0.0.1"; + version = "0.0.2"; src = fetchHex { pkg = "nested_set"; - version = "0.0.1"; + version = "0.0.2"; sha256 = - "cd38faeaef21ad1675d4a4467cff6b439b90ca1c07fac72857ab63804967a00d"; + "283fac1cbaf129d29a7ea6b6c050248bdc63631421d395f0b909510c3f7d2e83"; }; - beamDeps = [ ecto_1_1_3 ]; + beamDeps = [ ecto_1_1_5 ]; meta = { longDescription = ''Nested Set implementation for Ecto/Phoenix. @@ -28171,7 +32606,7 @@ let } ) {}; - nested_set = nested_set_0_0_1; + nested_set = nested_set_0_0_2; netrc_0_0_2 = callPackage ( @@ -28196,17 +32631,17 @@ let netrc = netrc_0_0_2; - netstrings_2_0_0 = callPackage + netstrings_2_0_1 = callPackage ( { buildMix, fetchHex }: buildMix { name = "netstrings"; - version = "2.0.0"; + version = "2.0.1"; src = fetchHex { pkg = "netstrings"; - version = "2.0.0"; + version = "2.0.1"; sha256 = - "f510110b2a821363409fd77942f61309b6c0000a8cdda91a6f653e95f3c36c23"; + "f6a3727dba6ae5aa3371ffddf7adf6aaf46bf387e84873f65152083ecf821845"; }; meta = { @@ -28217,7 +32652,32 @@ let } ) {}; - netstrings = netstrings_2_0_0; + netstrings = netstrings_2_0_1; + + neural_network_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + neural_network = neural_network_0_1_0; news_0_3_0 = callPackage ( @@ -28317,17 +32777,17 @@ let nifty = nifty_0_0_3; - nile_0_1_2 = callPackage + nile_0_1_3 = callPackage ( { buildMix, fetchHex }: buildMix { name = "nile"; - version = "0.1.2"; + version = "0.1.3"; src = fetchHex { pkg = "nile"; - version = "0.1.2"; + version = "0.1.3"; sha256 = - "3b7c463f7e0d12a38757b893d41d08772d6f06e5e4a15812409b655acb4b6dfc"; + "73a2c8be8507bb39de74eb3fa5ae40e3c40cabef30cd884f67ab6d3400a7bea4"; }; meta = { @@ -28338,11 +32798,11 @@ let } ) {}; - nile = nile_0_1_2; + nile = nile_0_1_3; ninjaproxies_0_2_0 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "ninjaproxies"; version = "0.2.0"; @@ -28352,7 +32812,7 @@ let sha256 = "5524329d00944690b362d30fef9c4032c03c401cc44d0ad9e98e147f5792fade"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''Ninjaproxies client library for Elixir.''; @@ -28366,7 +32826,7 @@ let nio_google_authenticator_1_0_1 = callPackage ( - { buildMix, fetchHex, pot_0_9_4, ecto_2_0_0_beta_0 }: + { buildMix, fetchHex, pot_0_9_4, ecto_2_0_0_beta_2 }: buildMix { name = "nio_google_authenticator"; version = "1.0.1"; @@ -28376,7 +32836,7 @@ let sha256 = "a8a82c6c40e9575e8bea2fc7302af05bcd478b3a6a0e9df212617f807fe23758"; }; - beamDeps = [ pot_0_9_4 ecto_2_0_0_beta_0 ]; + beamDeps = [ pot_0_9_4 ecto_2_0_0_beta_2 ]; meta = { longDescription = ''NioGoogleAuthenticator is a collection of @@ -28400,8 +32860,8 @@ let buildMix, fetchHex, poison_1_5_2, - httpoison_0_8_1, - ecto_2_0_0_beta_0 + httpoison_0_8_2, + ecto_2_0_0_beta_2 }: buildMix { name = "nio_google_geocoder"; @@ -28412,7 +32872,7 @@ let sha256 = "ba551ad6138b133d6b90ac96c0443aa31724084049059bf15710dac4c1f3e701"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ecto_2_0_0_beta_0 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ecto_2_0_0_beta_2 ]; meta = { longDescription = ''NioGoogleGeocoder is a collection of Elixir @@ -28428,6 +32888,30 @@ let nio_google_geocoder = nio_google_geocoder_0_7_0; + njord_0_1_1 = callPackage + ( + { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: + buildMix { + name = "njord"; + version = "0.1.1"; + src = fetchHex { + pkg = "njord"; + version = "0.1.1"; + sha256 = + "b438430dbf6ceaf2bede01a285c5032be3041cbedd7c1552653d75179fab4dfb"; + }; + beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; + + meta = { + description = ''A wrapper over HTTPoison to build client APIs.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/gmtprime/njord"; + }; + } + ) {}; + + njord = njord_0_1_1; + nodefinder_1_5_1 = callPackage ( { buildRebar3, fetchHex, erlcloud_0_9_2 }: @@ -28453,6 +32937,30 @@ let nodefinder = nodefinder_1_5_1; + normalixr_0_3_0 = callPackage + ( + { buildMix, fetchHex, ecto_0_2_7 }: + buildMix { + name = "normalixr"; + version = "0.3.0"; + src = fetchHex { + pkg = "normalixr"; + version = "0.3.0"; + sha256 = + "22a9c5137c23b1485a6b13027cb2979ce04d5b119b257e863975a7fb336c1e46"; + }; + beamDeps = [ ecto_0_2_7 ]; + + meta = { + description = ''Normalization and backfilling Ecto Schemas''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/theemuts/normalixr"; + }; + } + ) {}; + + normalixr = normalixr_0_3_0; + normalize_email_0_0_1 = callPackage ( { buildMix, fetchHex, is_email_0_0_2 }: @@ -28500,17 +33008,17 @@ let normalize_url = normalize_url_0_0_2; - not_qwerty123_1_0_0 = callPackage + not_qwerty123_1_1_0 = callPackage ( { buildMix, fetchHex, gettext_0_10_0 }: buildMix { name = "not_qwerty123"; - version = "1.0.0"; + version = "1.1.0"; src = fetchHex { pkg = "not_qwerty123"; - version = "1.0.0"; + version = "1.1.0"; sha256 = - "f1ec4634e5608ffae5c1d546696e77abfce8ee1fa415de93e43a2161d70d59d4"; + "4997296d742f72fe95f8933cba92ab6cee3147888dc9bbd7b703c7f970e8ab58"; }; beamDeps = [ gettext_0_10_0 ]; @@ -28523,7 +33031,7 @@ let } ) {}; - not_qwerty123 = not_qwerty123_1_0_0; + not_qwerty123 = not_qwerty123_1_1_0; number_0_4_1 = callPackage ( @@ -28555,9 +33063,9 @@ let buildMix, fetchHex, poison_1_5_2, - plug_1_1_1, - httpoison_0_8_1, - hackney_1_4_8 + plug_1_1_3, + httpoison_0_8_2, + hackney_1_6_0 }: buildMix { name = "oauth2"; @@ -28569,7 +33077,7 @@ let "ee23e6fb6ac84abce23713ba93f1df2fd368c9ad7b9288f0ef6fcec0e0249043"; }; beamDeps = [ - poison_1_5_2 plug_1_1_1 httpoison_0_8_1 hackney_1_4_8 + poison_1_5_2 plug_1_1_3 httpoison_0_8_2 hackney_1_6_0 ]; meta = { @@ -28580,25 +33088,25 @@ let } ) {}; - oauth2_0_5_0 = callPackage + oauth2_0_6_0 = callPackage ( { buildMix, fetchHex, - poison_1_5_2, - mimetype_parser_0_1_1, - httpoison_0_8_1 + poison_1_0_3, + mimetype_parser_0_1_2, + httpoison_0_8_2 }: buildMix { name = "oauth2"; - version = "0.5.0"; + version = "0.6.0"; src = fetchHex { pkg = "oauth2"; - version = "0.5.0"; + version = "0.6.0"; sha256 = - "1bc7d89a27a85fcdd9ebad7a0f4b80c4ae4ae98ed4cf87545667892f92e6a4dd"; + "1fcc76a12fcaa57392c0288be90df0eabd898c0982944c67d0e84e980c423e10"; }; - beamDeps = [ poison_1_5_2 mimetype_parser_0_1_1 httpoison_0_8_1 + beamDeps = [ poison_1_0_3 mimetype_parser_0_1_2 httpoison_0_8_2 ]; meta = { @@ -28609,7 +33117,7 @@ let } ) {}; - oauth2 = oauth2_0_5_0; + oauth2 = oauth2_0_6_0; oauth2_erlang_0_6_1 = callPackage ( @@ -28642,7 +33150,7 @@ let poison_1_5_2, plug_0_9_0, httpoison_0_7_5, - hackney_1_4_8, + hackney_1_6_0, cowboy_1_0_4 }: buildMix { @@ -28658,7 +33166,7 @@ let poison_1_5_2 plug_0_9_0 httpoison_0_7_5 - hackney_1_4_8 + hackney_1_6_0 cowboy_1_0_4 ]; @@ -28672,30 +33180,30 @@ let oauth2cli = oauth2cli_0_0_4; - oauth2ex_0_0_8 = callPackage + oauth2ex_0_0_9 = callPackage ( { buildMix, fetchHex, timex_1_0_0_rc4, - plug_1_1_1, - httpoison_0_8_1, + plug_1_1_3, + httpoison_0_8_2, exjsx_3_2_0, cowboy_1_0_4 }: buildMix { name = "oauth2ex"; - version = "0.0.8"; + version = "0.0.9"; src = fetchHex { pkg = "oauth2ex"; - version = "0.0.8"; + version = "0.0.9"; sha256 = - "0420cc1ee402922a77cdd9a090cb886083fdc42658df9d8401e72d7a1daab4c0"; + "46f5f13c0474da8727f45c6d7c455d86d94a1b20176230a2b21be0494066a564"; }; beamDeps = [ timex_1_0_0_rc4 - plug_1_1_1 - httpoison_0_8_1 + plug_1_1_3 + httpoison_0_8_2 exjsx_3_2_0 cowboy_1_0_4 ]; @@ -28708,7 +33216,7 @@ let } ) {}; - oauth2ex = oauth2ex_0_0_8; + oauth2ex = oauth2ex_0_0_9; oauther_1_0_2 = callPackage ( @@ -28741,10 +33249,10 @@ let fetchHex, rss_0_2_1, plug_0_11_3, - mock_0_1_1, + mock_0_1_3, earmark_0_1_19, cowboy_1_0_4, - chronos_1_0_0, + chronos_0_3_9, calliope_0_3_0, anubis_0_1_0 }: @@ -28760,10 +33268,10 @@ let beamDeps = [ rss_0_2_1 plug_0_11_3 - mock_0_1_1 + mock_0_1_3 earmark_0_1_19 cowboy_1_0_4 - chronos_1_0_0 + chronos_0_3_9 calliope_0_3_0 anubis_0_1_0 ]; @@ -28805,21 +33313,44 @@ let observer_cli = observer_cli_1_0_3; - octokit_0_0_3 = callPackage + octet_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + octet = octet_0_0_2; + + octokit_0_1_0 = callPackage ( { - buildMix, fetchHex, timex_1_0_1, poison_2_1_0, httpoison_0_8_1 + buildMix, fetchHex, timex_1_0_2, poison_2_1_0, httpoison_0_8_2 }: buildMix { name = "octokit"; - version = "0.0.3"; + version = "0.1.0"; src = fetchHex { pkg = "octokit"; - version = "0.0.3"; + version = "0.1.0"; sha256 = - "5cc713c2052c3a46e24ac04781bee4199926e2a175597b9f1c4c7d9ddb2b4241"; + "1c761130e94dbbe16a7751ee1289e1334c9208222da03a8ae9fd77c50f5e969b"; }; - beamDeps = [ timex_1_0_1 poison_2_1_0 httpoison_0_8_1 ]; + beamDeps = [ timex_1_0_2 poison_2_1_0 httpoison_0_8_2 ]; meta = { description = ''An Elixir library for accessing the GitHub @@ -28830,19 +33361,67 @@ let } ) {}; - octokit = octokit_0_0_3; + octokit = octokit_0_1_0; - og_0_0_5 = callPackage + odgn_json_pointer_1_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + odgn_json_pointer = odgn_json_pointer_1_1_0; + + odt_potion_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + odt_potion = odt_potion_0_0_1; + + og_0_0_6 = callPackage ( { buildMix, fetchHex }: buildMix { name = "og"; - version = "0.0.5"; + version = "0.0.6"; src = fetchHex { pkg = "og"; - version = "0.0.5"; + version = "0.0.6"; sha256 = - "6260a10988cee65dfc6245e60a719c15a8239167946a7f8f847fb3b9fa624022"; + "8934f5e495dc8fcc8ed56f37f0067e0a360c9588c04c6b800d91eb593b9067d3"; }; meta = { @@ -28854,7 +33433,7 @@ let } ) {}; - og = og_0_0_5; + og = og_0_0_6; ok_0_1_3 = callPackage ( @@ -28928,7 +33507,7 @@ let omise_0_1_4 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "omise"; version = "0.1.4"; @@ -28938,7 +33517,7 @@ let sha256 = "35e7fe1776da9cf5ddeb0138391868d6dbbe976e5a932183c4f445371b1b0c4d"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''Omise client library for Elixir.''; @@ -28952,7 +33531,7 @@ let one_signal_0_0_6 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "one_signal"; version = "0.0.6"; @@ -28962,7 +33541,7 @@ let sha256 = "d90ec5f9e43d164e2942422d3c1e9a6b26a956ea135eb1a316380e12ef6b27d1"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''Elixir wrapper of OneSignal''; @@ -28976,7 +33555,7 @@ let onetime_1_0_0 = callPackage ( - { buildMix, fetchHex, timex_1_0_1 }: + { buildMix, fetchHex, timex_1_0_2 }: buildMix { name = "onetime"; version = "1.0.0"; @@ -28986,7 +33565,7 @@ let sha256 = "28481e7e239caa0002a42178af46cb80c3501faca7c1b953558e9d8dbba76c4c"; }; - beamDeps = [ timex_1_0_1 ]; + beamDeps = [ timex_1_0_2 ]; meta = { description = ''An onetime key-value store''; @@ -29023,7 +33602,7 @@ let opbeat_0_3_0 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "opbeat"; version = "0.3.0"; @@ -29033,7 +33612,7 @@ let sha256 = "20977e8ae08a1789326a3e5c0c8fa3265dd0e6ddc1fb6abe25c3a33d3fc9e692"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''Elixir client for opbeat''; @@ -29045,34 +33624,60 @@ let opbeat = opbeat_0_3_0; - openmaize_0_15_1 = callPackage + open_graphx_0_0_2 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_2, floki_0_8_0 }: + buildMix { + name = "open_graphx"; + version = "0.0.2"; + src = fetchHex { + pkg = "open_graphx"; + version = "0.0.2"; + sha256 = + "2eef951c4fbb8a01f11ed3ab6ca62dc695a84baf9ae0fbe7698058eac8020b70"; + }; + beamDeps = [ httpoison_0_8_2 floki_0_8_0 ]; + + meta = { + description = ''Load Open Graph Protocol''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/yoavlt/open_graphx"; + }; + } + ) {}; + + open_graphx = open_graphx_0_0_2; + + openmaize_0_17_2 = callPackage ( { buildMix, fetchHex, postgrex_0_11_1, - poison_1_5_2, - plug_1_1_1, - ecto_2_0_0_beta_0, + poison_2_1_0, + plug_1_1_3, + not_qwerty123_1_1_0, + ecto_2_0_0_beta_2, cowboy_1_0_4, - comeonin_2_1_1 + comeonin_2_3_0 }: buildMix { name = "openmaize"; - version = "0.15.1"; + version = "0.17.2"; src = fetchHex { pkg = "openmaize"; - version = "0.15.1"; + version = "0.17.2"; sha256 = - "2ef5890c2fa041cd7d11d2b16b76dd7d8b6ac6e5044093732b1441fdaa10fd56"; + "d3199c1513d4033ccec4fcc52a0d0dd6afb09b5c58c848a33d43dd4da08eda91"; }; beamDeps = [ postgrex_0_11_1 - poison_1_5_2 - plug_1_1_1 - ecto_2_0_0_beta_0 + poison_2_1_0 + plug_1_1_3 + not_qwerty123_1_1_0 + ecto_2_0_0_beta_2 cowboy_1_0_4 - comeonin_2_1_1 + comeonin_2_3_0 ]; meta = { @@ -29083,7 +33688,7 @@ let } ) {}; - openmaize = openmaize_0_15_1; + openmaize = openmaize_0_17_2; openstack_0_0_4 = callPackage ( @@ -29093,7 +33698,7 @@ let table_0_0_4, poison_1_5_2, maybe_0_0_1, - httpoison_0_8_1 + httpoison_0_8_2 }: buildMix { name = "openstack"; @@ -29105,7 +33710,7 @@ let "ddc471e2d95edb26b3f826986f730fbb1fb70de62edaa00a0c1cd7fd6de7fde1"; }; beamDeps = [ - table_0_0_4 poison_1_5_2 maybe_0_0_1 httpoison_0_8_1 + table_0_0_4 poison_1_5_2 maybe_0_0_1 httpoison_0_8_2 ]; meta = { @@ -29213,6 +33818,31 @@ let overpass = overpass_0_1_1; + oxr_0_3_1 = callPackage + ( + { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: + buildMix { + name = "oxr"; + version = "0.3.1"; + src = fetchHex { + pkg = "oxr"; + version = "0.3.1"; + sha256 = + "85b9525da74c1c36c3e8121d4db79775fc62ba27bb34be1f7f4b5615c70dc57c"; + }; + beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; + + meta = { + description = ''A thin API wrapper for Open Exchange Rates + (https://openexchangerates.org)''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/marksilvis/oxr-elixir"; + }; + } + ) {}; + + oxr = oxr_0_3_1; + p1_mysql_1_0_1 = callPackage ( { buildRebar3, fetchHex }: @@ -29259,17 +33889,17 @@ let p1_oauth2 = p1_oauth2_0_6_1; - p1_pgsql_1_0_1 = callPackage + p1_pgsql_1_1_0 = callPackage ( { buildRebar3, fetchHex }: buildRebar3 { name = "p1_pgsql"; - version = "1.0.1"; + version = "1.1.0"; src = fetchHex { pkg = "p1_pgsql"; - version = "1.0.1"; + version = "1.1.0"; sha256 = - "7436d18f320b200e4cab6a0c16d6416aa32115b9dcfabfb05af6e9cbd62d1c0c"; + "d6616a30e8d6964b488cebd6b9ca754783640ca85c4792bf7b1260a15303bf1c"; }; meta = { @@ -29280,7 +33910,7 @@ let } ) {}; - p1_pgsql = p1_pgsql_1_0_1; + p1_pgsql = p1_pgsql_1_1_0; p1_stringprep_1_0_1 = callPackage ( @@ -29426,7 +34056,7 @@ let pagexduty_0_1_0 = callPackage ( - { buildMix, fetchHex, httpoison_0_8_1, exjsx_3_1_0 }: + { buildMix, fetchHex, httpoison_0_8_2, exjsx_3_1_0 }: buildMix { name = "pagexduty"; version = "0.1.0"; @@ -29436,7 +34066,7 @@ let sha256 = "7292a63eeb27637ff19f91f50910d2bbbc860e1eb0413aa5a5035ef32b41b232"; }; - beamDeps = [ httpoison_0_8_1 exjsx_3_1_0 ]; + beamDeps = [ httpoison_0_8_2 exjsx_3_1_0 ]; meta = { description = ''A Pagerduty client for Elixir.''; @@ -29472,19 +34102,19 @@ let paginex = paginex_0_0_1; - painstaking_0_5_6 = callPackage + painstaking_0_5_8 = callPackage ( - { buildMix, fetchHex, exoddic_1_2_0 }: + { buildMix, fetchHex, exoddic_1_3_1 }: buildMix { name = "painstaking"; - version = "0.5.6"; + version = "0.5.8"; src = fetchHex { pkg = "painstaking"; - version = "0.5.6"; + version = "0.5.8"; sha256 = - "f7efbebacbea3e0bb8adf79ab90ca896e54d179eb76a4da4eb1687411fa4af58"; + "f9de5ab6139fdda653df0a90e57fe229728a25f3611bf520c9433edd2ab81318"; }; - beamDeps = [ exoddic_1_2_0 ]; + beamDeps = [ exoddic_1_3_1 ]; meta = { description = ''Bet stake sizing recommendations''; @@ -29494,7 +34124,7 @@ let } ) {}; - painstaking = painstaking_0_5_6; + painstaking = painstaking_0_5_8; palette_0_0_2 = callPackage ( @@ -29621,17 +34251,17 @@ let parallel = parallel_0_0_3; - parallel_stream_1_0_1 = callPackage + parallel_stream_1_0_3 = callPackage ( { buildMix, fetchHex }: buildMix { name = "parallel_stream"; - version = "1.0.1"; + version = "1.0.3"; src = fetchHex { pkg = "parallel_stream"; - version = "1.0.1"; + version = "1.0.3"; sha256 = - "de54833225b0e67f21db47333a08685aed50d778a2f11cf7e36ae9e3fe4ee107"; + "8b0090b13a42343ad709ed088111fd40a9e4c2d1819ef6c1e601347134ed34d0"; }; meta = { @@ -29642,21 +34272,21 @@ let } ) {}; - parallel_stream = parallel_stream_1_0_1; + parallel_stream = parallel_stream_1_0_3; - params_1_0_1 = callPackage + params_2_0_0_beta_0 = callPackage ( - { buildMix, fetchHex, ecto_1_1_3 }: + { buildMix, fetchHex, ecto_0_2_7 }: buildMix { name = "params"; - version = "1.0.1"; + version = "2.0.0-beta.0"; src = fetchHex { pkg = "params"; - version = "1.0.1"; + version = "2.0.0-beta.0"; sha256 = - "182cfd185f886ad72e350baa7c2b1a5a0f77c52140ddc2604a5efef0f122dd51"; + "c8db0e2c6d4c592e66d19f6fdef0ecfab8aeb23101cbacf7cd3c5c8624780a72"; }; - beamDeps = [ ecto_1_1_3 ]; + beamDeps = [ ecto_0_2_7 ]; meta = { description = ''Parameter structure validation and casting with @@ -29667,19 +34297,19 @@ let } ) {}; - params = params_1_0_1; + params = params_2_0_0_beta_0; - paratize_2_1_2 = callPackage + paratize_2_1_3 = callPackage ( { buildMix, fetchHex }: buildMix { name = "paratize"; - version = "2.1.2"; + version = "2.1.3"; src = fetchHex { pkg = "paratize"; - version = "2.1.2"; + version = "2.1.3"; sha256 = - "3ac2970f8c40979bdd7ea6eebb106fb8c51e64e745e0f068e059cfbecbace433"; + "7dc6135524c65473f680ec3ade55c2f65b77ad40451ffd2bbd4128066b037d84"; }; meta = { @@ -29691,7 +34321,7 @@ let } ) {}; - paratize = paratize_2_1_2; + paratize = paratize_2_1_3; parse_client_0_2_3 = callPackage ( @@ -29717,19 +34347,19 @@ let parse_client = parse_client_0_2_3; - parse_torrent_0_1_0 = callPackage + parse_torrent_0_2_0 = callPackage ( - { buildMix, fetchHex, bencodex_1_0_0 }: + { buildMix, fetchHex, earmark_0_2_1, bencode_0_3_0 }: buildMix { name = "parse_torrent"; - version = "0.1.0"; + version = "0.2.0"; src = fetchHex { pkg = "parse_torrent"; - version = "0.1.0"; + version = "0.2.0"; sha256 = - "4dd7e2a51e6da91d0bbf843735ceeee43dda1f704a0d2717cefa11a259dec65d"; + "444d49f20ede110e33e0817134ef3f0b843a7af01c88e9c168acc4892ae2d320"; }; - beamDeps = [ bencodex_1_0_0 ]; + beamDeps = [ earmark_0_2_1 bencode_0_3_0 ]; meta = { description = ''Parses a .torrent file and returns a map''; @@ -29739,7 +34369,7 @@ let } ) {}; - parse_torrent = parse_torrent_0_1_0; + parse_torrent = parse_torrent_0_2_0; parse_trans_2_9_0 = callPackage ( @@ -29791,7 +34421,7 @@ let parsex_0_0_2 = callPackage ( - { buildMix, fetchHex, httpoison_0_8_1, poison_1_1_1 }: + { buildMix, fetchHex, httpoison_0_8_2, poison_1_1_1 }: buildMix { name = "parsex"; version = "0.0.2"; @@ -29801,7 +34431,7 @@ let sha256 = "024657ae8d29eba99caf90276ac2d7f27cf435a543d4036859fd4ab6ffbceb75"; }; - beamDeps = [ httpoison_0_8_1 poison_1_1_1 ]; + beamDeps = [ httpoison_0_8_2 poison_1_1_1 ]; meta = { description = ''ParsEx is an Elixir HTTP Client for communicating @@ -29816,7 +34446,7 @@ let passport_0_0_4 = callPackage ( - { buildMix, fetchHex, phoenix_1_1_4, comeonin_2_1_1 }: + { buildMix, fetchHex, phoenix_1_1_4, comeonin_2_3_0 }: buildMix { name = "passport"; version = "0.0.4"; @@ -29826,7 +34456,7 @@ let sha256 = "10e8e42cfd5fa834d7c3c3276c39274a3824100f2ffeed26adb4ed8475f0be91"; }; - beamDeps = [ phoenix_1_1_4 comeonin_2_1_1 ]; + beamDeps = [ phoenix_1_1_4 comeonin_2_3_0 ]; meta = { description = ''Provides authentication for phoenix @@ -29939,6 +34569,30 @@ let pbkdf2 = pbkdf2_2_0_0; + pbkdf2_nif_0_3_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "pbkdf2_nif"; + version = "0.3.0"; + src = fetchHex { + pkg = "pbkdf2_nif"; + version = "0.3.0"; + sha256 = + "7ad61389164cceac87e2bed9d8f184cd713cca85d51e096604c40bf86d96a8b7"; + }; + compilePorts = true; + + meta = { + description = ''PBKDF2 NIF implementation''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/barrel-db/erlang-pbkdf2-nif"; + }; + } + ) {}; + + pbkdf2_nif = pbkdf2_nif_0_3_0; + pc_1_2_0 = callPackage ( { buildRebar3, fetchHex }: @@ -30018,7 +34672,7 @@ let buildMix, fetchHex, poison_1_5_2, - httpoison_0_8_1, + httpoison_0_8_2, hackney_1_4_4, decimal_1_1_1 }: @@ -30033,7 +34687,7 @@ let }; beamDeps = [ poison_1_5_2 - httpoison_0_8_1 + httpoison_0_8_2 hackney_1_4_4 decimal_1_1_1 ]; @@ -30118,26 +34772,100 @@ let petick = petick_0_0_1; - phoenix_0_2_10 = callPackage + pg2pubsub_0_1_12 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + pg2pubsub = pg2pubsub_0_1_12; + + pgpool_1_0_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "pgpool"; + version = "1.0.0"; + src = fetchHex { + pkg = "pgpool"; + version = "1.0.0"; + sha256 = + "694ae752dc02734cbe174577d8bdf4058d0353379385a3448aec1bec5d9b49ff"; + }; + + meta = { + longDescription = ''A PosgreSQL client that automatically uses + connection pools and reconnects in case of + errors.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/ostinelli/pgpool"; + }; + } + ) {}; + + pgpool = pgpool_1_0_0; + + phasedb_0_0_1 = callPackage + ( + { + buildMix, 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.''; + + }; + } + ) {}; + + phasedb = phasedb_0_0_1; + + phoenix_0_2_11 = callPackage ( { buildMix, fetchHex, - inflex_0_2_3, + inflex_0_2_4, ex_conf_0_1_2, - plug_0_5_0, - jazz_0_1_1 + plug_0_5_1, + jazz_0_1_2 }: buildMix { name = "phoenix"; - version = "0.2.10"; + version = "0.2.11"; src = fetchHex { pkg = "phoenix"; - version = "0.2.10"; + version = "0.2.11"; sha256 = - "bb65584ef5696cf90cb4823fd82d5fd930d7e092f171410687c90924519b0022"; + "49bae6b4308f118942446154a63ea81d40a1ff79a0f20a846498f481c680ebdd"; }; - beamDeps = [ inflex_0_2_3 ex_conf_0_1_2 plug_0_5_0 jazz_0_1_1 ]; + beamDeps = [ inflex_0_2_4 ex_conf_0_1_2 plug_0_5_1 jazz_0_1_2 ]; meta = { longDescription = ''Productive. Reliable. Fast. A productive web @@ -30183,7 +34911,7 @@ let phoenix_1_0_4 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, plug_1_1_1, cowboy_1_0_4 }: + { buildMix, fetchHex, poison_1_5_2, plug_1_1_3, cowboy_1_0_4 }: buildMix { name = "phoenix"; version = "1.0.4"; @@ -30193,7 +34921,7 @@ let sha256 = "591d5f7f3a6f5407e8491a92dc6a2d0b7b94ef4f3526ad8ef4eb82660e6f69f6"; }; - beamDeps = [ poison_1_5_2 plug_1_1_1 cowboy_1_0_4 ]; + beamDeps = [ poison_1_5_2 plug_1_1_3 cowboy_1_0_4 ]; meta = { longDescription = ''Productive. Reliable. Fast. A productive web @@ -30207,7 +34935,7 @@ let phoenix_1_1_4 = callPackage ( - { buildMix, fetchHex, poison_1_0_3, plug_1_1_1, cowboy_1_0_4 }: + { buildMix, fetchHex, poison_1_0_3, plug_1_1_3, cowboy_1_0_4 }: buildMix { name = "phoenix"; version = "1.1.4"; @@ -30217,7 +34945,7 @@ let sha256 = "5765238fd5caef83a8ce9242d63b4302963f44aefe70510a597aae86b5b6cd10"; }; - beamDeps = [ poison_1_0_3 plug_1_1_1 cowboy_1_0_4 ]; + beamDeps = [ poison_1_0_3 plug_1_1_3 cowboy_1_0_4 ]; meta = { longDescription = ''Productive. Reliable. Fast. A productive web @@ -30233,7 +34961,7 @@ let phoenix_calendar_0_1_2 = callPackage ( - { buildMix, fetchHex, phoenix_html_2_5_0, calendar_0_12_3 }: + { buildMix, fetchHex, phoenix_html_2_5_1, calendar_0_12_4 }: buildMix { name = "phoenix_calendar"; version = "0.1.2"; @@ -30243,7 +34971,7 @@ let sha256 = "f22968fd2287b419bf9791845b62501bf0177630d01a92b0ba33e5f00978ca3c"; }; - beamDeps = [ phoenix_html_2_5_0 calendar_0_12_3 ]; + beamDeps = [ phoenix_html_2_5_1 calendar_0_12_4 ]; meta = { description = ''Integration between Phoenix & Calendar''; @@ -30279,21 +35007,21 @@ let phoenix_dtl = phoenix_dtl_0_0_1; - phoenix_ecto_3_0_0_beta_0 = callPackage + phoenix_ecto_3_0_0_beta_2 = callPackage ( { - buildMix, fetchHex, poison_1_0_3, phoenix_html_2_5_0, ecto_0_2_6 + buildMix, fetchHex, poison_1_0_3, phoenix_html_2_5_1, ecto_0_2_7 }: buildMix { name = "phoenix_ecto"; - version = "3.0.0-beta.0"; + version = "3.0.0-beta.2"; src = fetchHex { pkg = "phoenix_ecto"; - version = "3.0.0-beta.0"; + version = "3.0.0-beta.2"; sha256 = - "f5e7c174329e9f64e6970c46a122654b6d27c619f3e6184e4db10577b0e5daac"; + "7df3a54eb77846e306255d7953a2c3b6484e8b50c1dac510c779df28f28641b8"; }; - beamDeps = [ poison_1_0_3 phoenix_html_2_5_0 ecto_0_2_6 ]; + beamDeps = [ poison_1_0_3 phoenix_html_2_5_1 ecto_0_2_7 ]; meta = { description = ''Integration between Phoenix & Ecto''; @@ -30303,7 +35031,34 @@ let } ) {}; - phoenix_ecto = phoenix_ecto_3_0_0_beta_0; + phoenix_ecto = phoenix_ecto_3_0_0_beta_2; + + phoenix_ember_0_0_1 = callPackage + ( + { + buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2, hackney_1_4_10 + }: + buildMix { + name = "phoenix_ember"; + version = "0.0.1"; + src = fetchHex { + pkg = "phoenix_ember"; + version = "0.0.1"; + sha256 = + "2d108380a8eb25b88b80b950b7022bc061b77b8bfd2e37769e01499d6a6d2884"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 hackney_1_4_10 ]; + + meta = { + description = ''Ember.js integration via + ember-phoenix/phoenix-ember''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/levanto-financial/phoenix-ember"; + }; + } + ) {}; + + phoenix_ember = phoenix_ember_0_0_1; phoenix_gen_gulp_jspm_1_0_0 = callPackage ( @@ -30359,7 +35114,7 @@ let { buildMix, fetchHex, - phoenix_html_2_5_0, + phoenix_html_2_5_1, phoenix_1_0_4, calliope_0_3_0 }: @@ -30372,7 +35127,7 @@ let sha256 = "ec4f0dae227972a472661f1e8f9c51e8618290c8b6e5ca084ff81f6e7318468e"; }; - beamDeps = [ phoenix_html_2_5_0 phoenix_1_0_4 calliope_0_3_0 ]; + beamDeps = [ phoenix_html_2_5_1 phoenix_1_0_4 calliope_0_3_0 ]; meta = { description = ''Phoenix Template Engine for Haml''; @@ -30384,19 +35139,19 @@ let phoenix_haml = phoenix_haml_0_2_0; - phoenix_html_2_5_0 = callPackage + phoenix_html_2_0_0_dev = callPackage ( - { buildMix, fetchHex, plug_0_8_1 }: + { buildMix, fetchHex, plug_0_5_2 }: buildMix { name = "phoenix_html"; - version = "2.5.0"; + version = "2.0.0-dev"; src = fetchHex { pkg = "phoenix_html"; - version = "2.5.0"; + version = "2.0.0-dev"; sha256 = - "a3ef7288bf4a8304c65092774f602e3b1120536bed20dba9e90a5d2d41163fd4"; + "3057019ee9159d7916ca80a85aa9b2848250916ccfa08047f821a9b19893c8aa"; }; - beamDeps = [ plug_0_8_1 ]; + beamDeps = [ plug_0_5_2 ]; meta = { description = ''Phoenix.HTML functions for working with HTML @@ -30407,12 +35162,35 @@ let } ) {}; - phoenix_html = phoenix_html_2_5_0; + phoenix_html_2_5_1 = callPackage + ( + { buildMix, fetchHex, plug_0_5_2 }: + buildMix { + name = "phoenix_html"; + version = "2.5.1"; + src = fetchHex { + pkg = "phoenix_html"; + version = "2.5.1"; + sha256 = + "a5ebd47c5d0b5e3707fd9364e3ec228d8b84efa83e0ff80de451a42906ed1e60"; + }; + beamDeps = [ plug_0_5_2 ]; + + meta = { + description = ''Phoenix.HTML functions for working with HTML + strings and templates''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/phoenixframework/phoenix_html"; + }; + } + ) {}; + + phoenix_html = phoenix_html_2_5_1; phoenix_html_sanitizer_0_2_0 = callPackage ( { - buildMix, fetchHex, phoenix_html_2_5_0, html_sanitize_ex_0_3_1 + buildMix, fetchHex, phoenix_html_2_5_1, html_sanitize_ex_0_3_1 }: buildMix { name = "phoenix_html_sanitizer"; @@ -30423,7 +35201,7 @@ let sha256 = "4cb5ae02d5560ff4e24cc378487065d038f0efd4883925a770b05c1c1d56a13c"; }; - beamDeps = [ phoenix_html_2_5_0 html_sanitize_ex_0_3_1 ]; + beamDeps = [ phoenix_html_2_5_1 html_sanitize_ex_0_3_1 ]; meta = { description = ''HTML sanitizer for Phoenix''; @@ -30436,6 +35214,45 @@ let phoenix_html_sanitizer = phoenix_html_sanitizer_0_2_0; + phoenix_html_simplified_helpers_0_3_2 = callPackage + ( + { + buildMix, + fetchHex, + timex_ecto_1_0_4, + timex_1_0_2, + gettext_0_10_0, + ecto_2_0_0_beta_2 + }: + buildMix { + name = "phoenix_html_simplified_helpers"; + version = "0.3.2"; + src = fetchHex { + pkg = "phoenix_html_simplified_helpers"; + version = "0.3.2"; + sha256 = + "e34d2dae01c5803b1fdc1f6514b920541c7028f18322d6c8c8587dc77e5a7837"; + }; + beamDeps = [ + timex_ecto_1_0_4 + timex_1_0_2 + gettext_0_10_0 + ecto_2_0_0_beta_2 + ]; + + meta = { + longDescription = ''Some view helpers for phoenix html( truncate, + time_ago_in_words, number_with_delimiter )''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/ikeikeikeike/phoenix_html_simplified_helpers"; + }; + } + ) {}; + + phoenix_html_simplified_helpers = + phoenix_html_simplified_helpers_0_3_2; + phoenix_linguist_0_0_1 = callPackage ( { @@ -30465,7 +35282,7 @@ let phoenix_live_reload_1_0_3 = callPackage ( - { buildMix, fetchHex, phoenix_0_2_10, fs_0_9_2 }: + { buildMix, fetchHex, phoenix_0_2_11, fs_0_9_2 }: buildMix { name = "phoenix_live_reload"; version = "1.0.3"; @@ -30475,7 +35292,7 @@ let sha256 = "fbb65b7e4f4205b2e5d7061480889bd34d5c943a56feebd20b3dd949332fed85"; }; - beamDeps = [ phoenix_0_2_10 fs_0_9_2 ]; + beamDeps = [ phoenix_0_2_11 fs_0_9_2 ]; meta = { description = ''Provides live-reload functionality for Phoenix''; @@ -30615,7 +35432,7 @@ let phoenix_simple_form_0_0_2 = callPackage ( - { buildMix, fetchHex, phoenix_html_2_5_0 }: + { buildMix, fetchHex, phoenix_html_2_5_1 }: buildMix { name = "phoenix_simple_form"; version = "0.0.2"; @@ -30625,7 +35442,7 @@ let sha256 = "e059ada8c507168d2267d6a1db1790192c063ca5e2a3579dfd2d1b07e25e9f45"; }; - beamDeps = [ phoenix_html_2_5_0 ]; + beamDeps = [ phoenix_html_2_5_1 ]; meta = { description = ''Easy form handling for phoenix''; @@ -30643,7 +35460,7 @@ let buildMix, fetchHex, slim_fast_0_10_0, - phoenix_html_2_5_0, + phoenix_html_2_5_1, phoenix_1_1_4 }: buildMix { @@ -30655,7 +35472,7 @@ let sha256 = "4225e74608e29c93c603c6cde61766b604495e04ef65d6ca325ff1a9a492c563"; }; - beamDeps = [ slim_fast_0_10_0 phoenix_html_2_5_0 phoenix_1_1_4 + beamDeps = [ slim_fast_0_10_0 phoenix_html_2_5_1 phoenix_1_1_4 ]; meta = { @@ -30668,28 +35485,28 @@ let phoenix_slim = phoenix_slim_0_4_1; - phoenix_slime_0_4_1 = callPackage + phoenix_slime_0_5_1 = callPackage ( { buildMix, fetchHex, - slime_0_12_1, - phoenix_html_2_5_0, + slime_0_12_2, + phoenix_html_2_5_1, phoenix_1_1_4, cowboy_1_0_4 }: buildMix { name = "phoenix_slime"; - version = "0.4.1"; + version = "0.5.1"; src = fetchHex { pkg = "phoenix_slime"; - version = "0.4.1"; + version = "0.5.1"; sha256 = - "aa4036f88a0cab517ca8fa506c7c465fbb89f9857270c5711f6b83cec1cb8849"; + "23a0028271f7ad03b199336efa9c3f4df02049de10dc94b5c133b4bb69f5e7e1"; }; beamDeps = [ - slime_0_12_1 - phoenix_html_2_5_0 + slime_0_12_2 + phoenix_html_2_5_1 phoenix_1_1_4 cowboy_1_0_4 ]; @@ -30703,11 +35520,42 @@ let } ) {}; - phoenix_slime = phoenix_slime_0_4_1; + phoenix_slime = phoenix_slime_0_5_1; + + phoenix_swoosh_0_1_0 = callPackage + ( + { + buildMix, + fetchHex, + swoosh_0_1_0, + phoenix_html_2_5_1, + phoenix_1_1_4 + }: + buildMix { + name = "phoenix_swoosh"; + version = "0.1.0"; + src = fetchHex { + pkg = "phoenix_swoosh"; + version = "0.1.0"; + sha256 = + "cba68c2e421fbe7f54fbe8641918b0a276abbf81bee5a8eb37026cac85af9bd1"; + }; + beamDeps = [ swoosh_0_1_0 phoenix_html_2_5_1 phoenix_1_1_4 ]; + + meta = { + description = ''Use Swoosh to easily send emails in your Phoenix + project.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/swoosh/phoenix_swoosh"; + }; + } + ) {}; + + phoenix_swoosh = phoenix_swoosh_0_1_0; phoenix_timex_0_0_3 = callPackage ( - { buildMix, fetchHex, timex_1_0_1, phoenix_html_2_5_0 }: + { buildMix, fetchHex, timex_1_0_2, phoenix_html_2_5_1 }: buildMix { name = "phoenix_timex"; version = "0.0.3"; @@ -30717,7 +35565,7 @@ let sha256 = "47b2c32de83581ef12b58bdd9518c8180684ec7161cc7944d3b27542e414bc84"; }; - beamDeps = [ timex_1_0_1 phoenix_html_2_5_0 ]; + beamDeps = [ timex_1_0_2 phoenix_html_2_5_1 ]; meta = { description = ''Phoenix and Timex integration''; @@ -30741,7 +35589,7 @@ let phoenix_1_1_4, mailgun_0_1_2, joken_0_13_1, - ecto_2_0_0_beta_0, + ecto_2_0_0_beta_2, cowboy_1_0_4, comeonin_2_0_3 }: @@ -30762,7 +35610,7 @@ let phoenix_1_1_4 mailgun_0_1_2 joken_0_13_1 - ecto_2_0_0_beta_0 + ecto_2_0_0_beta_2 cowboy_1_0_4 comeonin_2_0_3 ]; @@ -30779,6 +35627,53 @@ let phoenix_token_auth = phoenix_token_auth_0_4_0; + phoenix_webpack_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + phoenix_webpack = phoenix_webpack_0_1_0; + + phone_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + phone = phone_0_0_1; + phst_transform_0_9_0 = callPackage ( { buildMix, fetchHex }: @@ -30827,19 +35722,19 @@ let picosat = picosat_0_1_0; - pigeon_0_3_0 = callPackage + pigeon_0_4_1 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_7_5 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "pigeon"; - version = "0.3.0"; + version = "0.4.1"; src = fetchHex { pkg = "pigeon"; - version = "0.3.0"; + version = "0.4.1"; sha256 = - "cb332c872656fc426b10309f0c840635549727f35df4deb52816f2c6b920639c"; + "f27413b863d470a8689e6378b9b36ee68f8bbcf8720f0b616756530f92bc23a0"; }; - beamDeps = [ poison_1_5_2 httpoison_0_7_5 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''HTTP2-compliant wrapper for sending iOS and @@ -30850,11 +35745,11 @@ let } ) {}; - pigeon = pigeon_0_3_0; + pigeon = pigeon_0_4_1; pin_elixir_0_0_1 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpotion_2_1_0 }: + { buildMix, fetchHex, poison_1_5_2, httpotion_2_2_2 }: buildMix { name = "pin_elixir"; version = "0.0.1"; @@ -30864,7 +35759,7 @@ let sha256 = "0140eecb7c714f9dadbcec26c45e2b2d770735029b7dcf98cdba9d793d80130a"; }; - beamDeps = [ poison_1_5_2 httpotion_2_1_0 ]; + beamDeps = [ poison_1_5_2 httpotion_2_2_2 ]; meta = { description = ''A library to wrap the Pin Payments API''; @@ -30878,7 +35773,7 @@ let pinglix_1_1_1 = callPackage ( - { buildMix, fetchHex, timex_0_19_5, poison_1_4_0, plug_1_1_1 }: + { buildMix, fetchHex, timex_0_19_5, poison_1_4_0, plug_1_1_3 }: buildMix { name = "pinglix"; version = "1.1.1"; @@ -30888,7 +35783,7 @@ let sha256 = "bff8166655cc143518c0089aca104755ab188816707fb73a5739dd094f45e895"; }; - beamDeps = [ timex_0_19_5 poison_1_4_0 plug_1_1_1 ]; + beamDeps = [ timex_0_19_5 poison_1_4_0 plug_1_1_3 ]; meta = { longDescription = ''Plug compatible health check system in Elixir @@ -30999,7 +35894,7 @@ let pipette_0_0_4 = callPackage ( - { buildMix, fetchHex, mock_0_1_1 }: + { buildMix, fetchHex, mock_0_1_3 }: buildMix { name = "pipette"; version = "0.0.4"; @@ -31009,7 +35904,7 @@ let sha256 = "8742ea9b115071c3aa7cec4ddacfa161ff63fd647e0491ac442cb118d7198e26"; }; - beamDeps = [ mock_0_1_1 ]; + beamDeps = [ mock_0_1_3 ]; meta = { description = ''new_data = pipette(data, template)''; @@ -31137,7 +36032,7 @@ let plasm_0_1_0 = callPackage ( - { buildMix, fetchHex, postgrex_0_11_1, ecto_2_0_0_beta_0 }: + { buildMix, fetchHex, postgrex_0_11_1, ecto_2_0_0_beta_2 }: buildMix { name = "plasm"; version = "0.1.0"; @@ -31147,7 +36042,7 @@ let sha256 = "0eb476cae0b02dedbbc558f59ca22f0791221129d15fba570c0a3b96401d6836"; }; - beamDeps = [ postgrex_0_11_1 ecto_2_0_0_beta_0 ]; + beamDeps = [ postgrex_0_11_1 ecto_2_0_0_beta_2 ]; meta = { longDescription = ''Plasm is a composable query library for Ecto @@ -31161,17 +36056,17 @@ let plasm = plasm_0_1_0; - plist_0_0_2 = callPackage + plist_0_0_4 = callPackage ( { buildMix, fetchHex }: buildMix { name = "plist"; - version = "0.0.2"; + version = "0.0.4"; src = fetchHex { pkg = "plist"; - version = "0.0.2"; + version = "0.0.4"; sha256 = - "e3560e6d94c4464b7479bb42a0fc1450e89fe99e67af099fb5cb2b2c7402409f"; + "533836ee86188fa2a0aed92410534851aac3cb46ee0919c98553b1f38a63aa1a"; }; meta = { @@ -31183,7 +36078,7 @@ let } ) {}; - plist = plist_0_0_2; + plist = plist_0_0_4; plug_0_11_3 = callPackage ( @@ -31277,17 +36172,17 @@ let } ) {}; - plug_0_5_0 = callPackage + plug_0_5_1 = callPackage ( { buildMix, fetchHex }: buildMix { name = "plug"; - version = "0.5.0"; + version = "0.5.1"; src = fetchHex { pkg = "plug"; - version = "0.5.0"; + version = "0.5.1"; sha256 = - "e34388510cdf725521cc772a8e711a090e1684bd964ced89d86b53dfd7a66ff5"; + "95271e2372bf794e19ce50c097a439e1586a6b125f432ee21fbea96ab9832fc1"; }; meta = { @@ -31299,6 +36194,51 @@ let } ) {}; + plug_0_5_2 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "plug"; + version = "0.5.2"; + src = fetchHex { + pkg = "plug"; + version = "0.5.2"; + sha256 = + "d31cde7d9d3867a544e427a3431113f276fe9269cd00054440d38b56e61c53ea"; + }; + + meta = { + description = ''A specification and conveniences for composable + modules between web applications''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/elixir-lang/plug"; + }; + } + ) {}; + + plug_0_5_3 = callPackage + ( + { buildMix, fetchHex, cowboy_1_0_4 }: + buildMix { + name = "plug"; + version = "0.5.3"; + src = fetchHex { + pkg = "plug"; + version = "0.5.3"; + sha256 = + "97457d419def5bf13b17fa953cf56b8ca9f2e3973174d6890cd54fe84110c955"; + }; + 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"; + }; + } + ) {}; + plug_0_7_0 = callPackage ( { buildMix, fetchHex, cowboy_1_0_4 }: @@ -31322,29 +36262,6 @@ let } ) {}; - plug_0_8_1 = callPackage - ( - { buildMix, fetchHex, cowboy_1_0_4 }: - buildMix { - name = "plug"; - version = "0.8.1"; - src = fetchHex { - pkg = "plug"; - version = "0.8.1"; - sha256 = - "bf16b2ac50df99b6179b25dd35737d5fb9dda1442f00bbeb54190244de5d8617"; - }; - 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"; - }; - } - ) {}; - plug_0_8_4 = callPackage ( { buildMix, fetchHex, cowboy_1_0_4 }: @@ -31414,17 +36331,17 @@ let } ) {}; - plug_1_1_1 = callPackage + plug_1_1_3 = callPackage ( { buildMix, fetchHex, cowboy_1_0_4 }: buildMix { name = "plug"; - version = "1.1.1"; + version = "1.1.3"; src = fetchHex { pkg = "plug"; - version = "1.1.1"; + version = "1.1.3"; sha256 = - "15a8ebd70bc8e545ee96212f26751d57908a3ea63cd5ca1d664a5d70038b8071"; + "3063801910afe580891477f7e03c5c7a51592fa790a04f12815a127e4e0e336f"; }; beamDeps = [ cowboy_1_0_4 ]; @@ -31437,11 +36354,11 @@ let } ) {}; - plug = plug_1_1_1; + plug = plug_1_1_3; plug_abort_2_1_1 = callPackage ( - { buildMix, fetchHex, plug_0_8_1, cowboy_1_0_4, poison_1_0_3 }: + { buildMix, fetchHex, plug_0_5_3, cowboy_1_0_4, poison_1_0_3 }: buildMix { name = "plug_abort"; version = "2.1.1"; @@ -31451,7 +36368,7 @@ let sha256 = "8da98a882ea79e08443e7d26c94ee2b572560efca3f0a5922c69e508ac02d883"; }; - beamDeps = [ plug_0_8_1 cowboy_1_0_4 poison_1_0_3 ]; + beamDeps = [ plug_0_5_3 cowboy_1_0_4 poison_1_0_3 ]; meta = { description = ''Easily abort the processing of a plug stack ''; @@ -31486,26 +36403,26 @@ let plug_accept_language = plug_accept_language_0_1_0; - plug_accesslog_0_10_0 = callPackage + plug_accesslog_0_11_0 = callPackage ( { buildMix, fetchHex, - tzdata_0_5_6, - timex_1_0_1, - plug_1_1_1, + tzdata_0_5_7, + timex_2_1_3, + plug_1_1_3, cowboy_1_0_4 }: buildMix { name = "plug_accesslog"; - version = "0.10.0"; + version = "0.11.0"; src = fetchHex { pkg = "plug_accesslog"; - version = "0.10.0"; + version = "0.11.0"; sha256 = - "c7cb4562e6ee51f9329b0aea877c3c82d5c109a1946b40b19f7311b7290d474a"; + "86ee180fd234a3c6d413153764f2a9e2d57171d3e89df2643a276b8760bcc867"; }; - beamDeps = [ tzdata_0_5_6 timex_1_0_1 plug_1_1_1 cowboy_1_0_4 ]; + beamDeps = [ tzdata_0_5_7 timex_2_1_3 plug_1_1_3 cowboy_1_0_4 ]; meta = { description = ''Plug for writing access logs''; @@ -31515,7 +36432,7 @@ let } ) {}; - plug_accesslog = plug_accesslog_0_10_0; + plug_accesslog = plug_accesslog_0_11_0; plug_assign_1_0_0 = callPackage ( @@ -31542,19 +36459,19 @@ let plug_assign = plug_assign_1_0_0; - plug_auth_0_2_0 = callPackage + plug_auth_0_3_0 = callPackage ( - { buildMix, fetchHex, plug_0_8_1, cowboy_1_0_4 }: + { buildMix, fetchHex, plug_0_5_2, cowboy_1_0_4 }: buildMix { name = "plug_auth"; - version = "0.2.0"; + version = "0.3.0"; src = fetchHex { pkg = "plug_auth"; - version = "0.2.0"; + version = "0.3.0"; sha256 = - "beb4fe7afce35714055b7cf362b1bd31665c0f4f2f2f6e59076d70ed60c48dc8"; + "e9935f31526baff0262ef17055f853f0045172adf7b39fd9b1c54c6347477a71"; }; - beamDeps = [ plug_0_8_1 cowboy_1_0_4 ]; + beamDeps = [ plug_0_5_2 cowboy_1_0_4 ]; meta = { description = ''A collection of authentication-related plugs''; @@ -31564,11 +36481,11 @@ let } ) {}; - plug_auth = plug_auth_0_2_0; + plug_auth = plug_auth_0_3_0; plug_basic_auth_1_1_0 = callPackage ( - { buildMix, fetchHex, plug_0_8_1, cowboy_1_0_4 }: + { buildMix, fetchHex, plug_0_5_2, cowboy_1_0_4 }: buildMix { name = "plug_basic_auth"; version = "1.1.0"; @@ -31578,7 +36495,7 @@ let sha256 = "6763e5ad0f17d6693e296cc3a69c1db627f9b66bda2bcded4ddfcc84a42f0c03"; }; - beamDeps = [ plug_0_8_1 cowboy_1_0_4 ]; + beamDeps = [ plug_0_5_2 cowboy_1_0_4 ]; meta = { description = ''A Plug for using HTTP Basic Authentication in @@ -31616,19 +36533,19 @@ let plug_byte_serve = plug_byte_serve_0_3_2; - plug_cloudflare_1_2_1 = callPackage + plug_cloudflare_1_3_0 = callPackage ( - { buildMix, fetchHex, plug_1_1_1, cidr_0_5_0 }: + { buildMix, fetchHex, plug_1_1_3, cidr_1_0_0 }: buildMix { name = "plug_cloudflare"; - version = "1.2.1"; + version = "1.3.0"; src = fetchHex { pkg = "plug_cloudflare"; - version = "1.2.1"; + version = "1.3.0"; sha256 = - "854e202c40f86c50e0b95c373c5335106f21f9059fc74d8379915ab560ecf8b6"; + "641df2e40267446172c43b2f52dd9a1cbcd1f24dccd101bda29732a13335ab21"; }; - beamDeps = [ plug_1_1_1 cidr_0_5_0 ]; + beamDeps = [ plug_1_1_3 cidr_1_0_0 ]; meta = { description = ''Convert CloudFlare`s CF-Connecting-IP header to @@ -31639,11 +36556,11 @@ let } ) {}; - plug_cloudflare = plug_cloudflare_1_2_1; + plug_cloudflare = plug_cloudflare_1_3_0; plug_cors_0_8_2 = callPackage ( - { buildMix, fetchHex, plug_1_1_1, cowboy_1_0_4 }: + { buildMix, fetchHex, plug_1_1_3, cowboy_1_0_4 }: buildMix { name = "plug_cors"; version = "0.8.2"; @@ -31653,7 +36570,7 @@ let sha256 = "286a36b000989538c168d115f6a017aaa15a4031e4f867d300878d81c3b8c6aa"; }; - beamDeps = [ plug_1_1_1 cowboy_1_0_4 ]; + beamDeps = [ plug_1_1_3 cowboy_1_0_4 ]; meta = { description = ''Deprecated: CORS Plug Middleware. Please use @@ -31668,7 +36585,7 @@ let plug_exception_handler_0_0_4 = callPackage ( - { buildMix, fetchHex, plug_0_8_1, cowboy_1_0_4 }: + { buildMix, fetchHex, plug_0_5_3, cowboy_1_0_4 }: buildMix { name = "plug_exception_handler"; version = "0.0.4"; @@ -31678,7 +36595,7 @@ let sha256 = "477ea599e516bcf8efb399ca43ca3d9cecd50982222b1f5f259092d4c99fca28"; }; - beamDeps = [ plug_0_8_1 cowboy_1_0_4 ]; + beamDeps = [ plug_0_5_3 cowboy_1_0_4 ]; meta = { description = ''Rescue exceptions from your plug stack''; @@ -31693,7 +36610,7 @@ let plug_forwarded_peer_0_0_2 = callPackage ( - { buildMix, fetchHex, plug_1_1_1 }: + { buildMix, fetchHex, plug_1_1_3 }: buildMix { name = "plug_forwarded_peer"; version = "0.0.2"; @@ -31703,7 +36620,7 @@ let sha256 = "c2466e0f0ef75a0d925a957fa50dfcded2c4788fe67857a675411e7184ae5ec3"; }; - beamDeps = [ plug_1_1_1 ]; + beamDeps = [ plug_1_1_3 ]; meta = { longDescription = ''Very simple plug which reads @@ -31744,7 +36661,7 @@ let plug_geoip2_0_4_2 = callPackage ( - { buildMix, fetchHex, plug_1_1_1, geolix_0_9_0 }: + { buildMix, fetchHex, plug_1_1_3, geolix_0_9_0 }: buildMix { name = "plug_geoip2"; version = "0.4.2"; @@ -31754,7 +36671,7 @@ let sha256 = "2a6443040e07e677b0ff7749d2cdf7797a97254466f6740aee11544a18f4993a"; }; - beamDeps = [ plug_1_1_1 geolix_0_9_0 ]; + beamDeps = [ plug_1_1_3 geolix_0_9_0 ]; meta = { longDescription = ''Adds geo location to a Plug connection based @@ -31767,26 +36684,26 @@ let plug_geoip2 = plug_geoip2_0_4_2; - plug_graphql_0_1_5 = callPackage + plug_graphql_0_2_0 = callPackage ( { buildMix, fetchHex, - poison_1_5_2, - plug_0_8_1, - graphql_0_1_2, + poison_1_0_3, + plug_0_5_2, + graphql_0_2_0, cowboy_1_0_4 }: buildMix { name = "plug_graphql"; - version = "0.1.5"; + version = "0.2.0"; src = fetchHex { pkg = "plug_graphql"; - version = "0.1.5"; + version = "0.2.0"; sha256 = - "a0a93dfe74a701393428bd0963dd2b93db5e418f8bf095a0b1f9bdab854ef0b7"; + "d633309e386fb4feafcadaa390fb1ae2cf26416823b1c1484ed4d018e13c769a"; }; - beamDeps = [ poison_1_5_2 plug_0_8_1 graphql_0_1_2 cowboy_1_0_4 + beamDeps = [ poison_1_0_3 plug_0_5_2 graphql_0_2_0 cowboy_1_0_4 ]; meta = { @@ -31797,11 +36714,11 @@ let } ) {}; - plug_graphql = plug_graphql_0_1_5; + plug_graphql = plug_graphql_0_2_0; plug_heartbeat_0_2_0 = callPackage ( - { buildMix, fetchHex, plug_1_1_1, cowboy_1_0_4 }: + { buildMix, fetchHex, plug_1_1_3, cowboy_1_0_4 }: buildMix { name = "plug_heartbeat"; version = "0.2.0"; @@ -31811,7 +36728,7 @@ let sha256 = "23cb357dad510695b6bb339fdbf5d3fc8581546124f7389d63c9cf723e4ad40f"; }; - beamDeps = [ plug_1_1_1 cowboy_1_0_4 ]; + beamDeps = [ plug_1_1_3 cowboy_1_0_4 ]; meta = { description = ''A tiny plug for responding to heartbeat requests @@ -31826,7 +36743,7 @@ let plug_json_parser_0_0_6 = callPackage ( - { buildMix, fetchHex, plug_0_8_1, cowboy_1_0_4, poison_1_1_1 }: + { buildMix, fetchHex, plug_0_7_0, cowboy_1_0_4, poison_1_1_1 }: buildMix { name = "plug_json_parser"; version = "0.0.6"; @@ -31836,7 +36753,7 @@ let sha256 = "4c07f3adade5ad8730b6ec5d33d50b5dbe1a960e2be29a764b415c5234c79204"; }; - beamDeps = [ plug_0_8_1 cowboy_1_0_4 poison_1_1_1 ]; + beamDeps = [ plug_0_7_0 cowboy_1_0_4 poison_1_1_1 ]; meta = { description = ''JSON parse for Plug.Parsers ''; @@ -31850,7 +36767,7 @@ let plug_jwt_0_7_1 = callPackage ( - { buildMix, fetchHex, plug_1_1_1, joken_0_16_1, cowboy_1_0_4 }: + { buildMix, fetchHex, plug_1_1_3, joken_0_16_1, cowboy_1_0_4 }: buildMix { name = "plug_jwt"; version = "0.7.1"; @@ -31860,7 +36777,7 @@ let sha256 = "a87cd8815454093c3300bdae4f2af7ec8c671fd22ce55f598309b5bed4ac3a2a"; }; - beamDeps = [ plug_1_1_1 joken_0_16_1 cowboy_1_0_4 ]; + beamDeps = [ plug_1_1_3 joken_0_16_1 cowboy_1_0_4 ]; meta = { description = ''JWT Plug Middleware''; @@ -31874,7 +36791,7 @@ let plug_media_type_router_0_0_2 = callPackage ( - { buildMix, fetchHex, plug_1_1_1 }: + { buildMix, fetchHex, plug_1_1_3 }: buildMix { name = "plug_media_type_router"; version = "0.0.2"; @@ -31884,7 +36801,7 @@ let sha256 = "e5f72ee4fd1a43321532e3165b3609a1184ba2d576279a1a63e17afba084f12b"; }; - beamDeps = [ plug_1_1_1 ]; + beamDeps = [ plug_1_1_3 ]; meta = { longDescription = ''An Elixir Plug for routing requests to other @@ -31897,9 +36814,33 @@ let plug_media_type_router = plug_media_type_router_0_0_2; + plug_pagecache_0_2_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + plug_pagecache = plug_pagecache_0_2_0; + plug_rails_cookie_session_store_0_1_0 = callPackage ( - { buildMix, fetchHex, plug_1_1_1, cowboy_1_0_4 }: + { buildMix, fetchHex, plug_1_1_3, cowboy_1_0_4 }: buildMix { name = "plug_rails_cookie_session_store"; version = "0.1.0"; @@ -31909,7 +36850,7 @@ let sha256 = "e08041d2ad4884826d8296a5560609df04a936ceca492d094f06458699ac69da"; }; - beamDeps = [ plug_1_1_1 cowboy_1_0_4 ]; + beamDeps = [ plug_1_1_3 cowboy_1_0_4 ]; meta = { description = ''Rails compatible Plug session store''; @@ -31923,19 +36864,43 @@ let plug_rails_cookie_session_store = plug_rails_cookie_session_store_0_1_0; - plug_redirect_https_0_0_4 = callPackage + plug_redirect_0_1_2 = callPackage ( - { buildMix, fetchHex, plug_1_1_1 }: + { buildMix, 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"; + }; + } + ) {}; + + plug_redirect = plug_redirect_0_1_2; + + plug_redirect_https_0_0_6 = callPackage + ( + { buildMix, fetchHex, plug_1_1_3 }: buildMix { name = "plug_redirect_https"; - version = "0.0.4"; + version = "0.0.6"; src = fetchHex { pkg = "plug_redirect_https"; - version = "0.0.4"; + version = "0.0.6"; sha256 = - "b0cf8d86bb6d39653923e48067e6259beb6daee3f0e6ea6beff9ddcbef22b4d5"; + "73f1b3172183005f0fb59a43c50a94a708c06ffcc35a7387967d87e001369068"; }; - beamDeps = [ plug_1_1_1 ]; + beamDeps = [ plug_1_1_3 ]; meta = { description = ''Plug to redirect http requests to https requests @@ -31946,11 +36911,11 @@ let } ) {}; - plug_redirect_https = plug_redirect_https_0_0_4; + plug_redirect_https = plug_redirect_https_0_0_6; plug_require_header_0_8_0 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, plug_1_1_1 }: + { buildMix, fetchHex, poison_1_5_2, plug_1_1_3 }: buildMix { name = "plug_require_header"; version = "0.8.0"; @@ -31960,7 +36925,7 @@ let sha256 = "b721158316f6d2efd4b24bd05a8a1c06caa699ee25249185c8c4f03f9204b283"; }; - beamDeps = [ poison_1_5_2 plug_1_1_1 ]; + beamDeps = [ poison_1_5_2 plug_1_1_3 ]; meta = { description = ''An Elixir Plug for requiring and extracting a @@ -31975,7 +36940,7 @@ let plug_response_header_0_2_1 = callPackage ( - { buildMix, fetchHex, plug_1_1_1 }: + { buildMix, fetchHex, plug_1_1_3 }: buildMix { name = "plug_response_header"; version = "0.2.1"; @@ -31985,7 +36950,7 @@ let sha256 = "82fd11fc70d925ed5a608ac13a9f604a80e24827f6603999d6a0f3f123862048"; }; - beamDeps = [ plug_1_1_1 ]; + beamDeps = [ plug_1_1_3 ]; meta = { description = ''This plug allows manipulation of HTTP response @@ -32000,7 +36965,7 @@ let plug_ribbon_0_2_1 = callPackage ( - { buildMix, fetchHex, plug_1_1_1 }: + { buildMix, fetchHex, plug_1_1_3 }: buildMix { name = "plug_ribbon"; version = "0.2.1"; @@ -32010,7 +36975,7 @@ let sha256 = "34fcbffb6fc3adde6bb167506934ab19787d2fff82b6bf93918e0000159bfe9d"; }; - beamDeps = [ plug_1_1_1 ]; + beamDeps = [ plug_1_1_3 ]; meta = { description = ''Injects a ribbon to your web application @@ -32023,19 +36988,19 @@ let plug_ribbon = plug_ribbon_0_2_1; - plug_runtime_0_0_1 = callPackage + plug_runtime_1_0_0 = callPackage ( - { buildMix, fetchHex, plug_1_1_1 }: + { buildMix, fetchHex, plug_1_1_3 }: buildMix { name = "plug_runtime"; - version = "0.0.1"; + version = "1.0.0"; src = fetchHex { pkg = "plug_runtime"; - version = "0.0.1"; + version = "1.0.0"; sha256 = - "b47ec0f5870e3c6adcad708c37ecbdd69ec25cd1f5bf1c15e21f78b518b7eb1c"; + "58e213a40fe339771ab93520da56c2108488cfd9e99c7e92def367567ce225a7"; }; - beamDeps = [ plug_1_1_1 ]; + beamDeps = [ plug_1_1_3 ]; meta = { longDescription = ''A simple Plug to measure the runtime of a @@ -32047,11 +37012,11 @@ let } ) {}; - plug_runtime = plug_runtime_0_0_1; + plug_runtime = plug_runtime_1_0_0; plug_secure_headers_0_0_1 = callPackage ( - { buildMix, fetchHex, plug_1_1_1 }: + { buildMix, fetchHex, plug_1_1_3 }: buildMix { name = "plug_secure_headers"; version = "0.0.1"; @@ -32061,7 +37026,7 @@ let sha256 = "727c5b7216aaa4bec2e0f88ed72199082820341602fad49cfc4c74477f55a905"; }; - beamDeps = [ plug_1_1_1 ]; + beamDeps = [ plug_1_1_3 ]; meta = { description = ''HTTP security headers with validatation for @@ -32079,7 +37044,7 @@ let { buildMix, fetchHex, - plug_1_1_1, + plug_1_1_3, ex_doc_0_11_4, earmark_0_2_1, cowboy_1_0_4 @@ -32093,7 +37058,7 @@ let sha256 = "f9cd5de250dbab0180166c873a50d297036d72f7cbac1a076972444c41f0b4c3"; }; - beamDeps = [ plug_1_1_1 ex_doc_0_11_4 earmark_0_2_1 cowboy_1_0_4 + beamDeps = [ plug_1_1_3 ex_doc_0_11_4 earmark_0_2_1 cowboy_1_0_4 ]; meta = { @@ -32135,7 +37100,7 @@ let plug_statsd_0_4_0 = callPackage ( - { buildMix, fetchHex, plug_1_1_1, ex_statsd_0_5_3 }: + { buildMix, fetchHex, plug_1_1_3, ex_statsd_0_5_3 }: buildMix { name = "plug_statsd"; version = "0.4.0"; @@ -32145,7 +37110,7 @@ let sha256 = "c618161e5ad93c727be6ce776e7f53542950d97a602691aee2acef2d57dbdea9"; }; - beamDeps = [ plug_1_1_1 ex_statsd_0_5_3 ]; + beamDeps = [ plug_1_1_3 ex_statsd_0_5_3 ]; meta = { description = ''A (Phoenix) plug for sending request counts and @@ -32182,6 +37147,30 @@ let plug_test_helpers = plug_test_helpers_0_1_0; + plug_utm_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + plug_utm = plug_utm_0_0_2; + plug_wait1_0_1_4 = callPackage ( { buildMix, fetchHex, poison_1_3_1, plug_0_13_1, cowboy_1_0_4 }: @@ -32255,7 +37244,7 @@ let plugs_0_1_0 = callPackage ( - { buildMix, fetchHex, plug_1_1_1, cowboy_1_0_4 }: + { buildMix, fetchHex, plug_1_1_3, cowboy_1_0_4 }: buildMix { name = "plugs"; version = "0.1.0"; @@ -32265,7 +37254,7 @@ let sha256 = "8d6cafd3ea0d373795774c9de2a0503433d65d9c2c0d58bd23ba0d9ba3547297"; }; - beamDeps = [ plug_1_1_1 cowboy_1_0_4 ]; + beamDeps = [ plug_1_1_3 cowboy_1_0_4 ]; meta = { description = ''A collection of Plug middleware for web @@ -32278,19 +37267,19 @@ let plugs = plugs_0_1_0; - plugsnag_1_0_1 = callPackage + plugsnag_1_1_0 = callPackage ( - { buildMix, fetchHex, bugsnag_1_1_1 }: + { buildMix, fetchHex, bugsnag_1_2_0 }: buildMix { name = "plugsnag"; - version = "1.0.1"; + version = "1.1.0"; src = fetchHex { pkg = "plugsnag"; - version = "1.0.1"; + version = "1.1.0"; sha256 = - "cf6c257d400b872787ced1a7175adb7332a7aa9d12d1a6ac6abcd8cf799bd06c"; + "aa3a9e587042f5519d8309fc4cf764a0262eda0da752ddf87c5fcfea176208ad"; }; - beamDeps = [ bugsnag_1_1_1 ]; + beamDeps = [ bugsnag_1_2_0 ]; meta = { description = ''Bugsnag reporter for Elixir`s Plug''; @@ -32300,7 +37289,7 @@ let } ) {}; - plugsnag = plugsnag_1_0_1; + plugsnag = plugsnag_1_1_0; plumber_girl_0_9_6 = callPackage ( @@ -32354,7 +37343,7 @@ let pocketex_0_1_0 = callPackage ( - { buildMix, fetchHex, poison_1_3_1, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_3_1, httpoison_0_8_2 }: buildMix { name = "pocketex"; version = "0.1.0"; @@ -32364,7 +37353,7 @@ let sha256 = "b832df8e3f3102b69892cc5cfab4418de876a6ecc5780805458b9946aa407cbf"; }; - beamDeps = [ poison_1_3_1 httpoison_0_8_1 ]; + beamDeps = [ poison_1_3_1 httpoison_0_8_2 ]; meta = { description = ''Pocketex is an Elixir client for the Pocket read @@ -32591,6 +37580,56 @@ let poker = poker_0_0_2; + poloniex_0_0_3 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: + buildMix { + name = "poloniex"; + version = "0.0.3"; + src = fetchHex { + pkg = "poloniex"; + version = "0.0.3"; + sha256 = + "976011016844c86ddded4310962194dfbbd296f5c7b9af469ea13131987d403b"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; + + meta = { + longDescription = ''WIP Poloniex API wrapper for Elixir. Provides + access to market data including trading pairs + between ETH, BTC, DOGE, LTC and others.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/cyberpunk-ventures/poloniex_ex"; + }; + } + ) {}; + + poloniex = poloniex_0_0_3; + + poly1305_0_4_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + poly1305 = poly1305_0_4_0; + polyglot_0_0_1 = callPackage ( { buildMix, fetchHex }: @@ -32616,6 +37655,30 @@ let polyglot = polyglot_0_0_1; + polyline_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + polyline = polyline_0_1_0; + polyvox_id3_0_2_1 = callPackage ( { buildMix, fetchHex }: @@ -32754,8 +37817,8 @@ let pooler_1_4_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "pooler"; version = "1.4.0"; src = fetchHex { @@ -32775,8 +37838,8 @@ let pooler_1_5_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "pooler"; version = "1.5.0"; src = fetchHex { @@ -32871,6 +37934,31 @@ let portal = portal_0_0_1; + porter_0_0_1 = callPackage + ( + { buildMix, 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.''; + + }; + } + ) {}; + + porter = porter_0_0_1; + porterstemmer_0_0_1 = callPackage ( { buildMix, fetchHex }: @@ -32896,19 +37984,65 @@ let porterstemmer = porterstemmer_0_0_1; - posterize_0_9_2 = callPackage + portmidi_3_2_0 = callPackage ( - { buildMix, fetchHex, postgrex_0_11_1 }: + { buildErlangMk, fetchHex }: + buildErlangMk { + name = "portmidi"; + version = "3.2.0"; + src = fetchHex { + pkg = "portmidi"; + version = "3.2.0"; + sha256 = + "93344ce66905d0c841d1e387eb24572bb2d2214668b45bf926d0363e9c064641"; + }; + + meta = { + description = ''Elixir bindings to the portmidi C library''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/lucidstack/ex-portmidi"; + }; + } + ) {}; + + portmidi = portmidi_3_2_0; + + positive_13_3_7 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + positive = positive_13_3_7; + + posterize_0_10_0 = callPackage + ( + { buildMix, fetchHex, postgrex_0_11_1, jsx_2_8_0 }: buildMix { name = "posterize"; - version = "0.9.2"; + version = "0.10.0"; src = fetchHex { pkg = "posterize"; - version = "0.9.2"; + version = "0.10.0"; sha256 = - "c88f4fdefb2bc0cad5a7b19eca21fe9954f0a6b88a3af7eb685ee5df324b0ce2"; + "3569fd8f8097acb2a49fb23c446d3a8ff57879779866d71929eb356d076e7eb9"; }; - beamDeps = [ postgrex_0_11_1 ]; + beamDeps = [ postgrex_0_11_1 jsx_2_8_0 ]; meta = { description = ''erlang wrapper for postgrex''; @@ -32918,7 +38052,7 @@ let } ) {}; - posterize = posterize_0_9_2; + posterize = posterize_0_10_0; postgrex_0_11_1 = callPackage ( @@ -32926,7 +38060,7 @@ let buildMix, fetchHex, decimal_1_1_1, - db_connection_0_2_3, + db_connection_0_2_4, connection_1_0_2 }: buildMix { @@ -32938,7 +38072,7 @@ let sha256 = "f56d47038f4f642cee0f9c40eeea0ef9ba645b7fc77723b4764f282df95baeb8"; }; - beamDeps = [ decimal_1_1_1 db_connection_0_2_3 connection_1_0_2 + beamDeps = [ decimal_1_1_1 db_connection_0_2_4 connection_1_0_2 ]; meta = { @@ -32973,6 +38107,28 @@ let } ) {}; + postgrex_0_8_4 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + postgrex_0_9_1 = callPackage ( { buildMix, fetchHex, decimal_1_1_1 }: @@ -33067,6 +38223,31 @@ let pqueue = pqueue_1_5_1; + pragmatic_0_1_6 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + pragmatic = pragmatic_0_1_6; + prefecture_jp_0_0_2 = callPackage ( { buildMix, fetchHex }: @@ -33091,6 +38272,31 @@ let prefecture_jp = prefecture_jp_0_0_2; + prelude_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + prelude = prelude_0_0_1; + presentex_0_0_10 = callPackage ( { buildMix, fetchHex }: @@ -33140,7 +38346,7 @@ let pricing_0_0_1 = callPackage ( - { buildMix, fetchHex, timex_1_0_1, porcelain_2_0_1 }: + { buildMix, fetchHex, timex_1_0_2, porcelain_2_0_1 }: buildMix { name = "pricing"; version = "0.0.1"; @@ -33150,7 +38356,7 @@ let sha256 = "82e0438611507f600bd799c986872588f88627fdcf7a15d4031d779c9d1cd4d7"; }; - beamDeps = [ timex_1_0_1 porcelain_2_0_1 ]; + beamDeps = [ timex_1_0_2 porcelain_2_0_1 ]; meta = { description = ''Pricing financial instruments in Elixir''; @@ -33209,6 +38415,33 @@ let proper = proper_1_1_1_beta; + proper_case_0_1_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + proper_case = proper_case_0_1_1; + proplist_1_1_0 = callPackage ( { buildMix, fetchHex }: @@ -33233,10 +38466,36 @@ let proplist = proplist_1_1_0; + proto_def_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + proto_def = proto_def_0_0_1; + protobuffs_0_8_2 = callPackage ( - { buildRebar3, fetchHex, meck_0_8_4 }: - buildRebar3 { + { buildErlangMk, fetchHex, meck_0_8_4 }: + buildErlangMk { name = "protobuffs"; version = "0.8.2"; src = fetchHex { @@ -33245,7 +38504,6 @@ let sha256 = "b77e9d03518927b290cc5bb5cc9622a177e70289100fea9ccb57873573e54553"; }; - beamDeps = [ meck_0_8_4 ]; meta = { @@ -33260,17 +38518,17 @@ let protobuffs = protobuffs_0_8_2; - provider_asn1_0_1_2 = callPackage + provider_asn1_0_2_1 = callPackage ( { buildRebar3, fetchHex }: buildRebar3 { name = "provider_asn1"; - version = "0.1.2"; + version = "0.2.1"; src = fetchHex { pkg = "provider_asn1"; - version = "0.1.2"; + version = "0.2.1"; sha256 = - "b310c46a2d5675431737f10a55d6b37347c11bf3efc4c1d7b63e710e3842c1bb"; + "1fbf4a1a9711b6308423a213d45dbe409937cdfbad0816491d18aea5d3c44242"; }; meta = { @@ -33281,7 +38539,7 @@ let } ) {}; - provider_asn1 = provider_asn1_0_1_2; + provider_asn1 = provider_asn1_0_2_1; providers_1_4_1 = callPackage ( @@ -33334,7 +38592,7 @@ let proxy_0_0_1 = callPackage ( { - buildMix, fetchHex, plug_1_1_1, httpoison_0_8_1, cowboy_1_0_4 + buildMix, fetchHex, plug_1_1_3, httpoison_0_8_2, cowboy_1_0_4 }: buildMix { name = "proxy"; @@ -33345,7 +38603,7 @@ let sha256 = "74691b18a0918d6e14df1f254ee9f342a547bc280151a4d88a540839ae75bbae"; }; - beamDeps = [ plug_1_1_1 httpoison_0_8_1 cowboy_1_0_4 ]; + beamDeps = [ plug_1_1_3 httpoison_0_8_2 cowboy_1_0_4 ]; meta = { description = ''Proxy plug for upstream servers''; @@ -33359,7 +38617,7 @@ let pubnub_ex_0_0_2 = callPackage ( - { buildMix, fetchHex, httpoison_0_8_1, exjsx_3_2_0 }: + { buildMix, fetchHex, httpoison_0_8_2, exjsx_3_2_0 }: buildMix { name = "pubnub_ex"; version = "0.0.2"; @@ -33369,7 +38627,7 @@ let sha256 = "83d270cfe2be6728fb96d9145371a87ddc876a97f91cdca2584cc82c2a0b91cb"; }; - beamDeps = [ httpoison_0_8_1 exjsx_3_2_0 ]; + beamDeps = [ httpoison_0_8_2 exjsx_3_2_0 ]; meta = { description = ''A pubsub tool for pubnub.''; @@ -33404,6 +38662,32 @@ let pubsub = pubsub_0_0_2; + pulse_0_1_3 = callPackage + ( + { buildMix, fetchHex, sonic_0_1_3 }: + buildMix { + name = "pulse"; + version = "0.1.3"; + src = fetchHex { + pkg = "pulse"; + version = "0.1.3"; + sha256 = + "8d9ab6b8f5b3e8da2feedb32062b97243bfc8c250ad5bab09fd61944e51e6aa0"; + }; + beamDeps = [ sonic_0_1_3 ]; + + meta = { + longDescription = ''Service registration and discovery library + for Elixir. Relies on etcd as an external + service registry.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/heroiclabs/pulse"; + }; + } + ) {}; + + pulse = pulse_0_1_3; + pulse_libs_1_0_0 = callPackage ( { buildMix, fetchHex }: @@ -33427,25 +38711,25 @@ let pulse_libs = pulse_libs_1_0_0; - pusher_0_1_2 = callPackage + pusher_0_1_3 = callPackage ( { buildMix, fetchHex, - signaturex_0_0_8, - httpoison_0_8_1, + signaturex_1_0_1, + httpoison_0_8_2, exjsx_3_2_0 }: buildMix { name = "pusher"; - version = "0.1.2"; + version = "0.1.3"; src = fetchHex { pkg = "pusher"; - version = "0.1.2"; + version = "0.1.3"; sha256 = - "6a21b65a7a1e6a4fe7b1cd0d555ca25c871e68441cef3373dc5771ab0c2a47c2"; + "1443c9652d3a3d03fcfef0e8dca817affa80d1c4e0eb582282af0d9c69a087f3"; }; - beamDeps = [ signaturex_0_0_8 httpoison_0_8_1 exjsx_3_2_0 ]; + beamDeps = [ signaturex_1_0_1 httpoison_0_8_2 exjsx_3_2_0 ]; meta = { description = ''Pusher HTTP client''; @@ -33455,7 +38739,31 @@ let } ) {}; - pusher = pusher_0_1_2; + pusher = pusher_0_1_3; + + pushex_0_0_2 = callPackage + ( + { buildMix, fetchHex, poison_1_0_3, httpoison_0_8_2 }: + buildMix { + name = "pushex"; + version = "0.0.2"; + src = fetchHex { + pkg = "pushex"; + version = "0.0.2"; + sha256 = + "7330d48e2816b9d3444b96d30f9144607490807684f2f231fa91bc7c6888fe03"; + }; + beamDeps = [ poison_1_0_3 httpoison_0_8_2 ]; + + meta = { + description = ''Mobile push notification library''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/tuvistavie/pushex"; + }; + } + ) {}; + + pushex = pushex_0_0_2; qdate_0_4_2 = callPackage ( @@ -33489,7 +38797,7 @@ let qiita_ex_0_0_2 = callPackage ( - { buildMix, fetchHex, httpoison_0_8_1, exjsx_3_2_0 }: + { buildMix, fetchHex, httpoison_0_8_2, exjsx_3_2_0 }: buildMix { name = "qiita_ex"; version = "0.0.2"; @@ -33499,7 +38807,7 @@ let sha256 = "0bb9a5535c0915c426ff13350b907cbd2b455bb99d8bcb8324ffadb6c9bcf1eb"; }; - beamDeps = [ httpoison_0_8_1 exjsx_3_2_0 ]; + beamDeps = [ httpoison_0_8_2 exjsx_3_2_0 ]; meta = { description = ''Qiita API v2 Interface for Elixir''; @@ -33558,18 +38866,19 @@ let qlc = qlc_1_0_0; - quantum_1_6_1 = callPackage + quantum_1_7_1 = callPackage ( - { buildMix, fetchHex }: + { buildMix, fetchHex, timex_2_1_3 }: buildMix { name = "quantum"; - version = "1.6.1"; + version = "1.7.1"; src = fetchHex { pkg = "quantum"; - version = "1.6.1"; + version = "1.7.1"; sha256 = - "877ef048391ff0c0268cc17078dd707351241af0c04041bc432398017b998bbf"; + "55a74be6a021816fe78d9a4a9450281e027302806313c9fa6e51694d44106c0a"; }; + beamDeps = [ timex_2_1_3 ]; meta = { description = ''Cron-like job scheduler for Elixir.''; @@ -33579,7 +38888,7 @@ let } ) {}; - quantum = quantum_1_6_1; + quantum = quantum_1_7_1; quark_1_0_2 = callPackage ( @@ -33722,6 +39031,30 @@ let quintana = quintana_0_2_1; + ra_0_3_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + ra = ra_0_3_2; + rabbitElixir_1_0_1 = callPackage ( { buildMix, fetchHex, exjsx_3_1_0 }: @@ -33771,26 +39104,26 @@ let rabbit_common = rabbit_common_3_5_6; - rackla_0_1_0 = callPackage + rackla_1_0_0 = callPackage ( { buildMix, fetchHex, - poison_1_5_2, - plug_0_14_0, - hackney_1_4_8, + poison_2_1_0, + plug_1_1_3, + hackney_1_4_10, cowboy_1_0_4 }: buildMix { name = "rackla"; - version = "0.1.0"; + version = "1.0.0"; src = fetchHex { pkg = "rackla"; - version = "0.1.0"; + version = "1.0.0"; sha256 = - "640b77e8a78e66085a49fc4af6fc3b028b2db8af39ee4c950e4a812c15c8657f"; + "8d299ccea08686953beb11841eeb70ffba7fa040422bc62eaded785432422032"; }; - beamDeps = [ poison_1_5_2 plug_0_14_0 hackney_1_4_8 cowboy_1_0_4 + beamDeps = [ poison_2_1_0 plug_1_1_3 hackney_1_4_10 cowboy_1_0_4 ]; meta = { @@ -33801,7 +39134,7 @@ let } ) {}; - rackla = rackla_0_1_0; + rackla = rackla_1_0_0; radpath_0_0_5 = callPackage ( @@ -33830,7 +39163,7 @@ let rails_4_2_0 = callPackage ( - { buildMix, fetchHex, plug_1_1_1 }: + { buildMix, fetchHex, plug_1_1_3 }: buildMix { name = "rails"; version = "4.2.0"; @@ -33840,7 +39173,7 @@ let sha256 = "731692769aa106a20c87b12dca15336fd1d16a7f02e2615ad76f6ce83a2b0b46"; }; - beamDeps = [ plug_1_1_1 ]; + beamDeps = [ plug_1_1_3 ]; meta = { longDescription = ''A plug to get your plug/phoenix applications @@ -33855,8 +39188,8 @@ let ranch_1_1_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "ranch"; version = "1.1.0"; src = fetchHex { @@ -33876,8 +39209,8 @@ let ranch_1_2_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "ranch"; version = "1.2.1"; src = fetchHex { @@ -33971,20 +39304,20 @@ let range_extras = range_extras_0_1_0; - rankmatcher_0_1_2 = callPackage + rankmatcher_0_1_4 = callPackage ( - { buildRebar3, fetchHex, libsnarlmatch_0_1_5 }: + { buildRebar3, fetchHex, libsnarlmatch_0_1_7 }: buildRebar3 { name = "rankmatcher"; - version = "0.1.2"; + version = "0.1.4"; src = fetchHex { pkg = "rankmatcher"; - version = "0.1.2"; + version = "0.1.4"; sha256 = - "8ea5974be574159e6ac188fc4309ef86889d6b227df44b1426f39b02b7d533e7"; + "ae02bd458ba5c4298809e056668206dac3675c15319780808cbdde48068185c6"; }; - beamDeps = [ libsnarlmatch_0_1_5 ]; + beamDeps = [ libsnarlmatch_0_1_7 ]; meta = { description = ''Library to rank and match lists''; @@ -33994,12 +39327,12 @@ let } ) {}; - rankmatcher = rankmatcher_0_1_2; + rankmatcher = rankmatcher_0_1_4; rapidax_0_0_3 = callPackage ( { - buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1, cowboy_1_0_4 + buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2, cowboy_1_0_4 }: buildMix { name = "rapidax"; @@ -34010,7 +39343,7 @@ let sha256 = "9912b79b3d2729465bf66315bd955e031aeb038f05a63faa2dc0414026edb18c"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 cowboy_1_0_4 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 cowboy_1_0_4 ]; meta = { description = ''Rapidly develop your API client - based on @@ -34053,8 +39386,8 @@ let ratx_0_1_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildMix, fetchHex }: + buildMix { name = "ratx"; version = "0.1.0"; src = fetchHex { @@ -34077,7 +39410,7 @@ let raven_0_0_5 = callPackage ( - { buildMix, fetchHex, hackney_1_0_6, uuid_0_1_5, poison_1_2_1 }: + { buildMix, fetchHex, hackney_1_4_8, uuid_1_0_0, poison_1_2_1 }: buildMix { name = "raven"; version = "0.0.5"; @@ -34087,7 +39420,7 @@ let sha256 = "dac032f4a14adbd174927508709585bd34f9baa2836ff3987b4d071790cb229a"; }; - beamDeps = [ hackney_1_0_6 uuid_0_1_5 poison_1_2_1 ]; + beamDeps = [ hackney_1_4_8 uuid_1_0_0 poison_1_2_1 ]; meta = { description = ''Raven is an Elixir client for Sentry''; @@ -34104,10 +39437,10 @@ let { buildMix, fetchHex, - timex_1_0_1, + timex_1_0_2, poison_1_5_2, - plug_1_1_1, - httpoison_0_8_1 + plug_1_1_3, + httpoison_0_8_2 }: buildMix { name = "raygun"; @@ -34118,7 +39451,7 @@ let sha256 = "742fe2fef4fff5933802566375ce8efe27eaa2afbb8609c1bca50ef43f30bc3f"; }; - beamDeps = [ timex_1_0_1 poison_1_5_2 plug_1_1_1 httpoison_0_8_1 + beamDeps = [ timex_1_0_2 poison_1_5_2 plug_1_1_3 httpoison_0_8_2 ]; meta = { @@ -34158,7 +39491,7 @@ let readme_md_doc_0_1_2 = callPackage ( - { buildMix, fetchHex, ex_doc_0_11_4, argument_parser_0_1_1 }: + { buildMix, fetchHex, ex_doc_0_11_4, argument_parser_0_1_3 }: buildMix { name = "readme_md_doc"; version = "0.1.2"; @@ -34168,7 +39501,7 @@ let sha256 = "3353e8598991afbaa8d12344212fdd9c85413d1664b026a7ee1036573c6f536c"; }; - beamDeps = [ ex_doc_0_11_4 argument_parser_0_1_1 ]; + beamDeps = [ ex_doc_0_11_4 argument_parser_0_1_3 ]; meta = { description = ''README.md generation tool for small Elixir @@ -34264,7 +39597,7 @@ let fetchHex, poolboy_1_5_1, poison_1_4_0, - plug_1_1_1, + plug_1_1_3, exos_1_0_0, cowboy_1_0_4 }: @@ -34280,7 +39613,7 @@ let beamDeps = [ poolboy_1_5_1 poison_1_4_0 - plug_1_1_1 + plug_1_1_3 exos_1_0_0 cowboy_1_0_4 ]; @@ -34416,17 +39749,17 @@ let rebar3_autotest = rebar3_autotest_0_1_1; - rebar3_cuttlefish_0_5_0 = callPackage + rebar3_cuttlefish_0_10_0 = callPackage ( { buildRebar3, fetchHex, cuttlefish_2_0_7 }: buildRebar3 { name = "rebar3_cuttlefish"; - version = "0.5.0"; + version = "0.10.0"; src = fetchHex { pkg = "rebar3_cuttlefish"; - version = "0.5.0"; + version = "0.10.0"; sha256 = - "dd2cdb1e6cbcf5cdb92adec0e359a3ec5f407c49a6182e7fdfcde1b45e790348"; + "e19a7393b09f2ed35e6ebbac392290d6ff1428e6d8573eac9ce49684b324b6e0"; }; beamDeps = [ cuttlefish_2_0_7 ]; @@ -34439,7 +39772,7 @@ let } ) {}; - rebar3_cuttlefish = rebar3_cuttlefish_0_5_0; + rebar3_cuttlefish = rebar3_cuttlefish_0_10_0; rebar3_diameter_compiler_0_3_1 = callPackage ( @@ -34488,17 +39821,17 @@ let rebar3_elixirc = rebar3_elixirc_0_1_0; - rebar3_eqc_0_0_8 = callPackage + rebar3_eqc_0_0_10 = callPackage ( { buildRebar3, fetchHex, cf_0_1_2 }: buildRebar3 { name = "rebar3_eqc"; - version = "0.0.8"; + version = "0.0.10"; src = fetchHex { pkg = "rebar3_eqc"; - version = "0.0.8"; + version = "0.0.10"; sha256 = - "0a5cd09106a23ccad2b528e5c2f68f7884cba367b03e81c055f1f3fc742d1526"; + "5f901a542ca237da5106c35ae67224316b4aca7ba16204efc874fd1329414729"; }; beamDeps = [ cf_0_1_2 ]; @@ -34512,7 +39845,7 @@ let } ) {}; - rebar3_eqc = rebar3_eqc_0_0_8; + rebar3_eqc = rebar3_eqc_0_0_10; rebar3_exunit_0_1_1 = callPackage ( @@ -34537,20 +39870,20 @@ let rebar3_exunit = rebar3_exunit_0_1_1; - rebar3_gpb_plugin_1_2_0 = callPackage + rebar3_gpb_plugin_1_3_0 = callPackage ( - { buildRebar3, fetchHex, gpb_3_18_8 }: + { buildRebar3, fetchHex, gpb_3_20_0 }: buildRebar3 { name = "rebar3_gpb_plugin"; - version = "1.2.0"; + version = "1.3.0"; src = fetchHex { pkg = "rebar3_gpb_plugin"; - version = "1.2.0"; + version = "1.3.0"; sha256 = - "a5b305359d17399a2f4bfc26c6f4fd12ad846966642241ff85eb6e04bd1e97b6"; + "8708e32b99a98d25179a831a7192ed75b15ed396c7e9b927d8bf705f13b3269c"; }; - beamDeps = [ gpb_3_18_8 ]; + beamDeps = [ gpb_3_20_0 ]; meta = { description = ''A rebar3 gpb plugin for compiling .proto files''; @@ -34560,7 +39893,7 @@ let } ) {}; - rebar3_gpb_plugin = rebar3_gpb_plugin_1_2_0; + rebar3_gpb_plugin = rebar3_gpb_plugin_1_3_0; rebar3_hex_1_19_0 = callPackage ( @@ -34659,17 +39992,17 @@ let rebar3_neotoma_plugin = rebar3_neotoma_plugin_0_2_0; - rebar3_proper_0_5_0 = callPackage + rebar3_proper_0_6_0 = callPackage ( { buildRebar3, fetchHex, proper_1_1_1_beta }: buildRebar3 { name = "rebar3_proper"; - version = "0.5.0"; + version = "0.6.0"; src = fetchHex { pkg = "rebar3_proper"; - version = "0.5.0"; + version = "0.6.0"; sha256 = - "c73549e279454f6a5887d564addafb779a4dd276460f17af5c26045ef8f44059"; + "8d951f0ef4cfdf699b1dec0b035a9c00a6ac9544b0145ec28621add21b46298d"; }; beamDeps = [ proper_1_1_1_beta ]; @@ -34682,7 +40015,7 @@ let } ) {}; - rebar3_proper = rebar3_proper_0_5_0; + rebar3_proper = rebar3_proper_0_6_0; rebar3_proper_plugin_0_1_0 = callPackage ( @@ -34755,6 +40088,29 @@ let rebar3_run = rebar3_run_0_2_0; + rebar3_vendor_0_1_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + rebar3_vendor = rebar3_vendor_0_1_0; + rebar3_yang_plugin_0_2_1 = callPackage ( { buildRebar3, fetchHex }: @@ -34871,7 +40227,7 @@ let recaptcha_1_1_1 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "recaptcha"; version = "1.1.1"; @@ -34881,7 +40237,7 @@ let sha256 = "ebfa37443d23d2c70366f3f84f00bd50d59da5583ffde2673bc5ea83667b5751"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''A simple reCaptcha package for Phoenix @@ -35018,7 +40374,7 @@ let reddhl_0_0_1 = callPackage ( - { buildRebar3, fetchHex, poison_1_4_0, httpoison_0_8_1 }: + { buildRebar3, fetchHex, poison_1_4_0, httpoison_0_8_2 }: buildRebar3 { name = "reddhl"; version = "0.0.1"; @@ -35029,7 +40385,7 @@ let "4b2a5b1e3119b5b44e57c10e395fc817d977bf7fd72464605efff08266336871"; }; - beamDeps = [ poison_1_4_0 httpoison_0_8_1 ]; + beamDeps = [ poison_1_4_0 httpoison_0_8_2 ]; meta = { description = ''An headline and link puller for Reddit and its @@ -35042,6 +40398,31 @@ let reddhl = reddhl_0_0_1; + redis_pool_0_2_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + redis_pool = redis_pool_0_2_3; + redis_poolex_0_0_5 = callPackage ( { buildMix, fetchHex, poolboy_1_5_1, exredis_0_2_3 }: @@ -35067,17 +40448,17 @@ let redis_poolex = redis_poolex_0_0_5; - redix_0_3_4 = callPackage + redix_0_3_6 = callPackage ( { buildMix, fetchHex, connection_1_0_2 }: buildMix { name = "redix"; - version = "0.3.4"; + version = "0.3.6"; src = fetchHex { pkg = "redix"; - version = "0.3.4"; + version = "0.3.6"; sha256 = - "111acb6b4250f2c2aa1757bf9404176a5fc1e2a70cfd2413cbf26e217f61927e"; + "6c7e3d6bf904eeff99232d28832d3234e4309179dc11516829dd672c8a98a663"; }; beamDeps = [ connection_1_0_2 ]; @@ -35090,7 +40471,7 @@ let } ) {}; - redix = redix_0_3_4; + redix = redix_0_3_6; redo_2_0_1 = callPackage ( @@ -35117,7 +40498,7 @@ let redtube_1_0_0 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "redtube"; version = "1.0.0"; @@ -35127,7 +40508,7 @@ let sha256 = "f9c5b83c3f860c448328079f1250b54f06749d9c1adb593f7e11e45fe8131a0d"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''API Wrapper for Redtube''; @@ -35163,15 +40544,38 @@ let ref_inspector = ref_inspector_0_8_0; + regdom_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + regdom = regdom_0_0_1; + relax_0_3_0 = callPackage ( { buildMix, fetchHex, poison_1_5_2, - plug_1_1_1, - ja_serializer_0_7_1, - ecto_2_0_0_beta_0, + plug_1_1_3, + ja_serializer_0_8_1, + ecto_2_0_0_beta_2, cowboy_1_0_4 }: buildMix { @@ -35185,9 +40589,9 @@ let }; beamDeps = [ poison_1_5_2 - plug_1_1_1 - ja_serializer_0_7_1 - ecto_2_0_0_beta_0 + plug_1_1_3 + ja_serializer_0_8_1 + ecto_2_0_0_beta_2 cowboy_1_0_4 ]; @@ -35205,17 +40609,17 @@ let relax = relax_0_3_0; - relflow_1_0_4 = callPackage + relflow_1_0_5 = callPackage ( { buildRebar3, fetchHex }: buildRebar3 { name = "relflow"; - version = "1.0.4"; + version = "1.0.5"; src = fetchHex { pkg = "relflow"; - version = "1.0.4"; + version = "1.0.5"; sha256 = - "e6d9652ed7511aea18fa012d5abc19301acd8cbe81a44a159391086a5be12e1f"; + "7a991b7e5e390f1cdb16dd0cbb9327bd70ce785e6cebcb6ea25a6693fd836b18"; }; meta = { @@ -35225,7 +40629,7 @@ let } ) {}; - relflow = relflow_1_0_4; + relflow = relflow_1_0_5; relief_0_0_1 = callPackage ( @@ -35276,17 +40680,17 @@ let relisa = relisa_0_1_0; - relocker_0_0_6 = callPackage + relocker_0_0_8 = callPackage ( { buildMix, fetchHex, exredis_0_2_3 }: buildMix { name = "relocker"; - version = "0.0.6"; + version = "0.0.8"; src = fetchHex { pkg = "relocker"; - version = "0.0.6"; + version = "0.0.8"; sha256 = - "8aaaa5f7d118b543764005fa7af47a77d9c74d606603c29005b0637ef1c192df"; + "e5678d5fe1795384c672a15a80bf91e3007683e5d22bc523eed634635e89bf4b"; }; beamDeps = [ exredis_0_2_3 ]; @@ -35298,7 +40702,7 @@ let } ) {}; - relocker = relocker_0_0_6; + relocker = relocker_0_0_8; reltool_util_1_5_1 = callPackage ( @@ -35324,31 +40728,31 @@ let reltool_util = reltool_util_1_5_1; - relx_3_17_0 = callPackage + relx_3_18_0 = callPackage ( { buildRebar3, fetchHex, providers_1_6_0, getopt_0_8_2, - erlware_commons_0_18_0, + erlware_commons_0_19_0, cf_0_2_1, bbmustache_1_0_4 }: buildRebar3 { name = "relx"; - version = "3.17.0"; + version = "3.18.0"; src = fetchHex { pkg = "relx"; - version = "3.17.0"; + version = "3.18.0"; sha256 = - "c22f3d8400394787cb67191dea4de1acccf1563f6cd2f1934bf2a13a525c5ef6"; + "e76e0446b8d1b113f2b7dcc713f032ccdf1dbda33d76edfeb19c2b6b686dcad7"; }; beamDeps = [ providers_1_6_0 getopt_0_8_2 - erlware_commons_0_18_0 + erlware_commons_0_19_0 cf_0_2_1 bbmustache_1_0_4 ]; @@ -35361,32 +40765,32 @@ let } ) {}; - relx = relx_3_17_0; + relx = relx_3_18_0; - relx_3_3_1 = callPackage + relx_3_3_2 = callPackage ( { buildRebar3, fetchHex, providers_1_4_1, getopt_0_8_2, - erlware_commons_0_14_0, + erlware_commons_0_15_0, bbmustache_1_0_3 }: buildRebar3 { name = "relx"; - version = "3.3.1"; + version = "3.3.2"; src = fetchHex { pkg = "relx"; - version = "3.3.1"; + version = "3.3.2"; sha256 = - "782fdce1daccb5dca6b372cdffb979cda3431ac245db5fafe93247f4fdab049b"; + "4c97df0ceb82890b3612b9c30e8d865e3d738fc69186bc94da0f75f619f7195a"; }; beamDeps = [ providers_1_4_1 getopt_0_8_2 - erlware_commons_0_14_0 + erlware_commons_0_15_0 bbmustache_1_0_3 ]; @@ -35538,8 +40942,8 @@ let buildMix, fetchHex, poison_2_1_0, - httpoison_0_8_1, - floki_0_7_1, + httpoison_0_8_2, + floki_0_8_0, feeder_ex_0_0_2 }: buildMix { @@ -35553,8 +40957,8 @@ let }; beamDeps = [ poison_2_1_0 - httpoison_0_8_1 - floki_0_7_1 + httpoison_0_8_2 + floki_0_8_0 feeder_ex_0_0_2 ]; @@ -35603,7 +41007,7 @@ let resin_0_4_1 = callPackage ( - { buildMix, fetchHex, plug_1_1_1 }: + { buildMix, fetchHex, plug_1_1_3 }: buildMix { name = "resin"; version = "0.4.1"; @@ -35613,7 +41017,7 @@ let sha256 = "c6bdfd13e91cbc289df91440e216b91aa590a7dafe59958b0197cedd8cfef792"; }; - beamDeps = [ plug_1_1_1 ]; + beamDeps = [ plug_1_1_3 ]; meta = { description = ''Pour resin in your plug pipeline to add @@ -35655,9 +41059,9 @@ let buildMix, fetchHex, poison_1_5_2, - mock_0_1_1, + mock_0_1_3, inflex_1_4_1, - httpotion_2_1_0 + httpotion_2_2_2 }: buildMix { name = "rest_client"; @@ -35669,7 +41073,7 @@ let "b537f9bc91fbf09ecb6c5890c0e5a01f20de869bc804f730688f61d6acd96cf8"; }; beamDeps = [ - poison_1_5_2 mock_0_1_1 inflex_1_4_1 httpotion_2_1_0 + poison_1_5_2 mock_0_1_3 inflex_1_4_1 httpotion_2_2_2 ]; meta = { @@ -35684,17 +41088,17 @@ let rest_client = rest_client_0_0_1; - rethinkdb_0_3_2 = callPackage + rethinkdb_0_4_0 = callPackage ( { buildMix, fetchHex, poison_1_0_3, connection_1_0_2 }: buildMix { name = "rethinkdb"; - version = "0.3.2"; + version = "0.4.0"; src = fetchHex { pkg = "rethinkdb"; - version = "0.3.2"; + version = "0.4.0"; sha256 = - "b97da3f1281575ac4e24d1cc0ce20a7f5a2e05bc7d212e4e58e0c9f2411a1c8a"; + "ca2d13a226987edf6943f7af968510b1836becc3c14b42667f82cd57bbcd4e8f"; }; beamDeps = [ poison_1_0_3 connection_1_0_2 ]; @@ -35706,7 +41110,31 @@ let } ) {}; - rethinkdb = rethinkdb_0_3_2; + rethinkdb = rethinkdb_0_4_0; + + rethinkdb_changefeed_0_0_1 = callPackage + ( + { buildMix, fetchHex, rethinkdb_0_4_0, connection_1_0_2 }: + buildMix { + name = "rethinkdb_changefeed"; + version = "0.0.1"; + src = fetchHex { + pkg = "rethinkdb_changefeed"; + version = "0.0.1"; + sha256 = + "c895db0d57d55c7c7ab4aeb6ce167c82de1d0f7a884c93d4ea0cdea16df11b82"; + }; + beamDeps = [ rethinkdb_0_4_0 connection_1_0_2 ]; + + meta = { + description = ''RethinkDB Supervised Changefeeds''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/hamiltop/rethinkdb_changefeed"; + }; + } + ) {}; + + rethinkdb_changefeed = rethinkdb_changefeed_0_0_1; reup_0_1_0 = callPackage ( @@ -35764,7 +41192,7 @@ let revision_plate_ex_0_1_0 = callPackage ( - { buildMix, fetchHex, plug_1_1_1, cowboy_1_0_4 }: + { buildMix, fetchHex, plug_1_1_3, cowboy_1_0_4 }: buildMix { name = "revision_plate_ex"; version = "0.1.0"; @@ -35774,7 +41202,7 @@ let sha256 = "6c88a514ae5b36999fd52c01cc3ea746f8ba9c7900b47f4758a65c197b8aed71"; }; - beamDeps = [ plug_1_1_1 cowboy_1_0_4 ]; + beamDeps = [ plug_1_1_3 cowboy_1_0_4 ]; meta = { longDescription = ''Plug application and middleware that serves @@ -35787,17 +41215,17 @@ let revision_plate_ex = revision_plate_ex_0_1_0; - rfc3339_0_2_0 = callPackage + rfc3339_0_9_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildMix, fetchHex }: + buildMix { name = "rfc3339"; - version = "0.2.0"; + version = "0.9.0"; src = fetchHex { pkg = "rfc3339"; - version = "0.2.0"; + version = "0.9.0"; sha256 = - "992ebf382d6982f2fff48928394d4d50d413b7a4abe576ba518b92c82ac2eb99"; + "182314de35c9f4180b22eb5f22916d8d7a799c1109a060c752970273a9332ad6"; }; meta = { @@ -35808,7 +41236,7 @@ let } ) {}; - rfc3339 = rfc3339_0_2_0; + rfc3339 = rfc3339_0_9_0; riak_1_0_0 = callPackage ( @@ -35836,6 +41264,63 @@ let riak = riak_1_0_0; + riak_core_ng_2_2_3 = callPackage + ( + { + buildRebar3, + fetchHex, + riak_sysmon_2_1_2, + riak_ensemble_2_1_3, + pbkdf2_2_0_0, + lager_3_0_2, + goldrush_0_1_7, + exometer_core_1_0_0, + erocksdb_0_4_1, + eleveldb_2_1_3, + edown_0_7_0, + cuttlefish_2_0_7, + clique_3_0_1, + chash_0_1_1, + basho_stats_1_0_3, + basho_poolboy_0_8_1_p3 + }: + buildRebar3 { + name = "riak_core_ng"; + version = "2.2.3"; + src = fetchHex { + pkg = "riak_core_ng"; + version = "2.2.3"; + sha256 = + "41cc44bf8e0c6a18858d9a5327bc0098526d6c5d272b3e73bf3ff19019b53cd3"; + }; + + beamDeps = [ + riak_sysmon_2_1_2 + riak_ensemble_2_1_3 + pbkdf2_2_0_0 + lager_3_0_2 + goldrush_0_1_7 + exometer_core_1_0_0 + erocksdb_0_4_1 + eleveldb_2_1_3 + edown_0_7_0 + cuttlefish_2_0_7 + clique_3_0_1 + chash_0_1_1 + basho_stats_1_0_3 + basho_poolboy_0_8_1_p3 + ]; + + meta = { + description = ''Riak Core''; + license = stdenv.lib.licenses.apsl20; + homepage = "https://github.com/project-fifo/riak_core"; + }; + } + ) {}; + + riak_core_ng = riak_core_ng_2_2_3; + riak_dt_2_1_1 = callPackage ( { buildRebar3, fetchHex }: @@ -35886,8 +41371,8 @@ let riak_pb_2_1_0 = callPackage ( - { buildRebar3, fetchHex, protobuffs_0_8_2, hamcrest_0_1_1 }: - buildRebar3 { + { buildErlangMk, fetchHex, protobuffs_0_8_2, hamcrest_0_1_1 }: + buildErlangMk { name = "riak_pb"; version = "2.1.0"; src = fetchHex { @@ -35896,7 +41381,6 @@ let sha256 = "76309b9b831d276bf9abf92362183030ed63910a2e153f1f8a389e97dec6c287"; }; - beamDeps = [ protobuffs_0_8_2 hamcrest_0_1_1 ]; meta = { @@ -35936,8 +41420,8 @@ let riakc_2_1_1 = callPackage ( - { buildRebar3, fetchHex, riak_pb_2_1_0 }: - buildRebar3 { + { buildErlangMk, fetchHex, riak_pb_2_1_0 }: + buildErlangMk { name = "riakc"; version = "2.1.1"; src = fetchHex { @@ -35946,7 +41430,6 @@ let sha256 = "4f7141c03529d4f1c28c71eafcd797be0a538ba21d5d6923a17a9ca9e64e744e"; }; - beamDeps = [ riak_pb_2_1_0 ]; meta = { @@ -35961,7 +41444,7 @@ let riboflavin_0_0_2 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "riboflavin"; version = "0.0.2"; @@ -35971,7 +41454,7 @@ let sha256 = "cc4ac4c80b6d591deaea136a3d055eba4ead6bbe2fc9b220a4432f160d0ddec6"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''Backblaze B2 client.''; @@ -36010,7 +41493,7 @@ let robotex_0_0_1 = callPackage ( - { buildMix, fetchHex, httpoison_0_8_1, exjsx_3_1_0 }: + { buildMix, fetchHex, httpoison_0_8_2, exjsx_3_1_0 }: buildMix { name = "robotex"; version = "0.0.1"; @@ -36020,7 +41503,7 @@ let sha256 = "ae1c618b20e3847f4c372350bdda3b0dc577e1491310ef97fd5869c4f750533e"; }; - beamDeps = [ httpoison_0_8_1 exjsx_3_1_0 ]; + beamDeps = [ httpoison_0_8_2 exjsx_3_1_0 ]; meta = { description = ''Robotex is a client for the Telegram Bot API.''; @@ -36058,19 +41541,19 @@ let rogger = rogger_0_1_0; - rollbax_0_5_3 = callPackage + rollbax_0_5_4 = callPackage ( - { buildMix, fetchHex, poison_1_0_3, hackney_1_4_8 }: + { buildMix, fetchHex, poison_1_0_3, hackney_1_6_0 }: buildMix { name = "rollbax"; - version = "0.5.3"; + version = "0.5.4"; src = fetchHex { pkg = "rollbax"; - version = "0.5.3"; + version = "0.5.4"; sha256 = - "0f24d041c932043915a14ab4e186bd3f1613bccee30ad251bb79a60533680336"; + "e089f9c2ea51447111c14e2491e0b2d27eaff9efc6f1bfda5edcd64881923197"; }; - beamDeps = [ poison_1_0_3 hackney_1_4_8 ]; + beamDeps = [ poison_1_0_3 hackney_1_6_0 ]; meta = { description = ''Exception tracking and logging from Elixir to @@ -36081,11 +41564,11 @@ let } ) {}; - rollbax = rollbax_0_5_3; + rollbax = rollbax_0_5_4; rollex_0_4_0 = callPackage ( - { buildMix, fetchHex, sfmt_0_12_2 }: + { buildMix, fetchHex, sfmt_0_12_7 }: buildMix { name = "rollex"; version = "0.4.0"; @@ -36095,7 +41578,7 @@ let sha256 = "53410bbd7687ff751b51b9737965bff1ba9c3d0673af65752f4ae3be0de1b44c"; }; - beamDeps = [ sfmt_0_12_2 ]; + beamDeps = [ sfmt_0_12_7 ]; meta = { description = ''Elixir library using a Pratt Parser algorithm to @@ -36419,6 +41902,29 @@ let safetybox = safetybox_0_1_2; + salsa20_0_3_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + salsa20 = salsa20_0_3_0; + saltie_0_3_2 = callPackage ( { buildMix, fetchHex }: @@ -36444,7 +41950,7 @@ let sap_0_0_2 = callPackage ( - { buildMix, fetchHex, plug_1_1_1, control_0_0_4 }: + { buildMix, fetchHex, plug_1_1_3, control_0_0_4 }: buildMix { name = "sap"; version = "0.0.2"; @@ -36454,7 +41960,7 @@ let sha256 = "63f2db3cbbb753eac51177783463fb364dd560745bf5e4e8ba10a237e557903c"; }; - beamDeps = [ plug_1_1_1 control_0_0_4 ]; + beamDeps = [ plug_1_1_3 control_0_0_4 ]; meta = { longDescription = ''Sap is a toolkit for Plug applications to @@ -36566,7 +42072,7 @@ let scaffold_0_0_5 = callPackage ( - { buildMix, fetchHex, gitex_0_1_0, configparser_ex_0_2_0 }: + { buildMix, fetchHex, gitex_0_1_0, configparser_ex_0_2_1 }: buildMix { name = "scaffold"; version = "0.0.5"; @@ -36576,7 +42082,7 @@ let sha256 = "fad499b712a576bc9d0f4842494baf9ec8d4c388f99c14f74654b1dbd158945c"; }; - beamDeps = [ gitex_0_1_0 configparser_ex_0_2_0 ]; + beamDeps = [ gitex_0_1_0 configparser_ex_0_2_1 ]; meta = { description = ''A mix task for creating new projects based on @@ -36643,8 +42149,8 @@ let fetchHex, timex_1_0_0_rc4, parallel_0_0_3, - httpoison_0_8_1, - floki_0_7_1, + httpoison_0_8_2, + floki_0_8_0, codepagex_0_1_2 }: buildMix { @@ -36659,8 +42165,8 @@ let beamDeps = [ timex_1_0_0_rc4 parallel_0_0_3 - httpoison_0_8_1 - floki_0_7_1 + httpoison_0_8_2 + floki_0_8_0 codepagex_0_1_2 ]; @@ -36677,7 +42183,7 @@ let scrivener_1_1_2 = callPackage ( - { buildMix, fetchHex, postgrex_0_11_1, ecto_2_0_0_beta_0 }: + { buildMix, fetchHex, postgrex_0_11_1, ecto_2_0_0_beta_2 }: buildMix { name = "scrivener"; version = "1.1.2"; @@ -36687,7 +42193,7 @@ let sha256 = "9be46bdce0d8179ece431226eb9eddbe13bc158d647a3daee64a49bc26ca9dcf"; }; - beamDeps = [ postgrex_0_11_1 ecto_2_0_0_beta_0 ]; + beamDeps = [ postgrex_0_11_1 ecto_2_0_0_beta_2 ]; meta = { description = ''Paginate your Ecto queries''; @@ -36699,25 +42205,50 @@ let scrivener = scrivener_1_1_2; - scrivener_html_1_0_8 = callPackage + scrivener_headers_1_0_1 = callPackage + ( + { buildMix, fetchHex, scrivener_1_1_2, plug_1_1_3 }: + buildMix { + name = "scrivener_headers"; + version = "1.0.1"; + src = fetchHex { + pkg = "scrivener_headers"; + version = "1.0.1"; + sha256 = + "2b004352dc5f394b33d4414ce9ebf379db7a9c4b1c92130d73a52e0a16efc93f"; + }; + beamDeps = [ scrivener_1_1_2 plug_1_1_3 ]; + + meta = { + description = ''Helpers for paginating API responses with + Scrivener and HTTP headers''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/doomspork/scrivener_headers"; + }; + } + ) {}; + + scrivener_headers = scrivener_headers_1_0_1; + + scrivener_html_1_0_9 = callPackage ( { buildMix, fetchHex, scrivener_1_1_2, - phoenix_html_2_5_0, + phoenix_html_2_5_1, phoenix_1_1_4 }: buildMix { name = "scrivener_html"; - version = "1.0.8"; + version = "1.0.9"; src = fetchHex { pkg = "scrivener_html"; - version = "1.0.8"; + version = "1.0.9"; sha256 = - "1bea661f9940acae0ef28949c35e61dd1d314d0ac93c333ed85c7a37593a6406"; + "e65645698e35463e1f0f553f76bf24d47a905870837b7c7544220d3e71c3a23b"; }; - beamDeps = [ scrivener_1_1_2 phoenix_html_2_5_0 phoenix_1_1_4 ]; + beamDeps = [ scrivener_1_1_2 phoenix_html_2_5_1 phoenix_1_1_4 ]; meta = { description = ''HTML helpers for Scrivener''; @@ -36727,11 +42258,89 @@ let } ) {}; - scrivener_html = scrivener_html_1_0_8; + scrivener_html = scrivener_html_1_0_9; + + seat_json_0_0_18 = callPackage + ( + { buildMix, 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''; + + }; + } + ) {}; + + seat_json = seat_json_0_0_18; + + sec_company_filings_rss_feed_parser_0_0_2 = callPackage + ( + { buildMix, fetchHex, floki_0_7_2 }: + buildMix { + name = "sec_company_filings_rss_feed_parser"; + version = "0.0.2"; + src = fetchHex { + pkg = "sec_company_filings_rss_feed_parser"; + version = "0.0.2"; + sha256 = + "b9c07c900a0afd5d8b4df68d4673d6fbb30ff50fe93579bab5133b748dde90a2"; + }; + beamDeps = [ floki_0_7_2 ]; + + meta = { + longDescription = ''XML Parser for a Company`s SEC Filings Feed + An example of such a feed can be found here: + https://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=0001418091&CIK=0001418091&type=&dateb=&owner=exclude&start=0&count=40&output=atom''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/vikram7/sec_company_filings_rss_feed_parser"; + }; + } + ) {}; + + sec_company_filings_rss_feed_parser = + sec_company_filings_rss_feed_parser_0_0_2; + + sec_recent_filings_rss_feed_parser_0_0_3 = callPackage + ( + { buildMix, fetchHex, floki_0_7_2 }: + buildMix { + name = "sec_recent_filings_rss_feed_parser"; + version = "0.0.3"; + src = fetchHex { + pkg = "sec_recent_filings_rss_feed_parser"; + version = "0.0.3"; + sha256 = + "e58bc230abd16e972fc49e25db63afd5d2b7aa5b03c9c2d31f03bbd311ec7cee"; + }; + beamDeps = [ floki_0_7_2 ]; + + meta = { + longDescription = ''XML Parser for the SEC`s Latest Filings Feed + An example of such a feed can be found here: + https://www.sec.gov/cgi-bin/browse-edgar?action=getcurrent&CIK=&type=10-K&company=&dateb=&owner=include&start=0&count=40&output=atom''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/vikram7/sec_latest_filings_rss_feed_parser"; + }; + } + ) {}; + + sec_recent_filings_rss_feed_parser = + sec_recent_filings_rss_feed_parser_0_0_3; secure_headers_0_0_1 = callPackage ( - { buildMix, fetchHex, plug_1_1_1, pipe_0_0_2 }: + { buildMix, fetchHex, plug_1_1_3, pipe_0_0_2 }: buildMix { name = "secure_headers"; version = "0.0.1"; @@ -36741,7 +42350,7 @@ let sha256 = "df5ffa08c91a270da9a167edac6181c87a8467e7c98d65651bd6b1c928e75cb1"; }; - beamDeps = [ plug_1_1_1 pipe_0_0_2 ]; + beamDeps = [ plug_1_1_3 pipe_0_0_2 ]; meta = { description = ''HTTP Security Headers for Phoenix or Plug''; @@ -36753,19 +42362,19 @@ let secure_headers = secure_headers_0_0_1; - secure_password_0_3_1 = callPackage + secure_password_0_4_0 = callPackage ( - { buildMix, fetchHex, ecto_2_0_0_beta_0, comeonin_2_1_1 }: + { buildMix, fetchHex, ecto_0_2_7, comeonin_2_3_0 }: buildMix { name = "secure_password"; - version = "0.3.1"; + version = "0.4.0"; src = fetchHex { pkg = "secure_password"; - version = "0.3.1"; + version = "0.4.0"; sha256 = - "04d91c55486177940d480e802f28f8ee4b5ac6590ed1e0a3ab16603d39c35673"; + "b4f0ffe0bbac3e629356fa508438c23b6a99f6aac17a6b1f6314250e2c5a9a68"; }; - beamDeps = [ ecto_2_0_0_beta_0 comeonin_2_1_1 ]; + beamDeps = [ ecto_0_2_7 comeonin_2_3_0 ]; meta = { description = ''A port of Rails has_secure_password for Ecto @@ -36776,7 +42385,7 @@ let } ) {}; - secure_password = secure_password_0_3_1; + secure_password = secure_password_0_4_0; secure_random_0_1_1 = callPackage ( @@ -36828,7 +42437,7 @@ let segment_0_1_0 = callPackage ( - { buildMix, fetchHex, poison_1_3_1, httpotion_2_1_0 }: + { buildMix, fetchHex, poison_1_3_1, httpotion_2_2_2 }: buildMix { name = "segment"; version = "0.1.0"; @@ -36838,7 +42447,7 @@ let sha256 = "1747bf7a3f8d524d28890ce4499ef30a635f91c826d62e2b95711061faf02423"; }; - beamDeps = [ poison_1_3_1 httpotion_2_1_0 ]; + beamDeps = [ poison_1_3_1 httpotion_2_2_2 ]; meta = { description = ''analytics_elixir''; @@ -36899,6 +42508,32 @@ let semver = semver_0_1_2; + sendgrid_0_0_2 = callPackage + ( + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: + buildMix { + name = "sendgrid"; + version = "0.0.2"; + src = fetchHex { + pkg = "sendgrid"; + version = "0.0.2"; + sha256 = + "b9f27a1ae636688941998174b8595d9a5a4b24b870019f8a0009202f919bf151"; + }; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; + + meta = { + description = ''A wrapper for SendGrid`s API to create composable + emails.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/alexgaribay/sendgrid_elixir +"; + }; + } + ) {}; + + sendgrid = sendgrid_0_0_2; + sentient_0_0_2 = callPackage ( { buildMix, fetchHex, poison_1_5_2 }: @@ -36923,7 +42558,7 @@ let sentient = sentient_0_0_2; - sentinel_0_0_4 = callPackage + sentinel_0_1_0 = callPackage ( { buildMix, @@ -36932,37 +42567,37 @@ let secure_random_0_2_0, postgrex_0_11_1, phoenix_1_1_4, - jose_1_6_1, + jose_1_7_3, guardian_db_0_4_0, - guardian_0_9_1, + guardian_0_10_1, ex_doc_0_11_4, - ecto_2_0_0_beta_0, + ecto_2_0_0_beta_2, earmark_0_2_1, cowboy_1_0_4, - comeonin_2_1_1 + comeonin_2_3_0 }: buildMix { name = "sentinel"; - version = "0.0.4"; + version = "0.1.0"; src = fetchHex { pkg = "sentinel"; - version = "0.0.4"; + version = "0.1.0"; sha256 = - "a97e13dd2c629eea7f5b6f2b818869e6f206a320eb3bfcfc9b315aa08cbeeac4"; + "8fd20d50c00a9a431308e13aac5910e46d44b347e9bb5147f83da25c768bff82"; }; beamDeps = [ ueberauth_0_2_0 secure_random_0_2_0 postgrex_0_11_1 phoenix_1_1_4 - jose_1_6_1 + jose_1_7_3 guardian_db_0_4_0 - guardian_0_9_1 + guardian_0_10_1 ex_doc_0_11_4 - ecto_2_0_0_beta_0 + ecto_2_0_0_beta_2 earmark_0_2_1 cowboy_1_0_4 - comeonin_2_1_1 + comeonin_2_3_0 ]; meta = { @@ -36975,11 +42610,11 @@ let } ) {}; - sentinel = sentinel_0_0_4; + sentinel = sentinel_0_1_0; sentry_0_3_2 = callPackage ( - { buildMix, fetchHex, ecto_2_0_0_beta_0, comeonin_1_6_0 }: + { buildMix, fetchHex, ecto_2_0_0_beta_2, comeonin_1_6_0 }: buildMix { name = "sentry"; version = "0.3.2"; @@ -36989,7 +42624,7 @@ let sha256 = "fd4aa8c6b5d51b85e452a01292fbd437dfbfc5d37515c13f4a9a94441dc89609"; }; - beamDeps = [ ecto_2_0_0_beta_0 comeonin_1_6_0 ]; + beamDeps = [ ecto_2_0_0_beta_2 comeonin_1_6_0 ]; meta = { description = ''Simplified authentication and authorization @@ -37002,10 +42637,64 @@ let sentry = sentry_0_3_2; + sequences_1_1_0 = callPackage + ( + { buildMix, fetchHex }: + buildMix { + name = "sequences"; + version = "1.1.0"; + src = fetchHex { + pkg = "sequences"; + version = "1.1.0"; + sha256 = + "e087e078b8813052213d0812b4fe1d8ffbdbdf7d6379c174b78cfd22b9058fb0"; + }; + + meta = { + longDescription = ''The Sequences module defines multiple methods + that return a Stream of numbers, usually + integers. The different Streams can be tapped in + on-demand, by running any `Enum` function on + them. For efficiency, these sequences are + calculated in a way that re-uses previously + calculated results whenever possible. List of + included sequences: • + Sequences.integers(start, step): a helper + function to create any kind of lazy integer + sequence with a regular step distance. • + Sequences.integers • + Sequences.positive_integers • + Sequences.odd_integers • + Sequences.even_integers • Sequences.zeroes • + Sequences.ones • Sequences.factorials • + Sequences.fibonacci • Sequences.catalan • + Sequences.triangular • Sequences.primes • + Sequences.squareroot_tuple(n): Returns a tuple + with an integer part (single integer number) and + decimal part (digit stream) • + Sequences.squareroot_tuple(n, num_of_digits): + Returns a tuple with an integer part (single + integer number) and decimal part (digit list + with given length) • + Sequences.squareroot_decimals(n): Returns + decimal stream of the decimal expansion of a + square root. • + Sequences.squareroot_expansion/1: Returns a + digit stream of the decimal expansion of a + square root, including the digits of the + integral part at the front.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/Qqwy/elixir-sequences"; + }; + } + ) {}; + + sequences = sequences_1_1_0; + serial_0_1_2 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "serial"; version = "0.1.2"; src = fetchHex { @@ -37074,19 +42763,18 @@ let setup = setup_1_7_0; - sfmt_0_12_2 = callPackage + sfmt_0_12_7 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "sfmt"; - version = "0.12.2"; + version = "0.12.7"; src = fetchHex { pkg = "sfmt"; - version = "0.12.2"; + version = "0.12.7"; sha256 = - "8c541998bedb7d6bfe699ba6ee319f563190ead5a01f30c02ff504c20f4e8e2a"; + "4e295f5053b4a525c00b990cd88b38e492716e7e0c62abf0c626d9fea0ba800e"; }; - compilePorts = true; meta = { description = ''SIMD-oriented Fast Mersenne Twister (SFMT) for @@ -37099,8 +42787,8 @@ let sfmt_0_13_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "sfmt"; version = "0.13.0"; src = fetchHex { @@ -37109,7 +42797,6 @@ let sha256 = "aaacd4824f2b3e439d360bcce6079863da1e7f564014602e9e7815f8740b6358"; }; - compilePorts = true; meta = { description = ''SIMD-oriented Fast Mersenne Twister (SFMT) for @@ -37170,7 +42857,7 @@ let shameless_plug_1_0_0 = callPackage ( - { buildMix, fetchHex, plug_1_1_1 }: + { buildMix, fetchHex, plug_1_1_3 }: buildMix { name = "shameless_plug"; version = "1.0.0"; @@ -37180,7 +42867,7 @@ let sha256 = "65c8af34d1853e85c8412d6ca15fd39354668c09c124cbc8e35cffea59d3a617"; }; - beamDeps = [ plug_1_1_1 ]; + beamDeps = [ plug_1_1_3 ]; meta = { description = ''A novelty Plug to remove the word "shame" from @@ -37243,8 +42930,8 @@ let shotgun_0_2_2 = callPackage ( - { buildRebar3, fetchHex, gun_1_0_0_pre_1 }: - buildRebar3 { + { buildErlangMk, fetchHex, gun_1_0_0_pre_1 }: + buildErlangMk { name = "shotgun"; version = "0.2.2"; src = fetchHex { @@ -37253,7 +42940,6 @@ let sha256 = "d2993953cff0c82eb47744206ae171a141deeff84539fe2f58068e3909ae066c"; }; - beamDeps = [ gun_1_0_0_pre_1 ]; meta = { @@ -37266,8 +42952,8 @@ let shotgun_0_2_3 = callPackage ( - { buildRebar3, fetchHex, gun_1_0_0_pre_1, cowlib_1_0_2 }: - buildRebar3 { + { buildErlangMk, fetchHex, gun_1_0_0_pre_1, cowlib_1_0_2 }: + buildErlangMk { name = "shotgun"; version = "0.2.3"; src = fetchHex { @@ -37276,7 +42962,6 @@ let sha256 = "7b40dcf0faebf698fea541db5f6338f555d0c9c828493e9953d1748d9e5280b5"; }; - beamDeps = [ gun_1_0_0_pre_1 cowlib_1_0_2 ]; meta = { @@ -37396,6 +43081,29 @@ let sidejob = sidejob_2_0_0; + sideshow_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + sideshow = sideshow_0_0_1; + sidetask_1_1_0 = callPackage ( { buildMix, fetchHex, sidejob_2_0_0 }: @@ -37429,28 +43137,6 @@ let sidetask = sidetask_1_1_0; - signaturex_0_0_8 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "signaturex"; - version = "0.0.8"; - src = fetchHex { - pkg = "signaturex"; - version = "0.0.8"; - sha256 = - "5897373a265e41245a251d828e4782457f129d5c49179a29079ff86139beeb0e"; - }; - - meta = { - description = ''Simple key/secret based authentication for - APIs''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/edgurgel/signaturex"; - }; - } - ) {}; - signaturex_1_0_1 = callPackage ( { buildMix, fetchHex }: @@ -37550,7 +43236,7 @@ let simple_format_0_1_0 = callPackage ( - { buildMix, fetchHex, phoenix_html_2_5_0 }: + { buildMix, fetchHex, phoenix_html_2_5_1 }: buildMix { name = "simple_format"; version = "0.1.0"; @@ -37560,7 +43246,7 @@ let sha256 = "747cc74f743f89bcced219282f8639743f679b65183defecc7721f46e31dfcd0"; }; - beamDeps = [ phoenix_html_2_5_0 ]; + beamDeps = [ phoenix_html_2_5_1 ]; meta = { description = ''Rail`s simple_format helper for Phoenix.HTML''; @@ -37602,11 +43288,11 @@ let { buildMix, fetchHex, - timex_1_0_1, + timex_1_0_2, sweet_xml_0_6_1, poison_1_5_2, ibrowse_4_2_2, - httpotion_2_2_0 + httpotion_2_2_2 }: buildMix { name = "simplex"; @@ -37618,11 +43304,11 @@ let "43dfdc62aa2c4919464615b5acc4f03b028b3b9875fa72c128563e7d794ba2a2"; }; beamDeps = [ - timex_1_0_1 + timex_1_0_2 sweet_xml_0_6_1 poison_1_5_2 ibrowse_4_2_2 - httpotion_2_2_0 + httpotion_2_2_2 ]; meta = { @@ -37636,10 +43322,60 @@ let simplex = simplex_0_4_0; - siphash_3_0_0 = callPackage + simplify_0_2_0 = callPackage + ( + { buildMix, fetchHex, poison_2_1_0, geo_1_0_1, distance_0_1_2 }: + buildMix { + name = "simplify"; + version = "0.2.0"; + src = fetchHex { + pkg = "simplify"; + version = "0.2.0"; + sha256 = + "1b1af67f19e3a6589361665f4ca80e27873107bc9ef579e08fce43e52f62cffd"; + }; + beamDeps = [ poison_2_1_0 geo_1_0_1 distance_0_1_2 ]; + + meta = { + longDescription = ''Implementation of the + Ramer–Douglas–Peucker algorithm for reducing + the number of points used to represent a + curve.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/pkinney/simplify_ex"; + }; + } + ) {}; + + simplify = simplify_0_2_0; + + simpre_0_1_0 = callPackage ( { buildRebar3, 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"; + }; + } + ) {}; + + simpre = simpre_0_1_0; + + siphash_3_0_0 = callPackage + ( + { buildErlangMk, fetchHex }: + buildErlangMk { name = "siphash"; version = "3.0.0"; src = fetchHex { @@ -37648,7 +43384,6 @@ let sha256 = "91b8efc8f3e26713c1bb91a91c9b6a8f6a5f949986622b1d548e8fee1cde7347"; }; - compilePorts = true; meta = { description = ''Elixir implementation of the SipHash hash @@ -37666,9 +43401,9 @@ let { buildMix, fetchHex, - httpoison_0_8_1, + httpoison_0_8_2, html_entities_0_3_0, - floki_0_7_1 + floki_0_8_0 }: buildMix { name = "sips_downloader"; @@ -37679,7 +43414,7 @@ let sha256 = "358d10e61f2d8b03e644194d09f1ca6c9c339bb9c80371eba21576571a857f94"; }; - beamDeps = [ httpoison_0_8_1 html_entities_0_3_0 floki_0_7_1 ]; + beamDeps = [ httpoison_0_8_2 html_entities_0_3_0 floki_0_8_0 ]; meta = { description = ''Automatically download new ElixirSips episodes''; @@ -37715,19 +43450,19 @@ let skills = skills_0_0_1; - skroutz_0_0_1 = callPackage + skroutz_0_1_0 = callPackage ( - { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: buildMix { name = "skroutz"; - version = "0.0.1"; + version = "0.1.0"; src = fetchHex { pkg = "skroutz"; - version = "0.0.1"; + version = "0.1.0"; sha256 = - "08d6703c21e2371e68cae0c559d7a1ff119f767662e2f76a0f3a53551742721b"; + "af54cd490adf503f378f57806b4c12bbd2506fa24f6e4f7c1cbceaf8c86d2b51"; }; - beamDeps = [ poison_2_1_0 httpoison_0_8_1 ]; + beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; meta = { description = ''Elixir library for accessing the Skroutz API''; @@ -37737,7 +43472,7 @@ let } ) {}; - skroutz = skroutz_0_0_1; + skroutz = skroutz_0_1_0; slack_0_3_0 = callPackage ( @@ -37763,7 +43498,7 @@ let slack_0_4_2 = callPackage ( - { buildMix, fetchHex, httpoison_0_8_1, exjsx_3_1_0 }: + { buildMix, fetchHex, httpoison_0_8_2, exjsx_3_1_0 }: buildMix { name = "slack"; version = "0.4.2"; @@ -37773,7 +43508,7 @@ let sha256 = "a32ced7527706b6adaae428eb03836260bdcf560be6ef92662ea6ec1541e687f"; }; - beamDeps = [ httpoison_0_8_1 exjsx_3_1_0 ]; + beamDeps = [ httpoison_0_8_2 exjsx_3_1_0 ]; meta = { description = ''A Slack Real Time Messaging API client.''; @@ -37785,6 +43520,30 @@ let slack = slack_0_4_2; + slack_logger_backend_0_1_3 = callPackage + ( + { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: + buildMix { + name = "slack_logger_backend"; + version = "0.1.3"; + src = fetchHex { + pkg = "slack_logger_backend"; + version = "0.1.3"; + sha256 = + "12e9809e981abb0243f1fe72a4cb331142d9d3ce4425822c28f5b3d51ed7a5fe"; + }; + beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; + + meta = { + description = ''A logger backend for posting errors to Slack.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/craigp/slack_logger_backend"; + }; + } + ) {}; + + slack_logger_backend = slack_logger_backend_0_1_3; + slack_webhook_0_0_2 = callPackage ( { buildMix, fetchHex, httpoison_0_7_5 }: @@ -37813,7 +43572,7 @@ let slacker_0_0_2 = callPackage ( { - buildMix, fetchHex, poison_1_5_2, inflex_1_0_0, httpoison_0_8_1 + buildMix, fetchHex, poison_1_5_2, inflex_1_0_0, httpoison_0_8_2 }: buildMix { name = "slacker"; @@ -37824,7 +43583,7 @@ let sha256 = "4d3a110772e7b273a6d771bf4bc869fd13cb3bb9e99bca8f038e58d384f0ef1b"; }; - beamDeps = [ poison_1_5_2 inflex_1_0_0 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 inflex_1_0_0 httpoison_0_8_2 ]; meta = { description = ''A bot library for the Slack chat service.''; @@ -37838,7 +43597,7 @@ let slackex_0_0_1 = callPackage ( - { buildMix, fetchHex, httpoison_0_8_1, exjsx_3_2_0 }: + { buildMix, fetchHex, httpoison_0_8_2, exjsx_3_2_0 }: buildMix { name = "slackex"; version = "0.0.1"; @@ -37848,7 +43607,7 @@ let sha256 = "bdd1d523cd576ff054ed3eee4efe22eee87ded127054332ca5a3bc1d6a997f33"; }; - beamDeps = [ httpoison_0_8_1 exjsx_3_2_0 ]; + beamDeps = [ httpoison_0_8_2 exjsx_3_2_0 ]; meta = { longDescription = ''A Slack wrapper for Elixir Requires an active @@ -37885,17 +43644,17 @@ let slim_fast = slim_fast_0_10_0; - slime_0_12_1 = callPackage + slime_0_12_2 = callPackage ( { buildMix, fetchHex }: buildMix { name = "slime"; - version = "0.12.1"; + version = "0.12.2"; src = fetchHex { pkg = "slime"; - version = "0.12.1"; + version = "0.12.2"; sha256 = - "0a2f92f2f7523118efadcb20fe54611ddfb65428c6a21b69182fc247e361dc1e"; + "389ed56ef536f25e29a99979ff1a3402ce21a0d40fcc49be93e44dcde11b9633"; }; meta = { @@ -37907,12 +43666,12 @@ let } ) {}; - slime = slime_0_12_1; + slime = slime_0_12_2; slp_0_0_2 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "slp"; version = "0.0.2"; src = fetchHex { @@ -37934,6 +43693,29 @@ let slp = slp_0_0_2; + slugerl_1_0_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "slugerl"; + version = "1.0.0"; + src = fetchHex { + pkg = "slugerl"; + version = "1.0.0"; + sha256 = + "5a06364270afb773b32a7a4e05cf9cb4ccf904faedb2825d7336f3065e4f791b"; + }; + + meta = { + description = ''slugify''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/thraxil/slugerl"; + }; + } + ) {}; + + slugerl = slugerl_1_0_0; + slugger_0_1_0 = callPackage ( { buildMix, fetchHex }: @@ -37961,7 +43743,7 @@ let smex_0_0_1 = callPackage ( - { buildMix, fetchHex, murmur_1_0_0, amqp_0_1_4 }: + { buildMix, fetchHex, murmur_0_2_1, amqp_0_1_4 }: buildMix { name = "smex"; version = "0.0.1"; @@ -37971,7 +43753,7 @@ let sha256 = "3a84a2b3b3f09965bb0c2d57d04ba435b33c47319ee308feb4a182ddd9e69867"; }; - beamDeps = [ murmur_1_0_0 amqp_0_1_4 ]; + beamDeps = [ murmur_0_2_1 amqp_0_1_4 ]; meta = { description = ''An Elixir library for simplifying the sending of @@ -38031,6 +43813,30 @@ let snappy = snappy_1_1_1; + snowflake_client_0_1_1 = callPackage + ( + { buildMix, fetchHex, oauth2_0_6_0 }: + buildMix { + name = "snowflake_client"; + version = "0.1.1"; + src = fetchHex { + pkg = "snowflake_client"; + version = "0.1.1"; + sha256 = + "94b21c7ad47775ef5853399e22ba2f8a91d8e174ca3a1da4e2fea05dfad12459"; + }; + beamDeps = [ oauth2_0_6_0 ]; + + meta = { + description = ''A OAuth 2.0 client for Snowflake.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/IoraHealth/snowflake_client"; + }; + } + ) {}; + + snowflake_client = snowflake_client_0_1_1; + socket_0_2_8 = callPackage ( { buildMix, fetchHex }: @@ -38075,6 +43881,30 @@ let socket = socket_0_3_1; + sonic_0_1_3 = callPackage + ( + { buildMix, fetchHex, poison_2_1_0, hackney_1_6_0 }: + buildMix { + name = "sonic"; + version = "0.1.3"; + src = fetchHex { + pkg = "sonic"; + version = "0.1.3"; + sha256 = + "2bf88f0e86cf04db4b426569153f26fd41f6202aee1e9175e0a242eb5a0a0586"; + }; + beamDeps = [ poison_2_1_0 hackney_1_6_0 ]; + + meta = { + description = ''etcd library and bindings for Elixir.''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/heroiclabs/sonic"; + }; + } + ) {}; + + sonic = sonic_0_1_3; + sorted_set_1_1_0 = callPackage ( { buildMix, fetchHex, red_black_tree_1_2_0 }: @@ -38149,9 +43979,34 @@ let spaced_repetitions = spaced_repetitions_0_0_1; + spacesaving_0_0_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + spacesaving = spacesaving_0_0_3; + sparkpost_0_1_0 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpotion_2_1_0 }: + { buildMix, fetchHex, poison_1_5_2, httpotion_2_2_2 }: buildMix { name = "sparkpost"; version = "0.1.0"; @@ -38161,7 +44016,7 @@ let sha256 = "704fa320132235db00c4b40b6990e63ec3c2581d681d86c0765ef930c88a2694"; }; - beamDeps = [ poison_1_5_2 httpotion_2_1_0 ]; + beamDeps = [ poison_1_5_2 httpotion_2_2_2 ]; meta = { description = ''The official Elixir package for the SparkPost @@ -38176,7 +44031,7 @@ let spawndir_0_1_1 = callPackage ( - { buildMix, fetchHex, exrm_0_15_1 }: + { buildMix, fetchHex, exrm_0_14_2 }: buildMix { name = "spawndir"; version = "0.1.1"; @@ -38186,7 +44041,7 @@ let sha256 = "c407c9eb1f6f8ebb622df28b2f19a34447add6555f87208446a458b60ea9750c"; }; - beamDeps = [ exrm_0_15_1 ]; + beamDeps = [ exrm_0_14_2 ]; meta = { longDescription = ''# SpawnDir Spawns commands from the file @@ -38317,7 +44172,7 @@ let spotify_ex_0_0_4 = callPackage ( { - buildMix, fetchHex, poison_1_5_2, plug_1_1_1, httpoison_0_8_1 + buildMix, fetchHex, poison_1_5_2, plug_1_1_3, httpoison_0_8_2 }: buildMix { name = "spotify_ex"; @@ -38328,7 +44183,7 @@ let sha256 = "f2e8647410096d34d9baecf8d9622896214320641ed72c11c711f9a463e4a961"; }; - beamDeps = [ poison_1_5_2 plug_1_1_1 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 plug_1_1_3 httpoison_0_8_2 ]; meta = { description = ''An Elixir wrapper for Spotify API O-Auth.''; @@ -38340,9 +44195,33 @@ let spotify_ex = spotify_ex_0_0_4; + spout_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + spout = spout_0_0_1; + spreedly_0_1_1 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "spreedly"; version = "0.1.1"; @@ -38352,7 +44231,7 @@ let sha256 = "a8aa76698a4fe95cb4c5cb77be2cfc4e085685570aacb25382fffdca4c7e1a6f"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''A wrapper for the Spreedly API.''; @@ -38364,19 +44243,19 @@ let spreedly = spreedly_0_1_1; - sql_dust_0_1_5 = callPackage + sql_dust_0_3_2 = callPackage ( - { buildMix, fetchHex, inflex_1_5_0, ecto_2_0_0_beta_0 }: + { buildMix, fetchHex, inflex_1_5_0, ecto_2_0_0_beta_2 }: buildMix { name = "sql_dust"; - version = "0.1.5"; + version = "0.3.2"; src = fetchHex { pkg = "sql_dust"; - version = "0.1.5"; + version = "0.3.2"; sha256 = - "8b8ec15b23c964e74e020cc7bd9ff9456d302ceb173465ebd0cc04c10bc3775d"; + "58282299f10ac2cd2684f043052e0186979cf886d2a9e788d0555d9ef19c7bad"; }; - beamDeps = [ inflex_1_5_0 ecto_2_0_0_beta_0 ]; + beamDeps = [ inflex_1_5_0 ecto_2_0_0_beta_2 ]; meta = { longDescription = ''Easy. Simple. Powerful. Generate (complex) @@ -38387,7 +44266,7 @@ let } ) {}; - sql_dust = sql_dust_0_1_5; + sql_dust = sql_dust_0_3_2; sqlite3_1_1_5 = callPackage ( @@ -38413,14 +44292,38 @@ let sqlite3 = sqlite3_1_1_5; + sqlite_ecto_0_5_0 = callPackage + ( + { + buildMix, fetchHex, sqlitex_0_8_3, poison_1_5_2, ecto_0_15_0 + }: + buildMix { + name = "sqlite_ecto"; + version = "0.5.0"; + src = fetchHex { + pkg = "sqlite_ecto"; + version = "0.5.0"; + sha256 = + "cb26ae002ee444aa9b12d680ec11570204ba128631ccd7d2d6d3aafcd521880e"; + }; + beamDeps = [ sqlitex_0_8_3 poison_1_5_2 ecto_0_15_0 ]; + + meta = { + description = ''SQLite3 adapter for Ecto''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/jazzyb/sqlite_ecto"; + }; + } + ) {}; + sqlite_ecto_1_1_0 = callPackage ( { buildMix, fetchHex, - sqlitex_0_8_2, + sqlitex_0_8_3, poison_1_5_2, - ecto_2_0_0_beta_0 + ecto_2_0_0_beta_2 }: buildMix { name = "sqlite_ecto"; @@ -38431,7 +44334,7 @@ let sha256 = "88951b424e909d8047f0d03c13418c321df9e94560ac30241d8b1f7e48f49201"; }; - beamDeps = [ sqlitex_0_8_2 poison_1_5_2 ecto_2_0_0_beta_0 ]; + beamDeps = [ sqlitex_0_8_3 poison_1_5_2 ecto_2_0_0_beta_2 ]; meta = { description = ''SQLite3 adapter for Ecto''; @@ -38443,19 +44346,19 @@ let sqlite_ecto = sqlite_ecto_1_1_0; - sqlitex_0_8_2 = callPackage + sqlitex_0_8_3 = callPackage ( { buildMix, fetchHex, pipe_0_0_2, esqlite_0_2_2, decimal_1_1_1 }: buildMix { name = "sqlitex"; - version = "0.8.2"; + version = "0.8.3"; src = fetchHex { pkg = "sqlitex"; - version = "0.8.2"; + version = "0.8.3"; sha256 = - "8485c24f945ce9c04ad894aff14cb965dcae3e93e08fbdca51a18ea85e9719df"; + "44daaeb135178165d0a6cd6754e4af05e56e5d2943c0b1108df7df718745ec0f"; }; beamDeps = [ pipe_0_0_2 esqlite_0_2_2 decimal_1_1_1 ]; @@ -38467,7 +44370,29 @@ let } ) {}; - sqlitex = sqlitex_0_8_2; + sqlitex_1_0_0 = callPackage + ( + { buildMix, fetchHex, esqlite_0_2_2, decimal_1_1_1 }: + buildMix { + name = "sqlitex"; + version = "1.0.0"; + src = fetchHex { + pkg = "sqlitex"; + version = "1.0.0"; + sha256 = + "cbd7310e900841aa2dc6071b497330e730de1cd9618003006e0af48afb24d5f8"; + }; + beamDeps = [ esqlite_0_2_2 decimal_1_1_1 ]; + + meta = { + description = ''A thin Elixir wrapper around esqlite''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/mmmries/sqlitex"; + }; + } + ) {}; + + sqlitex = sqlitex_1_0_0; ssdb_0_3_0 = callPackage ( @@ -38559,32 +44484,33 @@ let sshex = sshex_2_1_0; - ssl_verify_hostname_1_0_1 = callPackage + ssl_verify_fun_1_1_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "ssl_verify_hostname"; - version = "1.0.1"; + { buildErlangMk, fetchHex }: + buildErlangMk { + name = "ssl_verify_fun"; + version = "1.1.0"; src = fetchHex { - pkg = "ssl_verify_hostname"; - version = "1.0.1"; + pkg = "ssl_verify_fun"; + version = "1.1.0"; sha256 = - "630baab6b1dd68f516b779353b368e4c605f1a022f3e544833b1667fdd321493"; + "6c0e0d857fdb031ba67b0a791202bee116bea2313db7b649839000847591ba1e"; }; meta = { - description = ''Hostname verification library for Erlang''; + description = ''SSL verification functions for Erlang''; license = stdenv.lib.licenses.mit; - homepage = - "https://github.com/deadtrickster/ssl_verify_hostname.erl"; + homepage = "https://github.com/deadtrickster/ssl_verify_fun.erl"; }; } ) {}; + ssl_verify_fun = ssl_verify_fun_1_1_0; + ssl_verify_hostname_1_0_5 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "ssl_verify_hostname"; version = "1.0.5"; src = fetchHex { @@ -38605,8 +44531,8 @@ let ssl_verify_hostname_1_0_6 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "ssl_verify_hostname"; version = "1.0.6"; src = fetchHex { @@ -38672,6 +44598,29 @@ let stash = stash_1_0_0; + stathat_0_0_3 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + stathat = stathat_0_0_3; + statistics_0_4_0 = callPackage ( { buildMix, fetchHex }: @@ -38752,19 +44701,19 @@ let std_json_io = std_json_io_0_1_0; - steamex_0_0_3 = callPackage + steamex_0_0_5 = callPackage ( - { buildMix, fetchHex, sweet_xml_0_4_0, httpoison_0_7_5 }: + { buildMix, fetchHex, sweet_xml_0_6_1, httpoison_0_8_2 }: buildMix { name = "steamex"; - version = "0.0.3"; + version = "0.0.5"; src = fetchHex { pkg = "steamex"; - version = "0.0.3"; + version = "0.0.5"; sha256 = - "4e9a5da88acb54897593dadc3e8a4cbdae86a31e7662888105463d20c0430dd8"; + "4a290c432c0480cf372fece76cc4f09e231261fda64ef5027e8855e16aa5a2f6"; }; - beamDeps = [ sweet_xml_0_4_0 httpoison_0_7_5 ]; + beamDeps = [ sweet_xml_0_6_1 httpoison_0_8_2 ]; meta = { description = ''Steam API and Auth (with Phoenix/Plug @@ -38775,7 +44724,7 @@ let } ) {}; - steamex = steamex_0_0_3; + steamex = steamex_0_0_5; stemex_0_1_1 = callPackage ( @@ -38805,6 +44754,29 @@ let stemex = stemex_0_1_1; + stillir_1_0_0 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + stillir = stillir_1_0_0; + stmd_0_0_2 = callPackage ( { buildMix, fetchHex, ex_doc_0_11_4, earmark_0_2_1 }: @@ -38831,7 +44803,7 @@ let stockastic_0_0_2 = callPackage ( - { buildMix, fetchHex, httpoison_0_8_1, exjsx_3_2_0 }: + { buildMix, fetchHex, httpoison_0_8_2, exjsx_3_2_0 }: buildMix { name = "stockastic"; version = "0.0.2"; @@ -38841,7 +44813,7 @@ let sha256 = "f180915a21d4aa4a64f660696b77c5788334d4bae2639a58814565af0d75ca56"; }; - beamDeps = [ httpoison_0_8_1 exjsx_3_2_0 ]; + beamDeps = [ httpoison_0_8_2 exjsx_3_2_0 ]; meta = { description = ''Simple Elixir wrapper for the Stockfighter API''; @@ -38855,7 +44827,7 @@ let stockfighter_0_0_1 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "stockfighter"; version = "0.0.1"; @@ -38865,7 +44837,7 @@ let sha256 = "d72726cf055068e2b62ef9091ec17ab9292b60bc7f4a7306c17cad6d022a3bd7"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''a simple wrapper of stockfighter http api''; @@ -38879,7 +44851,7 @@ let stopwatch_0_0_7 = callPackage ( - { buildMix, fetchHex, timex_1_0_1 }: + { buildMix, fetchHex, timex_1_0_2 }: buildMix { name = "stopwatch"; version = "0.0.7"; @@ -38889,7 +44861,7 @@ let sha256 = "de20ad70ca3b0f70d0a2000858e80c0afd4163101e18d0428ee62a58e7c8360a"; }; - beamDeps = [ timex_1_0_1 ]; + beamDeps = [ timex_1_0_2 ]; meta = { description = ''The stopwatch provides an easy api to measure @@ -38902,6 +44874,30 @@ let stopwatch = stopwatch_0_0_7; + strava_0_0_1 = callPackage + ( + { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: + buildMix { + name = "strava"; + version = "0.0.1"; + src = fetchHex { + pkg = "strava"; + version = "0.0.1"; + sha256 = + "f0b50d8c65fe769c08fd97afc4e3039eb1d3d2eb324adf8a52aaaa93685723e2"; + }; + beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; + + meta = { + description = ''Elixir wrapper for the Strava API (V3)''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/slashdotdash/strava"; + }; + } + ) {}; + + strava = strava_0_0_1; + stream_runner_1_1_0 = callPackage ( { buildMix, fetchHex }: @@ -38994,17 +44990,17 @@ let strict_comparison = strict_comparison_0_0_1; - stringprep_1_0_2 = callPackage + stringprep_1_0_3 = callPackage ( { buildRebar3, fetchHex, p1_utils_1_0_3 }: buildRebar3 { name = "stringprep"; - version = "1.0.2"; + version = "1.0.3"; src = fetchHex { pkg = "stringprep"; - version = "1.0.2"; + version = "1.0.3"; sha256 = - "6990e6d9d9bc241a77ceb54d4afd7332319710dbebdae8f4f0c627186194c520"; + "140c8300f29e33649580d9d2416f6684b00f386f690c76cc275b7ee43c735074"; }; compilePorts = true; beamDeps = [ p1_utils_1_0_3 ]; @@ -39017,11 +45013,11 @@ let } ) {}; - stringprep = stringprep_1_0_2; + stringprep = stringprep_1_0_3; stripe_0_0_1 = callPackage ( - { buildMix, fetchHex, jazz_0_2_1, httpotion_1_0_0 }: + { buildMix, fetchHex, jazz_0_2_1, httpotion_2_2_2 }: buildMix { name = "stripe"; version = "0.0.1"; @@ -39031,7 +45027,7 @@ let sha256 = "99f9920ce562109abb70a1998a4f6b5bcd07f5063237cf28dd81387163df3f02"; }; - beamDeps = [ jazz_0_2_1 httpotion_1_0_0 ]; + beamDeps = [ jazz_0_2_1 httpotion_2_2_2 ]; meta = { longDescription = ''Wrapper around Stripe`s API. Full @@ -39072,31 +45068,21 @@ let stripex = stripex_0_1_0; - stripity_stripe_1_2_0 = callPackage + stripity_stripe_1_4_0 = callPackage ( { - buildMix, - fetchHex, - poison_1_5_2, - httpoison_0_8_1, - hackney_1_4_8, - earmark_0_2_1 + buildMix, fetchHex, poison_2_0_1, httpoison_0_8_2, hackney_1_4_10 }: buildMix { name = "stripity_stripe"; - version = "1.2.0"; + version = "1.4.0"; src = fetchHex { pkg = "stripity_stripe"; - version = "1.2.0"; + version = "1.4.0"; sha256 = - "25cb8c92ce83354a8d160514f183167a6c67ec3f1221e925cff3750da0fe4cd6"; + "1ba06bf31efd899c03c09f1b6faa3ca5da3f48571202c8999f8ea6e5ca47c02f"; }; - beamDeps = [ - poison_1_5_2 - httpoison_0_8_1 - hackney_1_4_8 - earmark_0_2_1 - ]; + beamDeps = [ poison_2_0_1 httpoison_0_8_2 hackney_1_4_10 ]; meta = { description = ''A Stripe Library for Elixir''; @@ -39106,19 +45092,19 @@ let } ) {}; - stripity_stripe = stripity_stripe_1_2_0; + stripity_stripe = stripity_stripe_1_4_0; - struct_fields_0_2_0 = callPackage + struct_fields_0_3_0 = callPackage ( { buildMix, fetchHex }: buildMix { name = "struct_fields"; - version = "0.2.0"; + version = "0.3.0"; src = fetchHex { pkg = "struct_fields"; - version = "0.2.0"; + version = "0.3.0"; sha256 = - "245be58f06535a05247b6539e2640eb649c25eb896010452f2ee43b5e2604b72"; + "d0ec469ccb59d2207a94cb8e3d3ce9b8bf09f239695e33a0e2447e2a1ff2178b"; }; meta = { @@ -39130,7 +45116,7 @@ let } ) {}; - struct_fields = struct_fields_0_2_0; + struct_fields = struct_fields_0_3_0; structurez_0_0_1 = callPackage ( @@ -39189,9 +45175,9 @@ let postgrex_0_11_1, poison_1_5_2, plugs_0_1_0, - plug_1_1_1, + plug_1_1_3, http_router_0_0_8, - ecto_2_0_0_beta_0, + ecto_2_0_0_beta_2, cowboy_1_0_4 }: buildMix { @@ -39208,9 +45194,9 @@ let postgrex_0_11_1 poison_1_5_2 plugs_0_1_0 - plug_1_1_1 + plug_1_1_3 http_router_0_0_8 - ecto_2_0_0_beta_0 + ecto_2_0_0_beta_2 cowboy_1_0_4 ]; @@ -39324,6 +45310,30 @@ let swaggerdoc = swaggerdoc_0_0_1; + swapi_1_0_0 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_2 }: + buildMix { + name = "swapi"; + version = "1.0.0"; + src = fetchHex { + pkg = "swapi"; + version = "1.0.0"; + sha256 = + "55b40ddd97d632b027463aefccb8d6fa9ffa77f224a25af5565bbaecff5c7a3c"; + }; + beamDeps = [ httpoison_0_8_2 ]; + + meta = { + description = ''An Elixir wrapper for the Star Wars API.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/twhitacre/swapi.ex"; + }; + } + ) {}; + + swapi = swapi_1_0_0; + sweet_xml_0_4_0 = callPackage ( { buildMix, fetchHex }: @@ -39425,6 +45435,71 @@ let switchboard = switchboard_0_3_2; + swoosh_0_1_0 = callPackage + ( + { + buildMix, + fetchHex, + poison_2_1_0, + plug_1_1_3, + httpoison_0_8_2, + gen_smtp_0_9_0, + cowboy_1_0_4 + }: + buildMix { + name = "swoosh"; + version = "0.1.0"; + src = fetchHex { + pkg = "swoosh"; + version = "0.1.0"; + sha256 = + "46488cbd7d158e4907869d7b097d7663d608405021c43aeb6a51a6c70cb7ee3b"; + }; + beamDeps = [ + poison_2_1_0 + plug_1_1_3 + httpoison_0_8_2 + gen_smtp_0_9_0 + cowboy_1_0_4 + ]; + + meta = { + longDescription = ''Compose, deliver and test your emails easily + in Elixir. Supports SMTP, Sendgrid, Mandrill, + Postmark and Mailgun out of the box. Works great + with Phoenix.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/swoosh/swoosh"; + }; + } + ) {}; + + swoosh = swoosh_0_1_0; + + syn_1_2_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + syn = syn_1_2_1; + syn_osc_0_1_0 = callPackage ( { buildMix, fetchHex, osc_0_1_1 }: @@ -39497,6 +45572,31 @@ let syslog = syslog_1_0_2; + system_env_loader_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + system_env_loader = system_env_loader_0_1_0; + table_0_0_4 = callPackage ( { buildMix, fetchHex }: @@ -39589,6 +45689,29 @@ let tabula = tabula_2_0_1; + tachometer_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + tachometer = tachometer_0_1_0; + tagplay_0_1_0 = callPackage ( { buildMix, fetchHex, httpoison_0_7_5, exjsx_3_1_0 }: @@ -39661,32 +45784,32 @@ let tane = tane_0_3_1; - tanegashima_0_0_3 = callPackage + tanegashima_0_0_9 = callPackage ( { buildMix, fetchHex, poison_2_1_0, - httpoison_0_8_1, + httpoison_0_8_2, ex_doc_0_11_4, earmark_0_2_1, - dialyze_0_2_0 + dialyze_0_2_1 }: buildMix { name = "tanegashima"; - version = "0.0.3"; + version = "0.0.9"; src = fetchHex { pkg = "tanegashima"; - version = "0.0.3"; + version = "0.0.9"; sha256 = - "a087f30aa519aae47c1d9d03dfcccef0305e72052d3951b2aa327ca3017ca989"; + "91d0496f57e156a4f5b205ca4743f857cbf7739012b4b5eb704a31d00062cad6"; }; beamDeps = [ poison_2_1_0 - httpoison_0_8_1 + httpoison_0_8_2 ex_doc_0_11_4 earmark_0_2_1 - dialyze_0_2_0 + dialyze_0_2_1 ]; meta = { @@ -39697,11 +45820,11 @@ let } ) {}; - tanegashima = tanegashima_0_0_3; + tanegashima = tanegashima_0_0_9; tanuki_0_2_0 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "tanuki"; version = "0.2.0"; @@ -39711,7 +45834,7 @@ let sha256 = "f499d6bcb80fc29f2d0b68d16d8309cb25589583b1f4d0eb23cbc4fe5afbab8c"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''GitLab API wrapper in Elixir, named after GitLabs @@ -39797,7 +45920,7 @@ let tds_ecto_1_0_2 = callPackage ( { - buildMix, fetchHex, tds_0_5_4, poison_1_5_2, ecto_2_0_0_beta_0 + buildMix, fetchHex, tds_0_5_4, poison_1_5_2, ecto_2_0_0_beta_2 }: buildMix { name = "tds_ecto"; @@ -39808,7 +45931,7 @@ let sha256 = "c592061c97b923fd3f2a7b212eefdd7a35ddb0dac94886b8995ed03b2b9dfd53"; }; - beamDeps = [ tds_0_5_4 poison_1_5_2 ecto_2_0_0_beta_0 ]; + beamDeps = [ tds_0_5_4 poison_1_5_2 ecto_2_0_0_beta_2 ]; meta = { description = ''MSSQL / TDS Adapter for Ecto.''; @@ -39843,6 +45966,56 @@ let tea_crypto = tea_crypto_1_0_0; + teacup_0_3_2 = callPackage + ( + { buildRebar3, 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; + }; + } + ) {}; + + teacup = teacup_0_3_2; + + teacup_nats_0_3_1 = callPackage + ( + { + buildRebar3, 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.mit; + }; + } + ) {}; + + teacup_nats = teacup_nats_0_3_1; + teamcity_exunit_formatter_0_2_0 = callPackage ( { buildMix, fetchHex }: @@ -39893,6 +46066,29 @@ let telebot = telebot_0_1_2; + telehashname_0_0_2 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + telehashname = telehashname_0_0_2; + telephonist_0_1_2 = callPackage ( { buildMix, fetchHex, immortal_0_2_0, ex_twiml_2_1_0 }: @@ -39916,17 +46112,17 @@ let telephonist = telephonist_0_1_2; - temp_0_3_0 = callPackage + temp_0_4_0 = callPackage ( { buildMix, fetchHex }: buildMix { name = "temp"; - version = "0.3.0"; + version = "0.4.0"; src = fetchHex { pkg = "temp"; - version = "0.3.0"; + version = "0.4.0"; sha256 = - "e1d2584bb62453e6bbb6247821909ae2d6a0fa7f59da9e4dc5581c0565d9c38b"; + "1a852035e1c8bb9b33d00d322161689553d412fea783617afbd22112d481ffff"; }; meta = { @@ -39938,7 +46134,7 @@ let } ) {}; - temp = temp_0_3_0; + temp = temp_0_4_0; templates_0_0_5 = callPackage ( @@ -39991,7 +46187,7 @@ let tentabucket_0_0_1 = callPackage ( - { buildMix, fetchHex, httpoison_0_8_1, exjsx_3_2_0 }: + { buildMix, fetchHex, httpoison_0_8_2, exjsx_3_2_0 }: buildMix { name = "tentabucket"; version = "0.0.1"; @@ -40001,7 +46197,7 @@ let sha256 = "5784dad17f973efcc3c4ea7672927095864d58af1f830614e4c8f06c63d4822d"; }; - beamDeps = [ httpoison_0_8_1 exjsx_3_2_0 ]; + beamDeps = [ httpoison_0_8_2 exjsx_3_2_0 ]; meta = { description = ''Simple Bitbucket API client library for Elixir''; @@ -40013,19 +46209,19 @@ let tentabucket = tentabucket_0_0_1; - tentacat_0_3_1 = callPackage + tentacat_0_4_0 = callPackage ( - { buildMix, fetchHex, httpoison_0_8_1, exjsx_3_2_0 }: + { buildMix, fetchHex, httpoison_0_8_2, exjsx_3_2_0 }: buildMix { name = "tentacat"; - version = "0.3.1"; + version = "0.4.0"; src = fetchHex { pkg = "tentacat"; - version = "0.3.1"; + version = "0.4.0"; sha256 = - "fea53526c4d1847bddfc6033cdb9ea7cdbd516e18d6bed25bfcff88b5d2d6551"; + "3fc0ab0b8f218fc3486d00f47d4b71ae70709c4137a8d8d573b44038b4ee43b3"; }; - beamDeps = [ httpoison_0_8_1 exjsx_3_2_0 ]; + beamDeps = [ httpoison_0_8_2 exjsx_3_2_0 ]; meta = { description = ''Simple Elixir wrapper for the GitHub API''; @@ -40035,7 +46231,7 @@ let } ) {}; - tentacat = tentacat_0_3_1; + tentacat = tentacat_0_4_0; term_table_0_0_2 = callPackage ( @@ -40210,6 +46406,68 @@ let theriac = theriac_0_0_1; + thermex_0_0_2 = callPackage + ( + { buildMix, 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''; + + }; + } + ) {}; + + thermex = thermex_0_0_2; + + thesis_0_0_8 = callPackage + ( + { + buildMix, + fetchHex, + plug_1_1_3, + phoenix_html_2_5_1, + phoenix_1_1_4, + html_sanitize_ex_0_1_2, + ecto_2_0_0_beta_2 + }: + buildMix { + name = "thesis"; + version = "0.0.8"; + src = fetchHex { + pkg = "thesis"; + version = "0.0.8"; + sha256 = + "8fc1a3fd06b66c695a270519009903f1d2d5bd586f5061a614c37d7b46df7896"; + }; + beamDeps = [ + plug_1_1_3 + phoenix_html_2_5_1 + phoenix_1_1_4 + html_sanitize_ex_0_1_2 + ecto_2_0_0_beta_2 + ]; + + meta = { + description = ''Thesis is a lightweight bolt-on content editing + system for Phoenix websites.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/infinite_red/thesis"; + }; + } + ) {}; + + thesis = thesis_0_0_8; + thrift_1_2_0 = callPackage ( { buildMix, fetchHex }: @@ -40237,7 +46495,7 @@ let time_distance_0_0_1 = callPackage ( - { buildMix, fetchHex, timex_1_0_1 }: + { buildMix, fetchHex, timex_1_0_2 }: buildMix { name = "time_distance"; version = "0.0.1"; @@ -40247,7 +46505,7 @@ let sha256 = "41ebe658882f2defd2cd472960e5a31b18d7ea2a4520c06907f7f2093d030e58"; }; - beamDeps = [ timex_1_0_1 ]; + beamDeps = [ timex_1_0_2 ]; meta = { longDescription = ''Show the difference between two specified @@ -40261,17 +46519,17 @@ let time_distance = time_distance_0_0_1; - time_seer_0_0_5 = callPackage + time_seer_0_0_6 = callPackage ( { buildMix, fetchHex }: buildMix { name = "time_seer"; - version = "0.0.5"; + version = "0.0.6"; src = fetchHex { pkg = "time_seer"; - version = "0.0.5"; + version = "0.0.6"; sha256 = - "70a70fe4d6032d9a0cc41bfede0ed88e1cad1430de29d7dbb0b942f2d4b8768f"; + "b5cfe4b5126deef913a91463c735c214efdde1cfb57e9303444d1a687fde53f5"; }; meta = { @@ -40286,7 +46544,7 @@ let } ) {}; - time_seer = time_seer_0_0_5; + time_seer = time_seer_0_0_6; timex_0_12_9 = callPackage ( @@ -40410,7 +46668,7 @@ let timex_0_16_2 = callPackage ( - { buildMix, fetchHex, tzdata_0_1_8 }: + { buildMix, fetchHex, tzdata_0_1_201603 }: buildMix { name = "timex"; version = "0.16.2"; @@ -40420,7 +46678,7 @@ let sha256 = "951b740468c5de3495ce750d33c9df313100de75060242fd2dfe308f40706793"; }; - beamDeps = [ tzdata_0_1_8 ]; + beamDeps = [ tzdata_0_1_201603 ]; meta = { longDescription = ''A comprehensive date/time library for Elixir @@ -40471,7 +46729,7 @@ let timex_0_19_5 = callPackage ( - { buildMix, fetchHex, tzdata_0_5_6, combine_0_7_0 }: + { buildMix, fetchHex, tzdata_0_5_7, combine_0_7_0 }: buildMix { name = "timex"; version = "0.19.5"; @@ -40481,7 +46739,7 @@ let sha256 = "be1985ab99a6aebc3672b1d82b27e409c9a7af4658f3cc5900fa8754e159b02c"; }; - beamDeps = [ tzdata_0_5_6 combine_0_7_0 ]; + beamDeps = [ tzdata_0_5_7 combine_0_7_0 ]; meta = { longDescription = ''A comprehensive date/time library for Elixir @@ -40532,7 +46790,7 @@ let timex_1_0_0_rc4 = callPackage ( - { buildMix, fetchHex, tzdata_0_1_8, combine_0_7_0 }: + { buildMix, fetchHex, tzdata_0_1_201603, combine_0_7_0 }: buildMix { name = "timex"; version = "1.0.0-rc4"; @@ -40542,7 +46800,7 @@ let sha256 = "3da1356901fe205455404c83d2ea7804b63ed47e3a2cdb428545e568e05d6885"; }; - beamDeps = [ tzdata_0_1_8 combine_0_7_0 ]; + beamDeps = [ tzdata_0_1_201603 combine_0_7_0 ]; meta = { longDescription = ''A comprehensive date/time library for Elixir @@ -40591,19 +46849,19 @@ let } ) {}; - timex_1_0_1 = callPackage + timex_1_0_2 = callPackage ( - { buildMix, fetchHex, tzdata_0_1_8, combine_0_7_0 }: + { buildMix, fetchHex, tzdata_0_1_201603, combine_0_7_0 }: buildMix { name = "timex"; - version = "1.0.1"; + version = "1.0.2"; src = fetchHex { pkg = "timex"; - version = "1.0.1"; + version = "1.0.2"; sha256 = - "6124f84b38f9ee526df91abca6d14bf503cc014b1f3c86d0d3412192e2b12d07"; + "cbc359d21b5e2e694ab437e614bb4198af5be1031da4969dfd7ddf1b56064c88"; }; - beamDeps = [ tzdata_0_1_8 combine_0_7_0 ]; + beamDeps = [ tzdata_0_1_201603 combine_0_7_0 ]; meta = { longDescription = ''A comprehensive date/time library for Elixir @@ -40652,21 +46910,88 @@ let } ) {}; - timex = timex_1_0_1; - - timex_ecto_0_5_0 = callPackage + timex_2_1_3 = callPackage ( - { buildMix, fetchHex, timex_0_19_5, ecto_2_0_0_beta_0 }: + { + buildMix, + 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"; + }; + } + ) {}; + + timex = timex_2_1_3; + + timex_ecto_1_0_4 = callPackage + ( + { buildMix, fetchHex, timex_2_1_3, ecto_0_2_7 }: buildMix { name = "timex_ecto"; - version = "0.5.0"; + version = "1.0.4"; src = fetchHex { pkg = "timex_ecto"; - version = "0.5.0"; + version = "1.0.4"; sha256 = - "6fe5ffbcfd3abeda54a1ce01206e982d7470c095520694c3cc2637d558e723b0"; + "98818bc66aad2234c78a879b57445ea329dea64d74d8bf67adc331eb4c504a74"; }; - beamDeps = [ timex_0_19_5 ecto_2_0_0_beta_0 ]; + beamDeps = [ timex_2_1_3 ecto_0_2_7 ]; meta = { description = ''A plugin for Ecto and Timex which allows use of @@ -40677,30 +47002,7 @@ let } ) {}; - timex_ecto_0_9_0 = callPackage - ( - { buildMix, fetchHex, timex_1_0_1, ecto_2_0_0_beta_0 }: - buildMix { - name = "timex_ecto"; - version = "0.9.0"; - src = fetchHex { - pkg = "timex_ecto"; - version = "0.9.0"; - sha256 = - "454cbd67b18fa75485369b266c0142a2a5d78bb3d4078cd10dc2ec99f1088232"; - }; - beamDeps = [ timex_1_0_1 ecto_2_0_0_beta_0 ]; - - meta = { - description = ''A plugin for Ecto and Timex which allows use of - Timex types with Ecto''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/bitwalker/timex_ecto"; - }; - } - ) {}; - - timex_ecto = timex_ecto_0_9_0; + timex_ecto = timex_ecto_1_0_4; timex_interval_0_6_0 = callPackage ( @@ -40729,8 +47031,8 @@ let tinymt_0_3_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "tinymt"; version = "0.3.1"; src = fetchHex { @@ -40750,17 +47052,17 @@ let tinymt = tinymt_0_3_1; - tirexs_0_8_0_beta1 = callPackage + tirexs_0_8_0_beta5 = callPackage ( { buildMix, fetchHex, exjsx_3_2_0 }: buildMix { name = "tirexs"; - version = "0.8.0-beta1"; + version = "0.8.0-beta5"; src = fetchHex { pkg = "tirexs"; - version = "0.8.0-beta1"; + version = "0.8.0-beta5"; sha256 = - "3d7187e73f9ac85204b45ecd81a49b607415d2aecfe628d23dfd45baeb9486ee"; + "5aec67541a1361aca21e6849c78755727596a6e93e2ad90d53add537892d399c"; }; beamDeps = [ exjsx_3_2_0 ]; @@ -40773,12 +47075,35 @@ let } ) {}; - tirexs = tirexs_0_8_0_beta1; + tirexs = tirexs_0_8_0_beta5; + + tlv_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + tlv = tlv_0_1_0; tmdb_0_0_6 = callPackage ( { - buildRebar3, fetchHex, poison_1_4_0, httpoison_0_8_1, exjsx_3_1_0 + buildRebar3, fetchHex, poison_1_4_0, httpoison_0_8_2, exjsx_3_1_0 }: buildRebar3 { name = "tmdb"; @@ -40790,7 +47115,7 @@ let "4cbad6ffa556a0eeecb22c3960d47451e918313e5651808439f039403dd38d3a"; }; - beamDeps = [ poison_1_4_0 httpoison_0_8_1 exjsx_3_1_0 ]; + beamDeps = [ poison_1_4_0 httpoison_0_8_2 exjsx_3_1_0 ]; meta = { }; } @@ -40798,17 +47123,17 @@ let tmdb = tmdb_0_0_6; - todo_1_0_1 = callPackage + todo_1_2_0 = callPackage ( { buildMix, fetchHex }: buildMix { name = "todo"; - version = "1.0.1"; + version = "1.2.0"; src = fetchHex { pkg = "todo"; - version = "1.0.1"; + version = "1.2.0"; sha256 = - "40b40fe538ff54d090d2992b107361de7b1a18ef3ad41b69ec2bb5b327e951ba"; + "92b0da31ee335a4caff5bb91950688fc3195c2eb78cc70be80e3b616f2be88bc"; }; meta = { @@ -40819,7 +47144,31 @@ let } ) {}; - todo = todo_1_0_1; + todo = todo_1_2_0; + + togglex_0_2_0 = callPackage + ( + { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: + buildMix { + name = "togglex"; + version = "0.2.0"; + src = fetchHex { + pkg = "togglex"; + version = "0.2.0"; + sha256 = + "725b4299c5aad1c87900e667d6a01c88ba18f8e545283f31d2f726745c174e30"; + }; + beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; + + meta = { + description = ''Simple Elixir wrapper for the Toggl API''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/diacode/togglex"; + }; + } + ) {}; + + togglex = togglex_0_2_0; tomlex_0_0_4 = callPackage ( @@ -40844,17 +47193,17 @@ let tomlex = tomlex_0_0_4; - toniq_1_0_4 = callPackage + toniq_1_0_5 = callPackage ( { buildMix, fetchHex, uuid_1_1_3, exredis_0_2_3 }: buildMix { name = "toniq"; - version = "1.0.4"; + version = "1.0.5"; src = fetchHex { pkg = "toniq"; - version = "1.0.4"; + version = "1.0.5"; sha256 = - "77c88b11b00180a7eacd0a7b722c89d4abf22fae818d50aa955d401f91c07c93"; + "aa67c43131393872d82d53b9a8bf4a3d5b97c52a6588d53aaa61c29828e0664a"; }; beamDeps = [ uuid_1_1_3 exredis_0_2_3 ]; @@ -40869,7 +47218,7 @@ let } ) {}; - toniq = toniq_1_0_4; + toniq = toniq_1_0_5; towel_0_2_1 = callPackage ( @@ -40950,7 +47299,7 @@ let { buildMix, fetchHex, - timex_1_0_1, + timex_1_0_2, exml_0_1_0, exmerl_0_1_1, erlsom_1_2_1, @@ -40966,7 +47315,7 @@ let "42ee5d56b2ec0c55715e7f03a9aacd6d7ce8543519e9ec696335348eb1a24f7c"; }; beamDeps = [ - timex_1_0_1 + timex_1_0_2 exml_0_1_0 exmerl_0_1_1 erlsom_1_2_1 @@ -40983,6 +47332,45 @@ let trackline = trackline_0_0_1; + tractor_0_1_0 = callPackage + ( + { + buildMix, + fetchHex, + postgrex_0_11_1, + phoenix_ecto_3_0_0_beta_2, + phoenix_1_1_4, + gettext_0_10_0, + cowboy_1_0_4 + }: + buildMix { + name = "tractor"; + version = "0.1.0"; + src = fetchHex { + pkg = "tractor"; + version = "0.1.0"; + sha256 = + "f88e92d512b9c696bb250c0caa1bd85f60893bbf855eb34d622e0aae156f3063"; + }; + beamDeps = [ + postgrex_0_11_1 + phoenix_ecto_3_0_0_beta_2 + phoenix_1_1_4 + gettext_0_10_0 + cowboy_1_0_4 + ]; + + meta = { + description = ''A fast and scalable pure Elixir BitTorrent + tracker.''; + license = stdenv.lib.licenses.mpl20; + homepage = "https://github.com/folz/tractor"; + }; + } + ) {}; + + tractor = tractor_0_1_0; + tradie_0_0_1 = callPackage ( { buildMix, fetchHex }: @@ -41011,7 +47399,7 @@ let trailing_format_plug_0_0_4 = callPackage ( - { buildMix, fetchHex, plug_1_1_1, cowboy_1_0_4 }: + { buildMix, fetchHex, plug_1_1_3, cowboy_1_0_4 }: buildMix { name = "trailing_format_plug"; version = "0.0.4"; @@ -41021,7 +47409,7 @@ let sha256 = "16e2485b7069c8e025460d183d4711d9c5bbf46ae532dde859cc6623d12bfc71"; }; - beamDeps = [ plug_1_1_1 cowboy_1_0_4 ]; + beamDeps = [ plug_1_1_3 cowboy_1_0_4 ]; meta = { longDescription = ''An elixir plug to support legacy APIs that @@ -41042,7 +47430,7 @@ let fetchHex, poison_1_1_1, httpoison_0_7_5, - hackney_1_0_6, + hackney_1_4_8, exvcr_0_3_9, ex_conf_0_1_3 }: @@ -41058,7 +47446,7 @@ let beamDeps = [ poison_1_1_1 httpoison_0_7_5 - hackney_1_0_6 + hackney_1_4_8 exvcr_0_3_9 ex_conf_0_1_3 ]; @@ -41108,7 +47496,7 @@ let travis_ex_0_0_2 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "travis_ex"; version = "0.0.2"; @@ -41118,7 +47506,7 @@ let sha256 = "80589ec01596dfc1e02cef61ce0adc3c9b73977b56a528e214c37af079efa10a"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''Travis-ci API client library for Elixir''; @@ -41130,6 +47518,33 @@ let travis_ex = travis_ex_0_0_2; + tributary_0_0_2 = callPackage + ( + { buildMix, fetchHex, ecto_2_0_0_beta_2 }: + buildMix { + name = "tributary"; + version = "0.0.2"; + src = fetchHex { + pkg = "tributary"; + version = "0.0.2"; + sha256 = + "f35f7f025b7db0555d4477ddf10622972f9200523355b09bdbb9ecf0f6c95d73"; + }; + beamDeps = [ ecto_2_0_0_beta_2 ]; + + meta = { + longDescription = ''A simple stream generation library for Ecto + queries that facilitates more efficient paging + of queries both in the database and in your + Ecto-reliant applicaton.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/davidantaramian/tributary"; + }; + } + ) {}; + + tributary = tributary_0_0_2; + trie_1_5_0 = callPackage ( { buildRebar3, fetchHex }: @@ -41213,17 +47628,17 @@ let trot = trot_0_5_3; - tsuru_1_0_2 = callPackage + tsuru_1_4_0 = callPackage ( { buildRebar3, fetchHex }: buildRebar3 { name = "tsuru"; - version = "1.0.2"; + version = "1.4.0"; src = fetchHex { pkg = "tsuru"; - version = "1.0.2"; + version = "1.4.0"; sha256 = - "b586ad8d47799a086e4225494f5e3cf4e306ca255a173a4b48fe51d542cefb6b"; + "7825d3b530b46a8c4ff93b3c83a31d0f2ce042ddc741a89d3776edfd9f2828f7"; }; meta = { @@ -41234,7 +47649,31 @@ let } ) {}; - tsuru = tsuru_1_0_2; + tsuru = tsuru_1_4_0; + + tubex_0_0_7 = callPackage + ( + { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: + buildMix { + name = "tubex"; + version = "0.0.7"; + src = fetchHex { + pkg = "tubex"; + version = "0.0.7"; + sha256 = + "8b34ade3d0484ee5ebb1155c16454d545284d0c215bf999a206cbcc198acea83"; + }; + beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; + + meta = { + description = ''Elixir wrapper of YouTube Data API v3''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/yoavlt/tubex"; + }; + } + ) {}; + + tubex = tubex_0_0_7; tuco_tuco_0_8_1 = callPackage ( @@ -41260,9 +47699,34 @@ let tuco_tuco = tuco_tuco_0_8_1; + twittertex_0_1_0 = callPackage + ( + { buildMix, fetchHex, phoenix_html_2_5_1 }: + buildMix { + name = "twittertex"; + version = "0.1.0"; + src = fetchHex { + pkg = "twittertex"; + version = "0.1.0"; + sha256 = + "76548d5cc68c098e7b04d2cb5846859ac38adb20aa9c3925436b9967ce785503"; + }; + beamDeps = [ phoenix_html_2_5_1 ]; + + meta = { + description = ''Formats a tweet as HTML, using the entities from + its JSON structure.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/tomtaylor/twittertex"; + }; + } + ) {}; + + twittertex = twittertex_0_1_0; + twittex_0_0_4 = callPackage ( - { buildMix, fetchHex, oauther_1_0_2, oauth2_0_5_0 }: + { buildMix, fetchHex, oauther_1_0_2, oauth2_0_6_0 }: buildMix { name = "twittex"; version = "0.0.4"; @@ -41272,7 +47736,7 @@ let sha256 = "2cfe144fe70ed0d0fcfbc18f232a54a844d1ef79db74cd385c8640e40ea30aa7"; }; - beamDeps = [ oauther_1_0_2 oauth2_0_5_0 ]; + beamDeps = [ oauther_1_0_2 oauth2_0_6_0 ]; meta = { description = ''Twitter client library for Elixir''; @@ -41309,7 +47773,7 @@ let typeformx_0_0_1 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "typeformx"; version = "0.0.1"; @@ -41319,7 +47783,7 @@ let sha256 = "8f6f1613f53f8c5012eb6d05276f5d305bdb9d4b0e94926680b536d0e1d94a62"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''An Elixir client library for the Typeform API @@ -41332,17 +47796,17 @@ let typeformx = typeformx_0_0_1; - tzdata_0_1_8 = callPackage + tzdata_0_1_201603 = callPackage ( { buildMix, fetchHex }: buildMix { name = "tzdata"; - version = "0.1.8"; + version = "0.1.201603"; src = fetchHex { pkg = "tzdata"; - version = "0.1.8"; + version = "0.1.201603"; sha256 = - "68af93cc1e0e0e6be76a583faaf15d57972a1afbf1e39f9d70524da87dfae825"; + "77598cedfb09cfdfb8f431c51131eb84229c46b2c5a7eebdf5904b2b8f003225"; }; meta = { @@ -41354,19 +47818,19 @@ let } ) {}; - tzdata_0_5_6 = callPackage + tzdata_0_5_7 = callPackage ( - { buildMix, fetchHex, hackney_1_4_8 }: + { buildMix, fetchHex, hackney_1_6_0 }: buildMix { name = "tzdata"; - version = "0.5.6"; + version = "0.5.7"; src = fetchHex { pkg = "tzdata"; - version = "0.5.6"; + version = "0.5.7"; sha256 = - "e2be18ea3e7c7dc83520b0eed369bbeea0c478299590524009a9dbaf0a9bfb04"; + "1747ca537ddd0861a56a5f37f9fa480a66eb7dfc0f5f1fcdd0b08ba300c87743"; }; - beamDeps = [ hackney_1_4_8 ]; + beamDeps = [ hackney_1_6_0 ]; meta = { description = ''Tzdata is a parser and library for the tz @@ -41377,19 +47841,44 @@ let } ) {}; - tzdata = tzdata_0_5_6; + tzdata = tzdata_0_5_7; - ua_inspector_0_10_0 = callPackage + u2f_0_1_3 = callPackage + ( + { buildRebar3, fetchHex, jiffy_0_14_7, base64url_0_0_1 }: + buildRebar3 { + name = "u2f"; + version = "0.1.3"; + src = fetchHex { + pkg = "u2f"; + version = "0.1.3"; + sha256 = + "2a781f1664fac6a4de53b25115c1b00a143e02d7b7bdb583e1965a061d20e30c"; + }; + + beamDeps = [ jiffy_0_14_7 base64url_0_0_1 ]; + + meta = { + description = ''Server-side U2F library''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/sharpfin/u2f-erl"; + }; + } + ) {}; + + u2f = u2f_0_1_3; + + ua_inspector_0_11_0 = callPackage ( { buildMix, fetchHex, poolboy_1_5_1 }: buildMix { name = "ua_inspector"; - version = "0.10.0"; + version = "0.11.0"; src = fetchHex { pkg = "ua_inspector"; - version = "0.10.0"; + version = "0.11.0"; sha256 = - "10f53183f10fcdbafb912e32798decec31fa0477fb4ddaa48048467936231d9a"; + "ddc05b1293962317caab370610131e950a697a62ac7d041c885e5540dba1cf72"; }; beamDeps = [ poolboy_1_5_1 ]; @@ -41401,7 +47890,7 @@ let } ) {}; - ua_inspector = ua_inspector_0_10_0; + ua_inspector = ua_inspector_0_11_0; uber_0_1_0 = callPackage ( @@ -41427,6 +47916,30 @@ let uber = uber_0_1_0; + ucol_2_0_0 = callPackage + ( + { buildRebar3, fetchHex }: + buildRebar3 { + name = "ucol"; + version = "2.0.0"; + src = fetchHex { + pkg = "ucol"; + version = "2.0.0"; + sha256 = + "b544b88ce034d1d1ab58e093744cbded9a1e8b05006870b4d3865d6cd5066a21"; + }; + compilePorts = true; + + meta = { + description = ''ICU based collation module''; + license = stdenv.lib.licenses.bsd3; + homepage = "https://github.com/refuge/ucol_nif"; + }; + } + ) {}; + + ucol = ucol_2_0_0; + ucol_nif_1_1_5 = callPackage ( { buildRebar3, fetchHex }: @@ -41476,7 +47989,7 @@ let ueberauth_0_2_0 = callPackage ( - { buildMix, fetchHex, plug_1_1_1 }: + { buildMix, fetchHex, plug_1_1_3 }: buildMix { name = "ueberauth"; version = "0.2.0"; @@ -41486,7 +47999,7 @@ let sha256 = "d6ee9cfe96be0e2b4005cb482b8e29c20ae0d6f7332ea9f686397c4ab20bf4de"; }; - beamDeps = [ plug_1_1_1 ]; + beamDeps = [ plug_1_1_3 ]; meta = { description = ''An Elixir Authentication System for Plug-based @@ -41501,7 +48014,7 @@ let ueberauth_facebook_0_3_2 = callPackage ( - { buildMix, fetchHex, ueberauth_0_2_0, oauth2_0_5_0 }: + { buildMix, fetchHex, ueberauth_0_2_0, oauth2_0_6_0 }: buildMix { name = "ueberauth_facebook"; version = "0.3.2"; @@ -41511,7 +48024,7 @@ let sha256 = "d766a41a0b26bccfc1371b776bfcfb760f09639ac3de9aa8885023af9e5641c5"; }; - beamDeps = [ ueberauth_0_2_0 oauth2_0_5_0 ]; + beamDeps = [ ueberauth_0_2_0 oauth2_0_6_0 ]; meta = { description = ''An Uberauth strategy for Facebook @@ -41526,7 +48039,7 @@ let ueberauth_fitbit_0_2_1 = callPackage ( - { buildMix, fetchHex, ueberauth_0_2_0, oauth2_0_5_0 }: + { buildMix, fetchHex, ueberauth_0_2_0, oauth2_0_6_0 }: buildMix { name = "ueberauth_fitbit"; version = "0.2.1"; @@ -41536,7 +48049,7 @@ let sha256 = "669e2bba8f498651dc4c31fbb978179b9d344264ace2ff8f53e007cc6d243956"; }; - beamDeps = [ ueberauth_0_2_0 oauth2_0_5_0 ]; + beamDeps = [ ueberauth_0_2_0 oauth2_0_6_0 ]; meta = { description = ''An Ueberauth strategy for Fitbit OAuth2 @@ -41551,7 +48064,7 @@ let ueberauth_github_0_2_0 = callPackage ( - { buildMix, fetchHex, ueberauth_0_2_0, oauth2_0_5_0 }: + { buildMix, fetchHex, ueberauth_0_2_0, oauth2_0_6_0 }: buildMix { name = "ueberauth_github"; version = "0.2.0"; @@ -41561,7 +48074,7 @@ let sha256 = "b12b3dae8c097d5cd57a3e1cd97286b796ee36794b031f92a76e848f572cb4ab"; }; - beamDeps = [ ueberauth_0_2_0 oauth2_0_5_0 ]; + beamDeps = [ ueberauth_0_2_0 oauth2_0_6_0 ]; meta = { description = ''An Ueberauth strategy for using Github to @@ -41576,7 +48089,7 @@ let ueberauth_google_0_2_0 = callPackage ( - { buildMix, fetchHex, ueberauth_0_2_0, oauth2_0_5_0 }: + { buildMix, fetchHex, ueberauth_0_2_0, oauth2_0_6_0 }: buildMix { name = "ueberauth_google"; version = "0.2.0"; @@ -41586,7 +48099,7 @@ let sha256 = "b57f13534f37b7062df5a696976453af1faabc00d608ccdce29f9289164fce44"; }; - beamDeps = [ ueberauth_0_2_0 oauth2_0_5_0 ]; + beamDeps = [ ueberauth_0_2_0 oauth2_0_6_0 ]; meta = { description = ''An Uberauth strategy for Google @@ -41599,21 +48112,19 @@ let ueberauth_google = ueberauth_google_0_2_0; - ueberauth_identity_0_2_2 = callPackage + ueberauth_identity_0_2_3 = callPackage ( - { - buildMix, fetchHex, ueberauth_0_2_0, poison_1_5_2, plug_1_1_1 - }: + { buildMix, fetchHex, ueberauth_0_2_0, plug_1_1_3 }: buildMix { name = "ueberauth_identity"; - version = "0.2.2"; + version = "0.2.3"; src = fetchHex { pkg = "ueberauth_identity"; - version = "0.2.2"; + version = "0.2.3"; sha256 = - "6c3d7e5917a5030f737152cc86af4c7066a66a30aea049562c687e5af51bee82"; + "ebbb4d7fe6c94053486a32794ab2a561f004f01fd1099c7e0a69901dc32c51ca"; }; - beamDeps = [ ueberauth_0_2_0 poison_1_5_2 plug_1_1_1 ]; + beamDeps = [ ueberauth_0_2_0 plug_1_1_3 ]; meta = { description = ''An Ueberauth strategy for basic @@ -41624,11 +48135,11 @@ let } ) {}; - ueberauth_identity = ueberauth_identity_0_2_2; + ueberauth_identity = ueberauth_identity_0_2_3; ueberauth_slack_0_2_0 = callPackage ( - { buildMix, fetchHex, ueberauth_0_2_0, oauth2_0_5_0 }: + { buildMix, fetchHex, ueberauth_0_2_0, oauth2_0_6_0 }: buildMix { name = "ueberauth_slack"; version = "0.2.0"; @@ -41638,7 +48149,7 @@ let sha256 = "1b109ed50d34b3a18d5db04234475baa3ae08893b46a7b5a1726fec4adb6753b"; }; - beamDeps = [ ueberauth_0_2_0 oauth2_0_5_0 ]; + beamDeps = [ ueberauth_0_2_0 oauth2_0_6_0 ]; meta = { description = ''An Ueberauth strategy for using Slack to @@ -41652,7 +48163,7 @@ let ueberauth_twitter_0_2_2 = callPackage ( - { buildMix, fetchHex, ueberauth_0_2_0, httpoison_0_8_1 }: + { buildMix, fetchHex, ueberauth_0_2_0, httpoison_0_8_2 }: buildMix { name = "ueberauth_twitter"; version = "0.2.2"; @@ -41662,7 +48173,7 @@ let sha256 = "911a227b8290e8d65cee8d45015477d4ea51dbcf637c8a41ff88b34fcc5ab65a"; }; - beamDeps = [ ueberauth_0_2_0 httpoison_0_8_1 ]; + beamDeps = [ ueberauth_0_2_0 httpoison_0_8_2 ]; meta = { description = ''An Uberauth strategy for Twitter @@ -41795,7 +48306,7 @@ let unsplash_0_3_0 = callPackage ( { - buildMix, fetchHex, poison_1_5_2, oauth2_0_5_0, httpoison_0_8_1 + buildMix, fetchHex, poison_1_5_2, oauth2_0_6_0, httpoison_0_8_2 }: buildMix { name = "unsplash"; @@ -41806,7 +48317,7 @@ let sha256 = "609ded0d452729df1d6272ca7997a6bd6fb65821606f17d078c73a1b2ecbc37a"; }; - beamDeps = [ poison_1_5_2 oauth2_0_5_0 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 oauth2_0_6_0 httpoison_0_8_2 ]; meta = { description = ''Unsplash API in Elixir''; @@ -41818,6 +48329,30 @@ let unsplash = unsplash_0_3_0; + untappd_0_0_1 = callPackage + ( + { buildMix, fetchHex, httpoison_0_8_2, exjsx_3_2_0 }: + buildMix { + name = "untappd"; + version = "0.0.1"; + src = fetchHex { + pkg = "untappd"; + version = "0.0.1"; + sha256 = + "f4560612cd78002202234660cf248f004c91ade8c10dc87ad136eb5d8f49d66a"; + }; + beamDeps = [ httpoison_0_8_2 exjsx_3_2_0 ]; + + meta = { + description = ''Elixir wrapper for the Untappd API''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/nimi/untappd"; + }; + } + ) {}; + + untappd = untappd_0_0_1; + upyun_0_0_1 = callPackage ( { buildMix, fetchHex }: @@ -41909,19 +48444,19 @@ let urilib = urilib_0_1_1; - url_unroller_0_0_2 = callPackage + url_unroller_0_0_3 = callPackage ( - { buildMix, fetchHex, httpoison_0_8_1 }: + { buildMix, fetchHex, httpoison_0_8_2 }: buildMix { name = "url_unroller"; - version = "0.0.2"; + version = "0.0.3"; src = fetchHex { pkg = "url_unroller"; - version = "0.0.2"; + version = "0.0.3"; sha256 = - "9e12c97ff7b45e457734293cabfdd1e60dbfe3d4f80ec7706814a84b61cf11ec"; + "65a46b7335060111bdc5ad164548361f3c7ff5a39ff9493a9109dd20b98498b9"; }; - beamDeps = [ httpoison_0_8_1 ]; + beamDeps = [ httpoison_0_8_2 ]; meta = { description = ''A simple url unroller/unshortener''; @@ -41931,7 +48466,7 @@ let } ) {}; - url_unroller = url_unroller_0_0_2; + url_unroller = url_unroller_0_0_3; urna_0_1_4 = callPackage ( @@ -41957,17 +48492,17 @@ let urna = urna_0_1_4; - uuid_0_1_5 = callPackage + uuid_1_0_0 = callPackage ( { buildMix, fetchHex }: buildMix { name = "uuid"; - version = "0.1.5"; + version = "1.0.0"; src = fetchHex { pkg = "uuid"; - version = "0.1.5"; + version = "1.0.0"; sha256 = - "5cfb91972f5cacb0bcb2f00414d5747dd575d84b864c96f668ab3b729cc08422"; + "ff0a92c21c23935a944a5c5608c1c5af8d629ff5e11593001434d21efcb343b4"; }; meta = { @@ -42051,7 +48586,7 @@ let valid_field_0_3_0 = callPackage ( - { buildMix, fetchHex, ecto_2_0_0_beta_0 }: + { buildMix, fetchHex, ecto_2_0_0_beta_2 }: buildMix { name = "valid_field"; version = "0.3.0"; @@ -42061,7 +48596,7 @@ let sha256 = "258591717d45835be4f3b299a2c332dc33702876c272f2fff455956c4a5409dc"; }; - beamDeps = [ ecto_2_0_0_beta_0 ]; + beamDeps = [ ecto_2_0_0_beta_2 ]; meta = { description = ''ValidField aids unit testing a changeset for @@ -42097,9 +48632,83 @@ let varpool = varpool_1_5_1; + vector_0_1_0 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + vector_0_2_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + vector = vector_0_2_1; + + velkoz_0_0_1 = callPackage + ( + { + buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2, ex_rated_1_2_2 + }: + buildMix { + name = "velkoz"; + version = "0.0.1"; + src = fetchHex { + pkg = "velkoz"; + version = "0.0.1"; + sha256 = + "3eaa4d2f1b1904d57811e42a841735eb2eb74eb4ea93c7182e1c0b1e0a01a7e8"; + }; + beamDeps = [ poison_2_1_0 httpoison_0_8_2 ex_rated_1_2_2 ]; + + meta = { + longDescription = ''Velkoz is an api wrapper for the game leauge + of legends. You can find the api documentation + :: https://developer.riotgames.com/api''; + license = stdenv.lib.licenses.asl20; + homepage = "https://github.com/tesseract-tech/velkoz"; + }; + } + ) {}; + + velkoz = velkoz_0_0_1; + verify_origin_0_1_0 = callPackage ( - { buildMix, fetchHex, plug_1_1_1 }: + { buildMix, fetchHex, plug_1_1_3 }: buildMix { name = "verify_origin"; version = "0.1.0"; @@ -42109,7 +48718,7 @@ let sha256 = "90834033676cb0ca632f208f489f6eb92ae94323fe7243efba577e1deb031167"; }; - beamDeps = [ plug_1_1_1 ]; + beamDeps = [ plug_1_1_3 ]; meta = { description = ''A library for using Origin header checking to @@ -42122,27 +48731,33 @@ let verify_origin = verify_origin_0_1_0; - verk_0_9_6 = callPackage + verk_0_9_11 = callPackage ( { buildMix, fetchHex, - timex_1_0_1, - redix_0_3_4, + 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.6"; + version = "0.9.11"; src = fetchHex { pkg = "verk"; - version = "0.9.6"; + version = "0.9.11"; sha256 = - "a8b021d474d199c946fc6b7b38053218d8157faa60e9068c18db86ea5a978869"; + "79183e0e79a106f0712bd291ac1c81124a497d4e1aef0f9db6672ec5b6190b49"; }; - beamDeps = [ timex_1_0_1 redix_0_3_4 poolboy_1_5_1 poison_1_5_2 - ]; + 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 @@ -42153,31 +48768,31 @@ let } ) {}; - verk = verk_0_9_6; + verk = verk_0_9_11; - verk_web_0_9_1 = callPackage + verk_web_0_9_4 = callPackage ( { buildMix, fetchHex, - verk_0_9_6, - phoenix_html_2_5_0, + verk_0_9_11, + phoenix_html_2_5_1, phoenix_1_1_4, gettext_0_10_0, cowboy_1_0_4 }: buildMix { name = "verk_web"; - version = "0.9.1"; + version = "0.9.4"; src = fetchHex { pkg = "verk_web"; - version = "0.9.1"; + version = "0.9.4"; sha256 = - "71eb5c4ab6f73676b21c24b1ba86a3c11a1979339d83ab52a77a3be70da6e61b"; + "58c5c58515d435eda9f2ddb42d418b8e189b624f2b365e0a70fcd18880c8cb07"; }; beamDeps = [ - verk_0_9_6 - phoenix_html_2_5_0 + verk_0_9_11 + phoenix_html_2_5_1 phoenix_1_1_4 gettext_0_10_0 cowboy_1_0_4 @@ -42191,7 +48806,7 @@ let } ) {}; - verk_web = verk_web_0_9_1; + verk_web = verk_web_0_9_4; vex_0_5_5 = callPackage ( @@ -42217,19 +48832,19 @@ let vex = vex_0_5_5; - viktor_0_0_5 = callPackage + viktor_0_0_9 = callPackage ( - { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: buildMix { name = "viktor"; - version = "0.0.5"; + version = "0.0.9"; src = fetchHex { pkg = "viktor"; - version = "0.0.5"; + version = "0.0.9"; sha256 = - "df49c25a93ea36d6f65b25716c894a9479ab6f990ed138170bdeea2930ef6cec"; + "876c3b9dbac7503640144fc9850c80e56148daa3aa28029f5d8fb44b35b999ff"; }; - beamDeps = [ poison_2_1_0 httpoison_0_8_1 ]; + beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; meta = { description = ''Client API wrapper for League of Legends API.''; @@ -42239,7 +48854,7 @@ let } ) {}; - viktor = viktor_0_0_5; + viktor = viktor_0_0_9; vimeo_0_0_2 = callPackage ( @@ -42267,7 +48882,7 @@ let virus_total_0_0_1 = callPackage ( - { buildMix, fetchHex, jsx_2_8_0, httpoison_0_8_1 }: + { buildMix, fetchHex, jsx_2_8_0, httpoison_0_8_2 }: buildMix { name = "virus_total"; version = "0.0.1"; @@ -42277,7 +48892,7 @@ let sha256 = "bed3680d17c98f978a90f5b443b6e269ee0a3f2239d2262502d8d10ee042ebfa"; }; - beamDeps = [ jsx_2_8_0 httpoison_0_8_1 ]; + beamDeps = [ jsx_2_8_0 httpoison_0_8_2 ]; meta = { description = ''Elixir OTP application for the VirusTotal Public @@ -42314,6 +48929,66 @@ let voorhees = voorhees_0_1_1; + voxpop_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + voxpop = voxpop_0_0_1; + + wallaby_0_1_0 = callPackage + ( + { + buildMix, + fetchHex, + poolboy_1_5_1, + poison_2_1_0, + httpoison_0_8_2, + dialyze_0_2_1 + }: + buildMix { + name = "wallaby"; + version = "0.1.0"; + src = fetchHex { + pkg = "wallaby"; + version = "0.1.0"; + sha256 = + "836fd7f97f1f70befc6e2e3a9bc785ff70b5de053d2e9ca021a5918edfa0a099"; + }; + beamDeps = [ + poolboy_1_5_1 + poison_2_1_0 + httpoison_0_8_2 + dialyze_0_2_1 + ]; + + meta = { + description = ''Concurrent feature tests for elixir''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/keathley/wallaby"; + }; + } + ) {}; + + wallaby = wallaby_0_1_0; + watcher_1_0_0 = callPackage ( { buildMix, fetchHex }: @@ -42339,7 +49014,7 @@ let wayback_archiver_0_0_1 = callPackage ( - { buildMix, fetchHex, httpotion_2_1_0, floki_0_7_1 }: + { buildMix, fetchHex, httpotion_2_2_2, floki_0_8_0 }: buildMix { name = "wayback_archiver"; version = "0.0.1"; @@ -42349,7 +49024,7 @@ let sha256 = "9f8bea06d6dcac6c017a3a41859373c10a1b46fb133db47300c2ae7c9fada590"; }; - beamDeps = [ httpotion_2_1_0 floki_0_7_1 ]; + beamDeps = [ httpotion_2_2_2 floki_0_8_0 ]; meta = { description = ''Send URLs to Wayback Machine''; @@ -42416,7 +49091,7 @@ let webdriver_0_8_1 = callPackage ( - { buildMix, fetchHex, jazz_0_2_1, httpotion_2_2_0 }: + { buildMix, fetchHex, jazz_0_2_1, httpotion_2_2_2 }: buildMix { name = "webdriver"; version = "0.8.1"; @@ -42426,7 +49101,7 @@ let sha256 = "fe2009920fb210cd50df3a7d2bb40cd6f2844a538d52a48952f18008e1c5f3d3"; }; - beamDeps = [ jazz_0_2_1 httpotion_2_2_0 ]; + beamDeps = [ jazz_0_2_1 httpotion_2_2_2 ]; meta = { description = ''Webdriver protocol for driving web browsers.''; @@ -42461,9 +49136,35 @@ let weber = weber_0_1_0; + webmentions_0_0_5 = callPackage + ( + { buildMix, fetchHex, httpotion_2_2_2, floki_0_7_2 }: + buildMix { + name = "webmentions"; + version = "0.0.5"; + src = fetchHex { + pkg = "webmentions"; + version = "0.0.5"; + sha256 = + "8240363589044572bc1ceddef0843d03ccb23e7ca5bb660e9dd11fb7c9e06414"; + }; + beamDeps = [ httpotion_2_2_2 floki_0_7_2 ]; + + meta = { + description = ''A Webmentions + (https://indiewebcamp.com/Webmention) module for + Elixir''; + license = stdenv.lib.licenses.agpl3; + homepage = "https://github.com/ckruse/webmentions-elixir"; + }; + } + ) {}; + + webmentions = webmentions_0_0_5; + webpay_0_0_4 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "webpay"; version = "0.0.4"; @@ -42473,7 +49174,7 @@ let sha256 = "abab40fc7fda25a55d3a3dce4327d3f322df378432a9ed5e7c43e553989f467e"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''Elixir Webpay API wrapper''; @@ -42509,7 +49210,7 @@ let wechat_check_signature_0_0_1 = callPackage ( - { buildMix, fetchHex, plug_1_1_1 }: + { buildMix, fetchHex, plug_1_1_3 }: buildMix { name = "wechat_check_signature"; version = "0.0.1"; @@ -42519,7 +49220,7 @@ let sha256 = "5c5bb053c15082e12ad6da485fc4f711efa9198107368a42456aeafcf870caec"; }; - beamDeps = [ plug_1_1_1 ]; + beamDeps = [ plug_1_1_3 ]; meta = { description = ''An Elixir Plug for checking wechat signature.''; @@ -42533,7 +49234,7 @@ let wechatex_0_0_1 = callPackage ( - { buildMix, fetchHex, plug_1_1_1 }: + { buildMix, fetchHex, plug_1_1_3 }: buildMix { name = "wechatex"; version = "0.0.1"; @@ -42543,7 +49244,7 @@ let sha256 = "211971a79d38326dbf5e603ee00165708eb17670f2a84e54df929191c6fef81c"; }; - beamDeps = [ plug_1_1_1 ]; + beamDeps = [ plug_1_1_3 ]; meta = { description = ''Wechat plugins for Elixir.''; @@ -42606,7 +49307,7 @@ let wifi_0_2_0 = callPackage ( - { buildMix, fetchHex, poison_1_4_0, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_4_0, httpoison_0_8_2 }: buildMix { name = "wifi"; version = "0.2.0"; @@ -42616,7 +49317,7 @@ let sha256 = "0060d0dda9308e9dc652e83f7646485d932188a11e17fb814125ccd7449effc5"; }; - beamDeps = [ poison_1_4_0 httpoison_0_8_1 ]; + beamDeps = [ poison_1_4_0 httpoison_0_8_2 ]; meta = { longDescription = ''Various utility functions for working with @@ -42659,7 +49360,7 @@ let witchcraft_0_4_2 = callPackage ( - { buildMix, fetchHex, quark_1_0_2, algae_0_9_1 }: + { buildMix, fetchHex, quark_1_0_2, algae_0_10_0 }: buildMix { name = "witchcraft"; version = "0.4.2"; @@ -42669,7 +49370,7 @@ let sha256 = "cdd6379d5a8b0baab3b79b0c9b87473d8292e0d9a80fa2e21fac61d31218609f"; }; - beamDeps = [ quark_1_0_2 algae_0_9_1 ]; + beamDeps = [ quark_1_0_2 algae_0_10_0 ]; meta = { description = ''Common algebraic structures and functions''; @@ -42707,7 +49408,7 @@ let wizardry_0_0_1 = callPackage ( - { buildMix, fetchHex, plug_1_1_1, comeonin_1_6_0 }: + { buildMix, fetchHex, plug_1_1_3, comeonin_1_6_0 }: buildMix { name = "wizardry"; version = "0.0.1"; @@ -42717,7 +49418,7 @@ let sha256 = "4a85b8c3e5813dee20aa0d5503811568743644883723c9b226436616c9a779a3"; }; - beamDeps = [ plug_1_1_1 comeonin_1_6_0 ]; + beamDeps = [ plug_1_1_3 comeonin_1_6_0 ]; meta = { description = ''Simple, low-level user account framework for @@ -42828,17 +49529,17 @@ let workshop = workshop_0_5_1; - world_json_0_1_5 = callPackage + world_json_0_1_6 = callPackage ( { buildMix, fetchHex, poison_1_3_1 }: buildMix { name = "world_json"; - version = "0.1.5"; + version = "0.1.6"; src = fetchHex { pkg = "world_json"; - version = "0.1.5"; + version = "0.1.6"; sha256 = - "3a960d9794627a1927f7410185bf36c22d6b4d8f079bf74e131d0f5606b7f567"; + "f91493355bc522e6ee58eed6d21fca41c32f246052c1324cb5f08b2eb1eb5e83"; }; beamDeps = [ poison_1_3_1 ]; @@ -42851,7 +49552,7 @@ let } ) {}; - world_json = world_json_0_1_5; + world_json = world_json_0_1_6; wpa_supplicant_0_1_0 = callPackage ( @@ -42883,7 +49584,7 @@ let wykop_api_0_0_4 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "wykop_api"; version = "0.0.4"; @@ -42893,7 +49594,7 @@ let sha256 = "0c2acade581168e5cdf3d1dbde53183bc1c49882c8ba8793e045f20d5a9a26d0"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''Library for Wykop API.''; @@ -42907,7 +49608,7 @@ let xe_0_0_1 = callPackage ( - { buildMix, fetchHex, httpoison_0_8_1, floki_0_7_1 }: + { buildMix, fetchHex, httpoison_0_8_2, floki_0_8_0 }: buildMix { name = "xe"; version = "0.0.1"; @@ -42917,7 +49618,7 @@ let sha256 = "53d693612db1343c36a7bbe6286c23f7ccfdbd44500c2a38970743238d230a77"; }; - beamDeps = [ httpoison_0_8_1 floki_0_7_1 ]; + beamDeps = [ httpoison_0_8_2 floki_0_8_0 ]; meta = { description = ''Real time conversion for currencies''; @@ -42931,7 +49632,7 @@ let xfighter_0_2_1 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "xfighter"; version = "0.2.1"; @@ -42941,7 +49642,7 @@ let sha256 = "67bb43379cd89b4b95f65f02ad5421719723d262fdbe7e399fb82ac7f3b490a8"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''An API wrapper for the programming game @@ -42954,12 +49655,37 @@ let xfighter = xfighter_0_2_1; + xkcd_0_0_1 = callPackage + ( + { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: + buildMix { + name = "xkcd"; + version = "0.0.1"; + src = fetchHex { + pkg = "xkcd"; + version = "0.0.1"; + sha256 = + "1c757360b9c5ff3d098e9c04874ed273289ea890e4d87e7dd99164633fe061b5"; + }; + beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; + + meta = { + longDescription = ''Uses the XKCD JSON API to retrieve the + random, specific and the latest XKCD comic.''; + license = stdenv.lib.licenses.mit; + homepage = "https://github.com/notdevinclark/xkcd"; + }; + } + ) {}; + + xkcd = xkcd_0_0_1; + xlsx_parser_0_0_4 = callPackage ( { buildMix, fetchHex, - timex_1_0_1, + timex_1_0_2, sweet_xml_0_5_1, simple_agent_0_0_7 }: @@ -42972,7 +49698,7 @@ let sha256 = "53d86e1142483421d5c1fe769f69980560a6809ca37a13c3dcd4c49fee46a831"; }; - beamDeps = [ timex_1_0_1 sweet_xml_0_5_1 simple_agent_0_0_7 ]; + beamDeps = [ timex_1_0_2 sweet_xml_0_5_1 simple_agent_0_0_7 ]; meta = { longDescription = ''Simple parsing of xlsx spreadsheet data. Data @@ -42986,6 +49712,34 @@ let xlsx_parser = xlsx_parser_0_0_4; + xlsxir_0_0_2 = callPackage + ( + { + buildMix, 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"; + }; + } + ) {}; + + xlsxir = xlsxir_0_0_2; + xml_builder_0_0_8 = callPackage ( { buildMix, fetchHex }: @@ -43038,7 +49792,7 @@ let xoauth2_0_0_3 = callPackage ( { - buildMix, fetchHex, poison_1_5_2, mock_0_1_1, httpoison_0_8_1 + buildMix, fetchHex, poison_1_5_2, mock_0_1_3, httpoison_0_8_2 }: buildMix { name = "xoauth2"; @@ -43049,7 +49803,7 @@ let sha256 = "4a43a0bca1707b579c6a141524666006dd25ed2efdc19aee5d6eeedf6efc3418"; }; - beamDeps = [ poison_1_5_2 mock_0_1_1 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 mock_0_1_3 httpoison_0_8_2 ]; meta = { description = ''A simple XOAuth2 module for Elixir''; @@ -43063,8 +49817,8 @@ let xref_runner_0_2_5 = callPackage ( - { buildRebar3, fetchHex, getopt_0_8_2 }: - buildRebar3 { + { buildErlangMk, fetchHex, getopt_0_8_2 }: + buildErlangMk { name = "xref_runner"; version = "0.2.5"; src = fetchHex { @@ -43073,7 +49827,6 @@ let sha256 = "12ca46c02789b0b2755284dedeb73aac0d9a3120c28c992040feb86766ee2c9a"; }; - beamDeps = [ getopt_0_8_2 ]; meta = { @@ -43086,25 +49839,42 @@ let xref_runner = xref_runner_0_2_5; - yahoo_fx_0_1_3 = callPackage + xxhash_0_2_0 = callPackage ( - { - buildMix, - fetchHex, - hackney_1_0_6, - time_seer_0_0_5, - httpoison_0_7_5 - }: + { buildMix, 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"; + }; + } + ) {}; + + xxhash = xxhash_0_2_0; + + yahoo_fx_0_2_0 = callPackage + ( + { buildMix, fetchHex, time_seer_0_0_6, httpoison_0_8_2 }: buildMix { name = "yahoo_fx"; - version = "0.1.3"; + version = "0.2.0"; src = fetchHex { pkg = "yahoo_fx"; - version = "0.1.3"; + version = "0.2.0"; sha256 = - "6f8691b2de712ea5e870f48291a2a2debd8ae8977e37480e69ce81f423e40479"; + "e06b6986c483cad62081e19fba3089f3eab4a4f1e1cc06cd17aa45d34dd14913"; }; - beamDeps = [ hackney_1_0_6 time_seer_0_0_5 httpoison_0_7_5 ]; + beamDeps = [ time_seer_0_0_6 httpoison_0_8_2 ]; meta = { longDescription = ''YahooFx is an Elixir library for getting @@ -43115,7 +49885,7 @@ let } ) {}; - yahoo_fx = yahoo_fx_0_1_3; + yahoo_fx = yahoo_fx_0_2_0; yaml_elixir_1_0_0 = callPackage ( @@ -43166,17 +49936,40 @@ let yar = yar_0_1_0; - yggdrasil_1_1_0 = callPackage + yes_msg_0_1_0 = callPackage + ( + { buildRebar3, 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; + }; + } + ) {}; + + yes_msg = yes_msg_0_1_0; + + yggdrasil_1_1_1 = callPackage ( { buildMix, fetchHex, exredis_0_2_3, amqp_0_1_4 }: buildMix { name = "yggdrasil"; - version = "1.1.0"; + version = "1.1.1"; src = fetchHex { pkg = "yggdrasil"; - version = "1.1.0"; + version = "1.1.1"; sha256 = - "f4412a82c09c09b70a9520f91113d9aa064f74b597ff5bdad6601ca7cf860f63"; + "0e83184601187cfc2a7a101085eed98b31911279e442dd761bdbc692b6c87a40"; }; beamDeps = [ exredis_0_2_3 amqp_0_1_4 ]; @@ -43192,12 +49985,12 @@ let } ) {}; - yggdrasil = yggdrasil_1_1_0; + yggdrasil = yggdrasil_1_1_1; yocingo_0_0_2 = callPackage ( { - buildMix, fetchHex, httpoison_0_8_1, exjsx_3_2_0, earmark_0_2_1 + buildMix, fetchHex, httpoison_0_8_2, exjsx_3_2_0, earmark_0_2_1 }: buildMix { name = "yocingo"; @@ -43208,7 +50001,7 @@ let sha256 = "3ce350bb833e72edc684dc6ece956146161d4b7215cd9557f95bb2d7dcb1abf4"; }; - beamDeps = [ httpoison_0_8_1 exjsx_3_2_0 earmark_0_2_1 ]; + beamDeps = [ httpoison_0_8_2 exjsx_3_2_0 earmark_0_2_1 ]; meta = { longDescription = ''This is a full Telegram Bot API. With this @@ -43221,21 +50014,21 @@ let yocingo = yocingo_0_0_2; - yodlee_0_0_9 = callPackage + yodlee_0_1_4 = callPackage ( { - buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1, hackney_1_4_8 + buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2, hackney_1_4_10 }: buildMix { name = "yodlee"; - version = "0.0.9"; + version = "0.1.4"; src = fetchHex { pkg = "yodlee"; - version = "0.0.9"; + version = "0.1.4"; sha256 = - "4bc779bc847bfb39ebc04789116da830d049e0755a594d5d8f38dffc250cf69e"; + "a5ecf2c7ec42611f7f6cdaf0980da6028f5881e23484b2bf001d75fb6f0525df"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 hackney_1_4_8 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 hackney_1_4_10 ]; meta = { description = ''Yodlee API''; @@ -43245,12 +50038,12 @@ let } ) {}; - yodlee = yodlee_0_0_9; + yodlee = yodlee_0_1_4; yomel_0_5_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "yomel"; version = "0.5.0"; src = fetchHex { @@ -43259,7 +50052,6 @@ let sha256 = "737be278c9ae9ed40b24a45a461ea47b4979429e1d51b28961d43ee3a6426827"; }; - compilePorts = true; meta = { description = ''Decodes yaml into elixir terms''; @@ -43295,6 +50087,30 @@ let ytx = ytx_0_0_5; + yubico_0_1_4 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + yubico = yubico_0_1_4; + yuri_1_0_0 = callPackage ( { buildMix, fetchHex }: @@ -43427,7 +50243,7 @@ let zencoder_1_0_1 = callPackage ( - { buildMix, fetchHex, poison_1_4_0, httpotion_1_0_0 }: + { buildMix, fetchHex, poison_1_4_0, httpotion_2_2_2 }: buildMix { name = "zencoder"; version = "1.0.1"; @@ -43437,7 +50253,7 @@ let sha256 = "b2220575aa2ee1da5101774c82e1d68f2e5f86d6cefd6f04811c882fc05473bc"; }; - beamDeps = [ poison_1_4_0 httpotion_1_0_0 ]; + beamDeps = [ poison_1_4_0 httpotion_2_2_2 ]; meta = { description = ''Elixir API wrapper for the Zencoder video @@ -43450,9 +50266,33 @@ let zencoder = zencoder_1_0_1; + zigzag_0_0_1 = callPackage + ( + { buildMix, 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"; + }; + } + ) {}; + + zigzag = zigzag_0_0_1; + zipcloudx_0_0_2 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_1 }: + { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: buildMix { name = "zipcloudx"; version = "0.0.2"; @@ -43462,7 +50302,7 @@ let sha256 = "1e474ec0229b6dd1404c34fbd2a851d136d9549d5ecccbd01d017baac64b264e"; }; - beamDeps = [ poison_1_5_2 httpoison_0_8_1 ]; + beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; meta = { description = ''Elixir zipcloud API wrapper''; @@ -43473,17 +50313,17 @@ let zipcloudx = zipcloudx_0_0_2; - zipper_0_1_5 = callPackage + zipper_0_2_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildErlangMk, fetchHex }: + buildErlangMk { name = "zipper"; - version = "0.1.5"; + version = "0.2.0"; src = fetchHex { pkg = "zipper"; - version = "0.1.5"; + version = "0.2.0"; sha256 = - "7df5552f41169a8feb1a2e81e2753ec4e4debb7d48cdf1edc77037205782d547"; + "8f5a9271cebd535ff9bf9fd6829a36b3031d16c71b2ae6712e171f117520c023"; }; meta = { @@ -43494,7 +50334,7 @@ let } ) {}; - zipper = zipper_0_1_5; + zipper = zipper_0_2_0; zipper_tree_0_1_1 = callPackage ( @@ -43520,5 +50360,68 @@ let zipper_tree = zipper_tree_0_1_1; + zlist_1_0_1 = callPackage + ( + { buildRebar3, 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"; + }; + } + ) {}; + + zlist = zlist_1_0_1; + + zuppler_users_client_0_0_5 = callPackage + ( + { + buildMix, + fetchHex, + poolboy_1_5_1, + phoenix_1_1_4, + oauth2_0_6_0, + lru_cache_0_1_0, + httpotion_2_2_2 + }: + buildMix { + name = "zuppler_users_client"; + version = "0.0.5"; + src = fetchHex { + pkg = "zuppler_users_client"; + version = "0.0.5"; + sha256 = + "519d87847b792db04bf97b6c6d56b26724b65f83b0f5ee17b83e82c5fb371557"; + }; + beamDeps = [ + poolboy_1_5_1 + phoenix_1_1_4 + oauth2_0_6_0 + lru_cache_0_1_0 + httpotion_2_2_2 + ]; + + meta = { + description = ''An Elixir OAuth 2.0 Client Library to protect + Zuppler API''; + license = stdenv.lib.licenses.mit; + homepage = + "https://github.com/zuppler/zuppler-users-client-elixir.git"; + }; + } + ) {}; + + zuppler_users_client = zuppler_users_client_0_0_5; + }; in stdenv.lib.fix' (stdenv.lib.extends overrides packages) \ No newline at end of file diff --git a/pkgs/development/interpreters/elixir/default.nix b/pkgs/development/interpreters/elixir/default.nix index f71b557bc25..e45c6784e94 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,10 @@ stdenv.mkDerivation rec { LANG = "en_US.UTF-8"; LC_TYPE = "en_US.UTF-8"; + 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 From 8d3d0a1ca97cae40bde9e0b92d9c6a99c233e38c Mon Sep 17 00:00:00 2001 From: Eric Merritt Date: Fri, 1 Apr 2016 08:34:28 -0700 Subject: [PATCH 07/96] relx-exe: init at 3.18.0 This adds an executable version of the relx library to the system. --- .../tools/erlang/relx-exe/default.nix | 38 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 +- 2 files changed, 41 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/tools/erlang/relx-exe/default.nix 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/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3ec5d3f1323..02a1721ab17 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5319,7 +5319,9 @@ in 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 { }; From 2d6d9682bb8a910f3eb5f0be8d5687c753e9732c Mon Sep 17 00:00:00 2001 From: Eric Merritt Date: Fri, 1 Apr 2016 13:13:02 -0700 Subject: [PATCH 08/96] elixir: set ERL_LIBS for elixir apps Previously Elixir didn't correct set the ERL_LIBS environment variable for the OTP Applications that it supplies. This change fixes that --- pkgs/development/interpreters/elixir/default.nix | 2 ++ pkgs/development/interpreters/elixir/setup-hook.sh | 5 +++++ 2 files changed, 7 insertions(+) create mode 100644 pkgs/development/interpreters/elixir/setup-hook.sh diff --git a/pkgs/development/interpreters/elixir/default.nix b/pkgs/development/interpreters/elixir/default.nix index e45c6784e94..b612033c8e5 100644 --- a/pkgs/development/interpreters/elixir/default.nix +++ b/pkgs/development/interpreters/elixir/default.nix @@ -17,6 +17,8 @@ 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 ""; 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) From 383626b9d7dd56618f0789eefee147a097ada4a4 Mon Sep 17 00:00:00 2001 From: Eric Merritt Date: Fri, 15 Apr 2016 11:06:57 -0700 Subject: [PATCH 09/96] move rebar3-nix-bootstrap to rebar3 This moves rebar3-nix-bootstrap from its own repository to rebar3. Its a single file and this vastly reduces the complexity of making changes. --- .../development/beam-modules/build-rebar3.nix | 2 +- .../tools/build-managers/rebar3/default.nix | 10 +- .../rebar3/rebar3-nix-bootstrap | 256 ++++++++++++++++++ .../erlang/rebar3-nix-bootstrap/default.nix | 24 -- pkgs/top-level/all-packages.nix | 1 - 5 files changed, 264 insertions(+), 29 deletions(-) create mode 100755 pkgs/development/tools/build-managers/rebar3/rebar3-nix-bootstrap delete mode 100644 pkgs/development/tools/erlang/rebar3-nix-bootstrap/default.nix diff --git a/pkgs/development/beam-modules/build-rebar3.nix b/pkgs/development/beam-modules/build-rebar3.nix index 2627ddf99a6..f13322519fd 100644 --- a/pkgs/development/beam-modules/build-rebar3.nix +++ b/pkgs/development/beam-modules/build-rebar3.nix @@ -48,7 +48,7 @@ let configurePhase = '' runHook preConfigure - rebar3-nix-bootstrap + ${erlang}/bin/escript ${rebar3.bootstrapper} runHook postConfigure ''; diff --git a/pkgs/development/tools/build-managers/rebar3/default.nix b/pkgs/development/tools/build-managers/rebar3/default.nix index 057ae59b144..2b5eee407a4 100644 --- a/pkgs/development/tools/build-managers/rebar3/default.nix +++ b/pkgs/development/tools/build-managers/rebar3/default.nix @@ -1,10 +1,12 @@ { stdenv, writeText, callPackage, fetchurl, - fetchHex, erlang, hermeticRebar3 ? true, rebar3-nix-bootstrap, + fetchHex, erlang, hermeticRebar3 ? true, tree, fetchFromGitHub, hexRegistrySnapshot }: let version = "3.0.0-beta.4"; + bootstrapper = ./rebar3-nix-bootstrap; + # TODO: all these below probably should go into nixpkgs.erlangModules.sources.* # {erlware_commons, "0.16.0"}, erlware_commons = fetchHex { @@ -83,16 +85,18 @@ stdenv.mkDerivation { sha256 = "0px66scjdia9aaa5z36qzxb848r56m0k98g0bxw065a2narsh4xy"; }; + inherit bootstrapper; + patches = if hermeticRebar3 == true then [ ./hermetic-bootstrap.patch ./hermetic-rebar3.patch ] else []; buildInputs = [ erlang tree ]; - propagatedBuildInputs = [ hexRegistrySnapshot 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/rebar3-nix-bootstrap b/pkgs/development/tools/build-managers/rebar3/rebar3-nix-bootstrap new file mode 100755 index 00000000000..d75d69f054d --- /dev/null +++ b/pkgs/development/tools/build-managers/rebar3/rebar3-nix-bootstrap @@ -0,0 +1,256 @@ +#!/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(RequiredData). + +%% @doc +%% This actually runs the command. There are two modes 'register_only' +%% where the register is created from hex and everything else. +-spec do(#data{}) -> ok. +do(RequiredData = #data{registry_only = true}) -> + ok = bootstrap_registry(RequiredData); +do(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, "register-only" and "compile-ports" +-spec parse_args([string()]) -> #data{}. +parse_args(Args) -> + {ok, #data{registry_only = lists:member("registry-only", Args)}}. + +-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) -> + 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) -> + 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 = update_config(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 update_config([term()]) -> [term()]. +update_config(Config) -> + case lists:keysearch(plugins, 1, Config) of + {ok, {plugins, PluginList}} -> + lists:keystore(plugins, 1, Config, {plugins, [Config | PluginList]}); + _ -> + [{plugins, [pc]} | Config] + end. + +-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}) -> + case app_src_exists(Name) of + {true, SrcFile} -> + 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}), + file:write_file(SrcFile, io_lib:fwrite("~p.\n", [{application, Name, NewDetails}])). + +-spec app_src_exists(string()) -> boolean(). +app_src_exists(Name) -> + FileName = filename:join("src", + lists:concat([Name, ".app.src"])), + {filelib:is_file(FileName), FileName}. + + +%% @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/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/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 02a1721ab17..3b0f9db8f16 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5311,7 +5311,6 @@ 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 { }; hexRegistrySnapshot = callPackage ../development/beam-modules/hex-registry-snapshot.nix { }; fetchHex = callPackage ../development/beam-modules/fetch-hex.nix { }; From f36be6edbfc0bfa8f203db0175b489a4e7553301 Mon Sep 17 00:00:00 2001 From: Eric Merritt Date: Fri, 15 Apr 2016 11:09:52 -0700 Subject: [PATCH 10/96] hex-packages: update to the latest version hex2nix has changed to accomodate elixir and erlang.mk. This includes those changes along with updates from hex itself. --- pkgs/development/beam-modules/default.nix | 2 +- .../development/beam-modules/hex-packages.nix | 31290 +++------------- 2 files changed, 5157 insertions(+), 26135 deletions(-) diff --git a/pkgs/development/beam-modules/default.nix b/pkgs/development/beam-modules/default.nix index fec600400cb..8a79a0b3e40 100644 --- a/pkgs/development/beam-modules/default.nix +++ b/pkgs/development/beam-modules/default.nix @@ -2,7 +2,7 @@ let self = rec { - hexPackages = import ./hex-packages.nix { stdenv = stdenv; callPackage = self.callPackage; }; + 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 {}; diff --git a/pkgs/development/beam-modules/hex-packages.nix b/pkgs/development/beam-modules/hex-packages.nix index e7745ce6050..1fcbb6f3e51 100644 --- a/pkgs/development/beam-modules/hex-packages.nix +++ b/pkgs/development/beam-modules/hex-packages.nix @@ -2,16 +2,864 @@ /* 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, callPackage, overrides ? (self: super: {}) }: +{ stdenv, pkgs, callPackage, overrides ? (self: super: {}) }: let packages = self: rec { abnf_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "abnf"; version = "0.0.1"; src = fetchHex { @@ -26,15 +874,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/vanstee/abnf"; }; - } + } // packageOverrides) ) {}; abnf = abnf_0_0_1; absinthe_1_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "absinthe"; version = "1.0.0"; src = fetchHex { @@ -49,13 +897,13 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/CargoSense/absinthe"; }; - } + } // packageOverrides) ) {}; absinthe_1_1_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "absinthe"; version = "1.1.2"; src = fetchHex { @@ -70,15 +918,21 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/CargoSense/absinthe"; }; - } + } // packageOverrides) ) {}; absinthe = absinthe_1_1_2; absinthe_plug_1_0_0 = callPackage ( - { buildMix, fetchHex, plug_1_1_3, absinthe_1_0_0 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + absinthe_1_0_0 + }: + buildMix ({ name = "absinthe_plug"; version = "1.0.0"; src = fetchHex { @@ -95,15 +949,15 @@ let 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, fetchHex, absinthe_1_1_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, absinthe_1_1_2 }: + buildMix ({ name = "absinthe_relay"; version = "0.8.0"; src = fetchHex { @@ -119,15 +973,21 @@ let 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, fetchHex, plug_1_1_3, cowboy_1_0_4 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ name = "access_token_extractor"; version = "0.1.1"; src = fetchHex { @@ -146,38 +1006,15 @@ let homepage = "https://github.com/rohanpujaris/access_token_extractor"; }; - } + } // packageOverrides) ) {}; access_token_extractor = access_token_extractor_0_1_1; - active_0_9_0 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "active"; - version = "0.9.0"; - src = fetchHex { - pkg = "active"; - version = "0.9.0"; - sha256 = - "3ec6a0eda29137866674ddd56d44f6b0383fa3ec4480121639d2ef61b443ec28"; - }; - - meta = { - description = ''Erlang active reloader''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/synrc/active"; - }; - } - ) {}; - - active = active_0_9_0; - adam7_0_4_0 = callPackage ( - { buildMix, fetchHex, apex_0_3_7 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, apex_0_3_7 }: + buildMix ({ name = "adam7"; version = "0.4.0"; src = fetchHex { @@ -195,15 +1032,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/SenecaSystems/imagineer"; }; - } + } // packageOverrides) ) {}; adam7 = adam7_0_4_0; adap_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "adap"; version = "0.0.1"; src = fetchHex { @@ -220,107 +1057,15 @@ let license = stdenv.lib.licenses.mit; homepage = "http://github.com/awetzel/adap"; }; - } + } // packageOverrides) ) {}; adap = adap_0_0_1; - addict_0_1_0 = callPackage - ( - { - buildMix, - fetchHex, - phoenix_1_1_4, - mailgun_0_0_2, - ecto_0_16_0, - cowboy_1_0_4, - comeonin_1_6_0 - }: - buildMix { - name = "addict"; - version = "0.1.0"; - src = fetchHex { - pkg = "addict"; - version = "0.1.0"; - sha256 = - "8d8ca253ee73bae88c1eb756992fe4435aa4e7b58eddcd102097b13dc4af611a"; - }; - beamDeps = [ - phoenix_1_1_4 - mailgun_0_0_2 - ecto_0_16_0 - cowboy_1_0_4 - comeonin_1_6_0 - ]; - - meta = { - longDescription = ''Addict allows you to manage users on your - Phoenix app easily. Register, login, logout, - recover password and password updating is - available off-the-shelf.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/trenpixster/addict"; - }; - } - ) {}; - - addict = addict_0_1_0; - - address_us_0_1_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "address_us"; - version = "0.1.1"; - src = fetchHex { - pkg = "address_us"; - version = "0.1.1"; - sha256 = - "e29c6dd33d2a2ebd97441bfdac3eb23fa6221cf5d3be8b8c66247ee61ce442c6"; - }; - - meta = { - description = ''Library for parsing US Addresses into their - individual parts.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/smashedtoatoms/address_us"; - }; - } - ) {}; - - address_us = address_us_0_1_1; - - aeacus_0_3_0 = callPackage - ( - { buildMix, fetchHex, comeonin_1_6_0 }: - buildMix { - name = "aeacus"; - version = "0.3.0"; - src = fetchHex { - pkg = "aeacus"; - version = "0.3.0"; - sha256 = - "3cc138cfc7c508cfd85afddd0881632dde2e663d222c9e3749fae8c80ebb2c0b"; - }; - beamDeps = [ comeonin_1_6_0 ]; - - meta = { - longDescription = ''A simple, secure, and highly configurable - Elixir identity [username | email | id | - etc.]/password authentication module; Compatible - with Ecto.''; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/zmoshansky/aeacus"; - }; - } - ) {}; - - aeacus = aeacus_0_3_0; - ahab_0_1_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ahab"; version = "0.1.1"; src = fetchHex { @@ -336,115 +1081,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/jquadrin/ahab"; }; - } + } // packageOverrides) ) {}; ahab = ahab_0_1_1; - airbrake_0_1_0 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "airbrake"; - version = "0.1.0"; - src = fetchHex { - pkg = "airbrake"; - version = "0.1.0"; - sha256 = - "45d3e2da7f5a8793b9fd7752cbeaa988a848396f44b77d0265f3bed36182d901"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''An Elixir notifier to the Airbrake''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/romul/airbrake-elixir"; - }; - } - ) {}; - - airbrake = airbrake_0_1_0; - - airbrake_plug_0_1_1 = callPackage - ( - { buildMix, fetchHex, airbrake_0_1_0 }: - buildMix { - name = "airbrake_plug"; - version = "0.1.1"; - src = fetchHex { - pkg = "airbrake_plug"; - version = "0.1.1"; - sha256 = - "2560f8b830e94b09788952165cd3053b47106d4afebf547dc370d7f307e804b9"; - }; - beamDeps = [ airbrake_0_1_0 ]; - - meta = { - description = ''Airbrake reporter for Elixir`s Plug''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/romul/airbrake_plug"; - }; - } - ) {}; - - airbrake_plug = airbrake_plug_0_1_1; - - airbrakex_0_0_6 = callPackage - ( - { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: - buildMix { - name = "airbrakex"; - version = "0.0.6"; - src = fetchHex { - pkg = "airbrakex"; - version = "0.0.6"; - sha256 = - "a8efc0a9a641a6c5ada2585ee5889291b74ded10977af7b1a4ac6bc445d166e8"; - }; - beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; - - meta = { - description = ''Airbrake Elixir Notifier''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/fazibear/airbrakex"; - }; - } - ) {}; - - airbrakex = airbrakex_0_0_6; - - airbrakify_0_0_1 = callPackage - ( - { - buildMix, fetchHex, poison_2_1_0, plug_1_1_3, httpoison_0_8_2 - }: - buildMix { - name = "airbrakify"; - version = "0.0.1"; - src = fetchHex { - pkg = "airbrakify"; - version = "0.0.1"; - sha256 = - "973f895ba83e6dd71cf87182419e144db5c3ac23e43b7a1247e51559bf2737b6"; - }; - beamDeps = [ poison_2_1_0 plug_1_1_3 httpoison_0_8_2 ]; - - meta = { - longDescription = ''A simple Airbrake/Errbit library for - Elixir/Phoenix projects. Currently only supports - error/exception notifications via a Plug.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/Diamond/airbrakify"; - }; - } - ) {}; - - airbrakify = airbrakify_0_0_1; - alambic_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "alambic"; version = "0.1.0"; src = fetchHex { @@ -462,15 +1107,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/sdanzan/alambic"; }; - } + } // packageOverrides) ) {}; alambic = alambic_0_1_0; alchemic_pinyin_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "alchemic_pinyin"; version = "0.1.0"; src = fetchHex { @@ -485,15 +1130,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "alchemist"; version = "0.0.2"; src = fetchHex { @@ -508,15 +1153,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/jkakar/alchemist"; }; - } + } // packageOverrides) ) {}; alchemist = alchemist_0_0_2; alchemy_0_0_1 = callPackage ( - { buildMix, fetchHex, uuid_1_1_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, uuid_1_1_3 }: + buildMix ({ name = "alchemy"; version = "0.0.1"; src = fetchHex { @@ -532,15 +1177,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/keathley/alchemy"; }; - } + } // packageOverrides) ) {}; alchemy = alchemy_0_0_1; aleppo_0_9_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "aleppo"; version = "0.9.0"; src = fetchHex { @@ -555,15 +1200,15 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/ErlyORM/aleppo"; }; - } + } // packageOverrides) ) {}; aleppo = aleppo_0_9_0; alexa_0_1_12 = callPackage ( - { buildMix, fetchHex, poison_2_1_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }: + buildMix ({ name = "alexa"; version = "0.1.12"; src = fetchHex { @@ -580,15 +1225,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/col/alexa"; }; - } + } // packageOverrides) ) {}; alexa = alexa_0_1_12; alexa_plug_0_2_0 = callPackage ( - { buildMix, fetchHex, plug_1_1_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ name = "alexa_plug"; version = "0.2.0"; src = fetchHex { @@ -606,15 +1251,22 @@ let 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, fetchHex, plug_1_1_3, cowboy_1_0_4, alexa_0_1_12 }: - buildMix { + { + 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 { @@ -631,15 +1283,15 @@ let 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, fetchHex, quark_1_0_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, quark_1_0_2 }: + buildMix ({ name = "algae"; version = "0.10.0"; src = fetchHex { @@ -655,192 +1307,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/robot-overlord/algae"; }; - } + } // packageOverrides) ) {}; algae = algae_0_10_0; - algolia_0_3_1 = callPackage - ( - { buildMix, fetchHex, poison_1_0_3, hackney_1_6_0 }: - buildMix { - name = "algolia"; - version = "0.3.1"; - src = fetchHex { - pkg = "algolia"; - version = "0.3.1"; - sha256 = - "a88020c68712d134e66ccde3d2029766249d3da0188da369448a24f66d2f9f6c"; - }; - beamDeps = [ poison_1_0_3 hackney_1_6_0 ]; - - meta = { - description = ''Elixir implementation of Algolia Search API''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/sikanhe/algolia-elixir"; - }; - } - ) {}; - - algolia = algolia_0_3_1; - - alice_0_3_3 = callPackage - ( - { buildMix, fetchHex, slack_0_4_2, redix_0_3_6, poolboy_1_5_1 }: - buildMix { - name = "alice"; - version = "0.3.3"; - src = fetchHex { - pkg = "alice"; - version = "0.3.3"; - sha256 = - "637953131f96a877f13661da9640efcca4417c69f51db70db85bfa18648156f8"; - }; - beamDeps = [ slack_0_4_2 redix_0_3_6 poolboy_1_5_1 ]; - - meta = { - description = ''A Slack bot''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/adamzaninovich/alice"; - }; - } - ) {}; - - alice = alice_0_3_3; - - alice_against_humanity_0_1_2 = callPackage - ( - { buildMix, fetchHex, alice_0_3_3 }: - buildMix { - name = "alice_against_humanity"; - version = "0.1.2"; - src = fetchHex { - pkg = "alice_against_humanity"; - version = "0.1.2"; - sha256 = - "aac5f049b59d0eaaea2383e1fc8fec28125b9a29ffda7fbe214d829738ad3935"; - }; - beamDeps = [ alice_0_3_3 ]; - - meta = { - description = ''A handler for the Alice Slack bot. Play Cards - Against Humanity with Alice.''; - license = stdenv.lib.licenses.mit; - homepage = - "https://github.com/adamzaninovich/alice_against_humanity"; - }; - } - ) {}; - - alice_against_humanity = alice_against_humanity_0_1_2; - - alice_google_images_0_1_3 = callPackage - ( - { buildMix, fetchHex, alice_0_3_3 }: - buildMix { - name = "alice_google_images"; - version = "0.1.3"; - src = fetchHex { - pkg = "alice_google_images"; - version = "0.1.3"; - sha256 = - "04b4e23c44a67c032c1ac8e2da4ca0fca03ec20cf207b4cb40eba0cb17e975e8"; - }; - beamDeps = [ alice_0_3_3 ]; - - meta = { - description = ''A handler for the Alice Slack bot. Get random - images from Google''; - license = stdenv.lib.licenses.mit; - homepage = - "https://github.com/adamzaninovich/alice_google_images"; - }; - } - ) {}; - - alice_google_images = alice_google_images_0_1_3; - - alice_karma_0_1_1 = callPackage - ( - { buildMix, fetchHex, alice_0_3_3 }: - buildMix { - name = "alice_karma"; - version = "0.1.1"; - src = fetchHex { - pkg = "alice_karma"; - version = "0.1.1"; - sha256 = - "c73198e5edb1f5a05e744ca11afa0d2cc58ec183ca0c32bd5e8a01efa7b61559"; - }; - beamDeps = [ alice_0_3_3 ]; - - meta = { - longDescription = ''A handler for the Alice Slack bot. Allows - Alice to keep track of karma points for - arbitrary terms.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/adamzaninovich/alice_karma"; - }; - } - ) {}; - - alice_karma = alice_karma_0_1_1; - - alice_shizzle_0_1_2 = callPackage - ( - { buildMix, fetchHex, gizoogle_0_0_2, alice_0_3_3 }: - buildMix { - name = "alice_shizzle"; - version = "0.1.2"; - src = fetchHex { - pkg = "alice_shizzle"; - version = "0.1.2"; - sha256 = - "c98481d59c004f905958b9412bff1d288a649cf373afb4fea307222af2597c19"; - }; - beamDeps = [ gizoogle_0_0_2 alice_0_3_3 ]; - - meta = { - longDescription = ''A handlez fo` tha Alice Slack bot fo` realz. - Uses Gizoogle ta allow you ta drop a rhyme like - a thug n` retrieve links fo` translated sitez''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/notdevinclark/alice_shizzle"; - }; - } - ) {}; - - alice_shizzle = alice_shizzle_0_1_2; - - alice_xkcd_0_0_3 = callPackage - ( - { buildMix, fetchHex, xkcd_0_0_1, alice_0_3_3 }: - buildMix { - name = "alice_xkcd"; - version = "0.0.3"; - src = fetchHex { - pkg = "alice_xkcd"; - version = "0.0.3"; - sha256 = - "13562b43fd99c7d9cdc568d7511c154842b9a59a19eca9df019069193bd94842"; - }; - beamDeps = [ xkcd_0_0_1 alice_0_3_3 ]; - - meta = { - longDescription = ''A handler for the Alice Slack bot. Retrieves - latest, specific and random XKCD comics.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/notdevinclark/alice_xkcd"; - }; - } - ) {}; - - alice_xkcd = alice_xkcd_0_0_3; - alphonse_0_1_0 = callPackage ( - { buildMix, fetchHex, cipher_0_1_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, cipher_0_1_0 }: + buildMix ({ name = "alphonse"; version = "0.1.0"; src = fetchHex { @@ -857,44 +1332,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/chrisenytc/alphonse"; }; - } + } // packageOverrides) ) {}; alphonse = alphonse_0_1_0; - amazon_product_advertising_client_0_1_1 = callPackage - ( - { - buildMix, fetchHex, timex_1_0_2, sweet_xml_0_6_1, httpoison_0_8_2 - }: - buildMix { - name = "amazon_product_advertising_client"; - version = "0.1.1"; - src = fetchHex { - pkg = "amazon_product_advertising_client"; - version = "0.1.1"; - sha256 = - "406111cedbd475cab29bdcc69f48ddc3670e57d2e3294e8d948c117ae492951c"; - }; - beamDeps = [ timex_1_0_2 sweet_xml_0_6_1 httpoison_0_8_2 ]; - - meta = { - description = ''An Amazon Product Advertising API client for - Elixir''; - license = stdenv.lib.licenses.mit; - homepage = - "https://github.com/zachgarwood/elixir-amazon-product-advertising-client"; - }; - } - ) {}; - - amazon_product_advertising_client = - amazon_product_advertising_client_0_1_1; - amnesia_0_2_1 = callPackage ( - { buildMix, fetchHex, exquisite_0_1_6 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, exquisite_0_1_6 }: + buildMix ({ name = "amnesia"; version = "0.2.1"; src = fetchHex { @@ -910,110 +1356,15 @@ let license = stdenv.lib.licenses.wtfpl; homepage = "https://github.com/meh/amnesia"; }; - } + } // packageOverrides) ) {}; amnesia = amnesia_0_2_1; - amqp_0_1_1 = callPackage - ( - { buildMix, fetchHex, amqp_client_3_5_6 }: - buildMix { - name = "amqp"; - version = "0.1.1"; - src = fetchHex { - pkg = "amqp"; - version = "0.1.1"; - sha256 = - "64cf314b8953cef7c809cce8f21cb8574f1ca29226b007bbaab7ac9079c96912"; - }; - beamDeps = [ amqp_client_3_5_6 ]; - - meta = { - description = ''Idiomatic Elixir client for RabbitMQ.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/pma/amqp"; - }; - } - ) {}; - - amqp_0_1_4 = callPackage - ( - { buildMix, fetchHex, amqp_client_3_5_6 }: - buildMix { - name = "amqp"; - version = "0.1.4"; - src = fetchHex { - pkg = "amqp"; - version = "0.1.4"; - sha256 = - "a75d9b9283f306627b1d72a1ae326bb8c2910c5cd8198fa036e575b74b340ef4"; - }; - beamDeps = [ amqp_client_3_5_6 ]; - - meta = { - description = ''Idiomatic Elixir client for RabbitMQ.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/pma/amqp"; - }; - } - ) {}; - - amqp = amqp_0_1_4; - - amqp_client_3_5_6 = callPackage - ( - { buildRebar3, fetchHex, rabbit_common_3_5_6 }: - buildRebar3 { - name = "amqp_client"; - version = "3.5.6"; - src = fetchHex { - pkg = "amqp_client"; - version = "3.5.6"; - sha256 = - "3dc10a5ba146fd737502d407a1afee0c460b4477d66ca361240985f412a2e9a3"; - }; - - beamDeps = [ rabbit_common_3_5_6 ]; - - meta = { - description = ''Erlang RabbitMQ/AMQP client.''; - license = stdenv.lib.licenses.mpl11; - homepage = "https://github.com/jbrisbin/amqp_client"; - }; - } - ) {}; - - amqp_client = amqp_client_3_5_6; - - amrita_0_4_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "amrita"; - version = "0.4.0"; - src = fetchHex { - pkg = "amrita"; - version = "0.4.0"; - sha256 = - "8d3e642e665f9634aa44463ed6964ccf05e251c81ef92aaa9eacce2e9be959ad"; - }; - - meta = { - description = ''A polite, well mannered and thoroughly upstanding - testing framework for Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "http://amrita.io"; - }; - } - ) {}; - - amrita = amrita_0_4_0; - anaphora_0_1_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "anaphora"; version = "0.1.2"; src = fetchHex { @@ -1028,110 +1379,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/sviridov/anaphora-elixir"; }; - } + } // packageOverrides) ) {}; anaphora = anaphora_0_1_2; - anilixir_1_0_0 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "anilixir"; - version = "1.0.0"; - src = fetchHex { - pkg = "anilixir"; - version = "1.0.0"; - sha256 = - "ee5c6dfa7e5250d8ec5c9b04910e3202788ceeba231cb3ff8b22e479cc64f1c3"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''Anilist API client for Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/sotojuan/anilixir"; - }; - } - ) {}; - - anilixir = anilixir_1_0_0; - - anubis_0_1_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "anubis"; - version = "0.1.0"; - src = fetchHex { - pkg = "anubis"; - version = "0.1.0"; - sha256 = - "38329609a08261ba50b8ef2cfffa3bc4926b5412f8683a9322e59cf953779aab"; - }; - - meta = { - description = '' Anubis is a framework for building command line - applications. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/bennyhallett/anubis"; - }; - } - ) {}; - - anubis_0_3_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "anubis"; - version = "0.3.0"; - src = fetchHex { - pkg = "anubis"; - version = "0.3.0"; - sha256 = - "556039ca0e045116e3a2f71b15e7d884122e6b7596fede05d022d28412df5ae2"; - }; - - meta = { - description = '' Anubis is a framework for building command line - applications. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/bennyhallett/anubis"; - }; - } - ) {}; - - anubis = anubis_0_3_0; - - apache_passwd_md5_1_0_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "apache_passwd_md5"; - version = "1.0.0"; - src = fetchHex { - pkg = "apache_passwd_md5"; - version = "1.0.0"; - sha256 = - "2ffc49fe46aadcd21248aacb4a9c723c8d8a0304747f8cf8e6089e97404f59f1"; - }; - - meta = { - longDescription = ''Provides Apache/APR style password hashing. - Useful for generating or authenticating against - MD5 htpasswd passwords. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/kevinmontuori/Apache.PasswdMD5"; - }; - } - ) {}; - - apache_passwd_md5 = apache_passwd_md5_1_0_0; - apex_0_3_7 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "apex"; version = "0.3.7"; src = fetchHex { @@ -1146,13 +1402,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/bjro/apex"; }; - } + } // packageOverrides) ) {}; apex_0_4_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "apex"; version = "0.4.0"; src = fetchHex { @@ -1167,15 +1423,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/bjro/apex"; }; - } + } // packageOverrides) ) {}; apex = apex_0_4_0; apix_0_1_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "apix"; version = "0.1.0"; src = fetchHex { @@ -1192,15 +1448,21 @@ let homepage = "https://github.com/liveforeverx/apix"; }; - } + } // packageOverrides) ) {}; apix = apix_0_1_0; apns_0_0_12 = callPackage ( - { buildMix, fetchHex, poolboy_1_5_1, poison_1_5_2 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + poolboy_1_5_1, + poison_1_5_2 + }: + buildMix ({ name = "apns"; version = "0.0.12"; src = fetchHex { @@ -1217,39 +1479,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/chvanikoff/apns4ex"; }; - } + } // packageOverrides) ) {}; apns = apns_0_0_12; - apostle_0_0_3 = callPackage - ( - { buildMix, fetchHex, poison_1_4_0, httpoison_0_7_5 }: - buildMix { - name = "apostle"; - version = "0.0.3"; - src = fetchHex { - pkg = "apostle"; - version = "0.0.3"; - sha256 = - "3bb6b358236bbf730df69fa775f230355235a7e24dae73a9f17e4237c3fdb583"; - }; - beamDeps = [ poison_1_4_0 httpoison_0_7_5 ]; - - meta = { - description = ''Elixir client for Apostle.io.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/jamesotron/apostle-elixir"; - }; - } - ) {}; - - apostle = apostle_0_0_3; - ar2ecto_0_1_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ar2ecto"; version = "0.1.2"; src = fetchHex { @@ -1265,66 +1503,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/aforward/ar2ecto"; }; - } + } // packageOverrides) ) {}; ar2ecto = ar2ecto_0_1_2; - arc_0_5_1 = callPackage - ( - { - buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2, ex_aws_0_4_18 - }: - buildMix { - name = "arc"; - version = "0.5.1"; - src = fetchHex { - pkg = "arc"; - version = "0.5.1"; - sha256 = - "21c64533b2b13033c57cbe031bc064a7c3edfa9a1cb52286dfeda7c4c6d83426"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ex_aws_0_4_18 ]; - - meta = { - description = ''Flexible file upload and attachment library for - Elixir.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/stavro/arc"; - }; - } - ) {}; - - arc = arc_0_5_1; - - arc_ecto_0_3_2 = callPackage - ( - { buildMix, fetchHex, ecto_2_0_0_beta_2, arc_0_5_1 }: - buildMix { - name = "arc_ecto"; - version = "0.3.2"; - src = fetchHex { - pkg = "arc_ecto"; - version = "0.3.2"; - sha256 = - "92cb9e81eb75a1a9fdb4f4fc8e83714b9ee67e3ddb96db9d53c46e7002bf7e8d"; - }; - beamDeps = [ ecto_2_0_0_beta_2 arc_0_5_1 ]; - - meta = { - description = ''An integration with Arc and Ecto.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/stavro/arc_ecto"; - }; - } - ) {}; - - arc_ecto = arc_ecto_0_3_2; - argent_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "argent"; version = "0.0.1"; src = fetchHex { @@ -1338,15 +1525,15 @@ let description = ''A currency management library for elixir.''; }; - } + } // packageOverrides) ) {}; argent = argent_0_0_1; argument_parser_0_1_3 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "argument_parser"; version = "0.1.3"; src = fetchHex { @@ -1362,15 +1549,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "array"; version = "1.0.1"; src = fetchHex { @@ -1385,7 +1572,7 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/takscape/elixir-array"; }; - } + } // packageOverrides) ) {}; array = array_1_0_1; @@ -1393,9 +1580,14 @@ let artifact_0_4_0 = callPackage ( { - buildMix, fetchHex, porcelain_2_0_1, poolboy_1_5_1, plug_1_1_3 + buildMix, + packageOverrides ? {}, + fetchHex, + porcelain_2_0_1, + poolboy_1_5_1, + plug_1_1_3 }: - buildMix { + buildMix ({ name = "artifact"; version = "0.4.0"; src = fetchHex { @@ -1412,15 +1604,21 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/doomspork/artifact"; }; - } + } // packageOverrides) ) {}; artifact = artifact_0_4_0; aruspex_0_1_0 = callPackage ( - { buildMix, fetchHex, zipper_tree_0_1_1, exyz_1_0_0 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + zipper_tree_0_1_1, + exyz_1_0_0 + }: + buildMix ({ name = "aruspex"; version = "0.1.0"; src = fetchHex { @@ -1437,39 +1635,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://www.github.com/dkendal/aruspex"; }; - } + } // packageOverrides) ) {}; aruspex = aruspex_0_1_0; - asanaficator_0_0_1 = callPackage - ( - { buildMix, fetchHex, httpoison_0_7_5, exjsx_3_2_0 }: - buildMix { - name = "asanaficator"; - version = "0.0.1"; - src = fetchHex { - pkg = "asanaficator"; - version = "0.0.1"; - sha256 = - "891ca378a0b83d7018c10073ab14f35930186098d777e24550fff84a9683bfa3"; - }; - beamDeps = [ httpoison_0_7_5 exjsx_3_2_0 ]; - - meta = { - description = ''Simple Elixir wrapper for the Asana API''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/trenpixster/asanaficator"; - }; - } - ) {}; - - asanaficator = asanaficator_0_0_1; - ashes_0_0_3 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ashes"; version = "0.0.3"; src = fetchHex { @@ -1485,39 +1659,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/nickgartmann/ashes"; }; - } + } // packageOverrides) ) {}; ashes = ashes_0_0_3; - assembla_api_0_1_0 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "assembla_api"; - version = "0.1.0"; - src = fetchHex { - pkg = "assembla_api"; - version = "0.1.0"; - sha256 = - "b4a3898de536e4820702c0f119993fd2804e91e2525d1e7eba57d8744983ef24"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''Assembla API client''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/Assembla/ex_assembla_api"; - }; - } - ) {}; - - assembla_api = assembla_api_0_1_0; - assert_diff_0_0_5 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "assert_diff"; version = "0.0.5"; src = fetchHex { @@ -1532,38 +1682,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/ske77/assert_diff"; }; - } + } // packageOverrides) ) {}; assert_diff = assert_diff_0_0_5; - atlas_0_2_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "atlas"; - version = "0.2.0"; - src = fetchHex { - pkg = "atlas"; - version = "0.2.0"; - sha256 = - "1c887e4a6224f3189a92e4e4684a2623161a70c7fbd0fd7db79233d5d2f6facf"; - }; - - meta = { - description = ''Object Relational Mapper for Elixir ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/chrismccord/atlas"; - }; - } - ) {}; - - atlas = atlas_0_2_0; - auth_test_support_0_0_6 = callPackage ( - { buildMix, fetchHex, plug_1_1_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ name = "auth_test_support"; version = "0.0.6"; src = fetchHex { @@ -1580,15 +1707,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "authentic"; version = "0.0.1"; src = fetchHex { @@ -1602,15 +1729,21 @@ let description = ''Auth for Phoenix''; license = stdenv.lib.licenses.mit; }; - } + } // packageOverrides) ) {}; authentic = authentic_0_0_1; auto_doc_0_0_2 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, plug_1_1_3 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_5_2, + plug_1_1_3 + }: + buildMix ({ name = "auto_doc"; version = "0.0.2"; src = fetchHex { @@ -1627,15 +1760,21 @@ let 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, fetchHex, plug_1_1_3, cowboy_1_0_4 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ name = "autobots_license"; version = "0.1.0"; src = fetchHex { @@ -1647,15 +1786,15 @@ let beamDeps = [ plug_1_1_3 cowboy_1_0_4 ]; meta = { }; - } + } // packageOverrides) ) {}; autobots_license = autobots_license_0_1_0; avex_0_2_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "avex"; version = "0.2.0"; src = fetchHex { @@ -1670,41 +1809,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/jonhkr/avex"; }; - } + } // packageOverrides) ) {}; avex = avex_0_2_0; - aws_0_0_10 = callPackage - ( - { - buildMix, fetchHex, timex_1_0_2, poison_1_5_2, httpoison_0_8_2 - }: - buildMix { - name = "aws"; - version = "0.0.10"; - src = fetchHex { - pkg = "aws"; - version = "0.0.10"; - sha256 = - "ce2c9ffbaf7b9a3762826a6f8be8ac6ce8d4ef5c74e021514d14d5cafd625d03"; - }; - beamDeps = [ timex_1_0_2 poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''AWS clients for Elixir''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/jkakar/aws-elixir"; - }; - } - ) {}; - - aws = aws_0_0_10; - aws_auth_0_2_5 = callPackage ( - { buildMix, fetchHex, timex_1_0_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, timex_1_0_2 }: + buildMix ({ name = "aws_auth"; version = "0.2.5"; src = fetchHex { @@ -1720,15 +1833,15 @@ let 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, fetchHex, erlexec_1_1_0 }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex, erlexec_1_1_0 }: + buildRebar3 ({ name = "aws_cli"; version = "0.1.0"; src = fetchHex { @@ -1745,244 +1858,15 @@ let homepage = "https://github.com/fyler/aws_cli"; }; - } + } // packageOverrides) ) {}; aws_cli = aws_cli_0_1_0; - aws_erlang_0_1_1 = callPackage - ( - { - buildMix, - fetchHex, - jsx_2_8_0, - hackney_1_4_8, - erlware_commons_0_18_0 - }: - buildMix { - name = "aws_erlang"; - version = "0.1.1"; - src = fetchHex { - pkg = "aws_erlang"; - version = "0.1.1"; - sha256 = - "5a0f27869ec106eac25fa66aa39f226a2eee3f6b3ab02879e4fa60bab7937709"; - }; - beamDeps = [ jsx_2_8_0 hackney_1_4_8 erlware_commons_0_18_0 ]; - - meta = { - description = ''aws clients for erlang''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/jkakar/aws-erlang"; - }; - } - ) {}; - - aws_erlang = aws_erlang_0_1_1; - - aws_http_0_2_4 = callPackage - ( - { buildRebar3, fetchHex, lhttpc_1_3_0, barrel_jiffy_0_14_4 }: - buildRebar3 { - name = "aws_http"; - version = "0.2.4"; - src = fetchHex { - pkg = "aws_http"; - version = "0.2.4"; - sha256 = - "96065da0d348a8e47e01531cfa720615e15a21c1bd4e5c82decf56026cde128f"; - }; - - beamDeps = [ lhttpc_1_3_0 barrel_jiffy_0_14_4 ]; - - meta = { - description = ''Amazon AWS HTTP helpers''; - - homepage = "https://github.com/anha0825/erl_aws_http"; - }; - } - ) {}; - - aws_http = aws_http_0_2_4; - - b2_0_0_6 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "b2"; - version = "0.0.6"; - src = fetchHex { - pkg = "b2"; - version = "0.0.6"; - sha256 = - "f8b33d1ec36576dfbca3f2f4c5fad1a9a227207d1ef63b3a388778e8fad3333a"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''Elixir B2 cloud API wrapper''; - - }; - } - ) {}; - - b2 = b2_0_0_6; - - backoff_1_1_3 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "backoff"; - version = "1.1.3"; - src = fetchHex { - pkg = "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; - - balanced_3_1_0 = callPackage - ( - { buildMix, fetchHex, poison_1_2_1, httpotion_2_2_2 }: - buildMix { - name = "balanced"; - version = "3.1.0"; - src = fetchHex { - pkg = "balanced"; - version = "3.1.0"; - sha256 = - "f86f199d76ac66407fbb82fb927e999ec4119a617500965b824ceb4071fcd2d2"; - }; - beamDeps = [ poison_1_2_1 httpotion_2_2_2 ]; - - meta = { - description = ''Balanced API for Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/bryanjos/balanced-elixir"; - }; - } - ) {}; - - balanced = balanced_3_1_0; - - bamboo_0_3_2 = callPackage - ( - { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: - buildMix { - name = "bamboo"; - version = "0.3.2"; - src = fetchHex { - pkg = "bamboo"; - version = "0.3.2"; - sha256 = - "1b4bfdddae49f6fc66616c63b4d2d9a0e99d40a08619004f5c4f4e4aebfa20ed"; - }; - beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; - - meta = { - longDescription = ''Straightforward, composable, and adapter - based Elixir email library for people that love - piping. Adapters for Mandrill, Sendgrid, - in-memory, and test.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/paulcsmith/bamboo"; - }; - } - ) {}; - - bamboo_0_4_0 = callPackage - ( - { - buildMix, fetchHex, poison_2_1_0, plug_1_1_3, httpoison_0_8_2 - }: - buildMix { - name = "bamboo"; - version = "0.4.0"; - src = fetchHex { - pkg = "bamboo"; - version = "0.4.0"; - sha256 = - "5227b1e65a8634da0f46e1eb41a7ca44d3f6de33bfadf950da16e65e9c8428a7"; - }; - beamDeps = [ poison_2_1_0 plug_1_1_3 httpoison_0_8_2 ]; - - meta = { - longDescription = ''Straightforward, composable, and adapter - based Elixir email library for people that love - piping. Adapters for Mandrill, Sendgrid, - in-memory, and test.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/paulcsmith/bamboo"; - }; - } - ) {}; - - bamboo = bamboo_0_4_0; - - bamboo_sendgrid_0_1_0 = callPackage - ( - { - buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2, bamboo_0_3_2 - }: - buildMix { - name = "bamboo_sendgrid"; - version = "0.1.0"; - src = fetchHex { - pkg = "bamboo_sendgrid"; - version = "0.1.0"; - sha256 = - "ee44ac3f096777064c4cf02df238276338914295f5b17caf38192789a590825c"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 bamboo_0_3_2 ]; - - meta = { - description = ''A SendGrid adapter for Bamboo.''; - license = stdenv.lib.licenses.publicDomain; - }; - } - ) {}; - - bamboo_sendgrid = bamboo_sendgrid_0_1_0; - - bandwidth_1_2_1 = callPackage - ( - { buildMix, fetchHex, poison_1_4_0, httpoison_0_7_5 }: - buildMix { - name = "bandwidth"; - version = "1.2.1"; - src = fetchHex { - pkg = "bandwidth"; - version = "1.2.1"; - sha256 = - "cfc31517bd160cc9a2e6c55b664eccadc001fc650bd8ea9f01418feb8e7194b5"; - }; - beamDeps = [ poison_1_4_0 httpoison_0_7_5 ]; - - meta = { - description = ''An Elixir client library for the Bandwidth - Application Platform''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/wtcross/elixir-bandwidth"; - }; - } - ) {}; - - bandwidth = bandwidth_1_2_1; - bankster_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "bankster"; version = "0.1.0"; src = fetchHex { @@ -1998,15 +1882,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/railsmechanic/bankster"; }; - } + } // packageOverrides) ) {}; bankster = bankster_0_1_0; banner_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "banner"; version = "0.1.0"; src = fetchHex { @@ -2022,15 +1906,15 @@ let 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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "barrel_ibrowse"; version = "4.2.0"; src = fetchHex { @@ -2045,61 +1929,15 @@ let homepage = "https://github.com/barrel-db/ibrowse"; }; - } + } // packageOverrides) ) {}; barrel_ibrowse = barrel_ibrowse_4_2_0; - barrel_jiffy_0_14_4 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "barrel_jiffy"; - version = "0.14.4"; - src = fetchHex { - pkg = "barrel_jiffy"; - version = "0.14.4"; - sha256 = - "3b730d6a18e988b8411f449bbb5df3637eb7bea864302924581b2391dd6b6e71"; - }; - compilePorts = true; - - meta = { - description = ''JSON Decoder/Encoder.''; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/barrel-db/jiffy"; - }; - } - ) {}; - - barrel_jiffy_0_14_5 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "barrel_jiffy"; - version = "0.14.5"; - src = fetchHex { - pkg = "barrel_jiffy"; - version = "0.14.5"; - sha256 = - "8a874c6dbcf439a7d7b300b4463f47e088fd54e2b715ef7261e21807ee421f47"; - }; - compilePorts = true; - - meta = { - description = ''JSON Decoder/Encoder.''; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/barrel-db/jiffy"; - }; - } - ) {}; - - barrel_jiffy = barrel_jiffy_0_14_5; - barrel_oauth_1_6_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "barrel_oauth"; version = "1.6.0"; src = fetchHex { @@ -2114,15 +1952,15 @@ let 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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "base16"; version = "1.0.0"; src = fetchHex { @@ -2137,15 +1975,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "base58"; version = "0.1.0"; src = fetchHex { @@ -2160,15 +1998,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/jrdnull/base58"; }; - } + } // packageOverrides) ) {}; base58 = base58_0_1_0; base58check_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "base58check"; version = "0.1.0"; src = fetchHex { @@ -2184,15 +2022,17 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/gjaldon/base58check"; }; - } + } // packageOverrides) ) {}; base58check = base58check_0_1_0; base62_1_2_0 = callPackage ( - { buildMix, fetchHex, custom_base_0_2_0 }: - buildMix { + { + buildMix, packageOverrides ? {}, fetchHex, custom_base_0_2_0 + }: + buildMix ({ name = "base62"; version = "1.2.0"; src = fetchHex { @@ -2208,15 +2048,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/igas/base62"; }; - } + } // packageOverrides) ) {}; base62 = base62_1_2_0; base64url_0_0_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "base64url"; version = "0.0.1"; src = fetchHex { @@ -2231,39 +2071,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/dvv/base64url"; }; - } + } // packageOverrides) ) {}; base64url = base64url_0_0_1; - basehangul_0_2_0 = callPackage - ( - { buildMix, fetchHex, iconv_1_0_0 }: - buildMix { - name = "basehangul"; - version = "0.2.0"; - src = fetchHex { - pkg = "basehangul"; - version = "0.2.0"; - sha256 = - "ea7b03e7407e4c24778a40eb3edf305cf10897057ff14718344f83badb3525cc"; - }; - beamDeps = [ iconv_1_0_0 ]; - - meta = { - description = ''Elixir implementation of BaseHangul.''; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/Dalgona/basehangul"; - }; - } - ) {}; - - basehangul = basehangul_0_2_0; - basho_poolboy_0_8_1_p3 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "basho_poolboy"; version = "0.8.1-p3"; src = fetchHex { @@ -2278,62 +2094,15 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/basho/riak_sysmon"; }; - } + } // packageOverrides) ) {}; basho_poolboy = basho_poolboy_0_8_1_p3; - basho_stats_1_0_3 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "basho_stats"; - version = "1.0.3"; - src = fetchHex { - pkg = "basho_stats"; - version = "1.0.3"; - sha256 = - "d739e733b1c8afcaa467289fca50221753fc8cde6e7b53a79b67f98a2a261f5a"; - }; - - meta = { - description = ''Basic Erlang statistics library''; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/basho/basho_stats"; - }; - } - ) {}; - - basho_stats = basho_stats_1_0_3; - - basic_auth_1_0_0 = callPackage - ( - { buildMix, fetchHex, plug_0_5_2, cowboy_1_0_4 }: - buildMix { - name = "basic_auth"; - version = "1.0.0"; - src = fetchHex { - pkg = "basic_auth"; - version = "1.0.0"; - sha256 = - "e8ed4b5ca05c06dc1c19c69f1f00611e93d17bfa913eefbb6bed4a209af3a5a9"; - }; - beamDeps = [ plug_0_5_2 cowboy_1_0_4 ]; - - meta = { - description = ''Basic Authentication Plug''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/cultivatehq/basic_auth"; - }; - } - ) {}; - - basic_auth = basic_auth_1_0_0; - batcher_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "batcher"; version = "0.0.1"; src = fetchHex { @@ -2350,39 +2119,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/behe/batcher"; }; - } + } // packageOverrides) ) {}; batcher = batcher_0_0_1; - battlenet_0_0_2 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "battlenet"; - version = "0.0.2"; - src = fetchHex { - pkg = "battlenet"; - version = "0.0.2"; - sha256 = - "cdd4e182da5a2db478e0da9ac1a467fc8f2b8ec638e3e38dd7962ff3fe8c9342"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''Elixir library for the Battle.net API.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/cazrin/battlenet"; - }; - } - ) {}; - - battlenet = battlenet_0_0_2; - bbmustache_1_0_3 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "bbmustache"; version = "1.0.3"; src = fetchHex { @@ -2398,13 +2143,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/soranoba/bbmustache"; }; - } + } // packageOverrides) ) {}; bbmustache_1_0_4 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "bbmustache"; version = "1.0.4"; src = fetchHex { @@ -2420,13 +2165,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/soranoba/bbmustache"; }; - } + } // packageOverrides) ) {}; bbmustache_1_1_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "bbmustache"; version = "1.1.0"; src = fetchHex { @@ -2442,53 +2187,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/soranoba/bbmustache"; }; - } + } // packageOverrides) ) {}; bbmustache = bbmustache_1_1_0; - bbsmq_0_0_4 = callPackage - ( - { - buildMix, - fetchHex, - uuid_1_1_3, - poison_2_1_0, - httpoison_0_8_2, - exprotobuf_1_0_0, - amqp_0_1_4 - }: - buildMix { - name = "bbsmq"; - version = "0.0.4"; - src = fetchHex { - pkg = "bbsmq"; - version = "0.0.4"; - sha256 = - "94fc10b314f176c9d4d874c387d41b2cb4bab68d749f3e3ce50096167eb6900c"; - }; - beamDeps = [ - uuid_1_1_3 - poison_2_1_0 - httpoison_0_8_2 - exprotobuf_1_0_0 - amqp_0_1_4 - ]; - - meta = { - description = ''Translate CloudFoundry BBS events and endpoints - into rabbitmq messages.''; - - }; - } - ) {}; - - bbsmq = bbsmq_0_0_4; - bcrypt_0_5_0_p3a = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "bcrypt"; version = "0.5.0-p3a"; src = fetchHex { @@ -2498,6 +2205,8 @@ let "492decdc633399b356a3bbfe8279c10a49b1040fc082c8cbf2d30b41ff88f310"; }; compilePorts = true; + buildPlugins = [ pc ]; + meta = { description = ''An Erlang wrapper (NIF or port program) for the @@ -2505,48 +2214,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/chef/erlang-bcrypt"; }; - } + } // packageOverrides) ) {}; bcrypt = bcrypt_0_5_0_p3a; - beaker_1_2_0 = callPackage - ( - { - buildMix, - fetchHex, - phoenix_1_1_4, - ecto_2_0_0_beta_2, - bureaucrat_0_1_2 - }: - buildMix { - name = "beaker"; - version = "1.2.0"; - src = fetchHex { - pkg = "beaker"; - version = "1.2.0"; - sha256 = - "f792ee661db3e31f4c6cacae992e81bbcc302ce05aec29c16bab9853bd763438"; - }; - beamDeps = [ phoenix_1_1_4 ecto_2_0_0_beta_2 bureaucrat_0_1_2 ]; - - meta = { - longDescription = ''Measure your Elixir! A metrics library that - will help Elixirists keep track of their - application`s performance, as well as any custom - statistics they like.''; - - homepage = "http://github.com/hahuang65/beaker"; - }; - } - ) {}; - - beaker = beaker_1_2_0; - beam_analyzer_0_0_3 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "beam_analyzer"; version = "0.0.3"; src = fetchHex { @@ -2562,15 +2238,15 @@ let 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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "bear"; version = "0.8.3"; src = fetchHex { @@ -2585,15 +2261,15 @@ let homepage = "https://github.com/puzza007/bear"; }; - } + } // packageOverrides) ) {}; bear = bear_0_8_3; belixir_0_2_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "belixir"; version = "0.2.0"; src = fetchHex { @@ -2610,15 +2286,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/meinac/belixir"; }; - } + } // packageOverrides) ) {}; belixir = belixir_0_2_0; belvedere_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "belvedere"; version = "0.0.1"; src = fetchHex { @@ -2634,15 +2310,15 @@ let license = stdenv.lib.licenses.mit; homepage = "http://nirvana.io"; }; - } + } // packageOverrides) ) {}; belvedere = belvedere_0_0_1; benchfella_0_3_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "benchfella"; version = "0.3.2"; src = fetchHex { @@ -2657,15 +2333,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/alco/benchfella"; }; - } + } // packageOverrides) ) {}; benchfella = benchfella_0_3_2; benchmark_ips_0_2_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "benchmark_ips"; version = "0.2.0"; src = fetchHex { @@ -2681,43 +2357,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/mxhold/benchmark_ips"; }; - } + } // packageOverrides) ) {}; benchmark_ips = benchmark_ips_0_2_0; - benchwarmer_0_0_2 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "benchwarmer"; - version = "0.0.2"; - src = fetchHex { - pkg = "benchwarmer"; - version = "0.0.2"; - sha256 = - "8b98b39c1c50df624f9c2d13ca953eeed465eed6feda975da26b479df2b4c9f5"; - }; - - meta = { - longDescription = ''Benchwarmer is an Elixir micro-benchmarking - utility that runs a function (or list of - functions) repeatedly against a dataset for a - period of time, and then reports on the average - time each operation took to complete, allowing - for easy comparison. ''; - license = stdenv.lib.licenses.wtfpl; - homepage = "https://github.com/mroth/benchwarmer"; - }; - } - ) {}; - - benchwarmer = benchwarmer_0_0_2; - bencode_0_3_0 = callPackage ( - { buildMix, fetchHex, eqc_ex_1_2_4 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, eqc_ex_1_2_4 }: + buildMix ({ name = "bencode"; version = "0.3.0"; src = fetchHex { @@ -2729,46 +2377,24 @@ let beamDeps = [ eqc_ex_1_2_4 ]; meta = { - longDescription = ''A bencode encoder and decoder. 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 + 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; - bencoder_0_0_7 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "bencoder"; - version = "0.0.7"; - src = fetchHex { - pkg = "bencoder"; - version = "0.0.7"; - sha256 = - "1fd5478490f0ef03e5afee0c0392226efe07a76c9f537697176bc46bc46500b8"; - }; - - meta = { - description = ''a library to handle bencode in elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/alehander42/bencoder"; - }; - } - ) {}; - - bencoder = bencoder_0_0_7; - bencodex_1_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "bencodex"; version = "1.0.0"; src = fetchHex { @@ -2783,15 +2409,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/patrickgombert/bencodex"; }; - } + } // packageOverrides) ) {}; bencodex = bencodex_1_0_0; bento_0_9_0 = callPackage ( - { buildMix, fetchHex, poison_2_1_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }: + buildMix ({ name = "bento"; version = "0.9.0"; src = fetchHex { @@ -2808,15 +2434,15 @@ let license = stdenv.lib.licenses.mpl20; homepage = "https://github.com/folz/bento"; }; - } + } // packageOverrides) ) {}; bento = bento_0_9_0; bert_0_1_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "bert"; version = "0.1.0"; src = fetchHex { @@ -2831,89 +2457,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/yuce/bert.erl"; }; - } + } // packageOverrides) ) {}; bert = bert_0_1_0; - bertex_1_2_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "bertex"; - version = "1.2.0"; - src = fetchHex { - pkg = "bertex"; - version = "1.2.0"; - sha256 = - "5e6db198c106dbfbd6e419201ec15facd71fac320f24e3e85a856d624ac4096a"; - }; - - meta = { - description = '' Elixir BERT encoder/decoder ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/edgurgel/bertex"; - }; - } - ) {}; - - bertex = bertex_1_2_0; - - bgg_0_1_0 = callPackage - ( - { buildMix, fetchHex, quinn_0_0_4, httpoison_0_8_2 }: - buildMix { - name = "bgg"; - version = "0.1.0"; - src = fetchHex { - pkg = "bgg"; - version = "0.1.0"; - sha256 = - "d26593e7ebb23f76e6c0e73a9a1acb6a45ec25ea53b6ee716a2291f07c5f1fb6"; - }; - beamDeps = [ quinn_0_0_4 httpoison_0_8_2 ]; - - meta = { - description = ''A BoardGameGeek API wrapper in Elixir - http://boardgamegeek.com/xmlapi/''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/peralmq/bgg-elixir"; - }; - } - ) {}; - - bgg = bgg_0_1_0; - - big_query_0_0_2 = callPackage - ( - { - buildMix, fetchHex, poison_2_1_0, jose_1_4_2, httpoison_0_8_2 - }: - buildMix { - name = "big_query"; - version = "0.0.2"; - src = fetchHex { - pkg = "big_query"; - version = "0.0.2"; - sha256 = - "db969991b701113c0991ae0f468a85abfbf1bdaf0bc2706fd8357e15dcfe138a"; - }; - beamDeps = [ poison_2_1_0 jose_1_4_2 httpoison_0_8_2 ]; - - meta = { - description = ''A Google BigQuery API client.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/jordan0day/big_query"; - }; - } - ) {}; - - big_query = big_query_0_0_2; - bigflake_0_3_0 = callPackage ( - { buildMix, fetchHex, base62_1_2_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, base62_1_2_0 }: + buildMix ({ name = "bigflake"; version = "0.3.0"; src = fetchHex { @@ -2929,15 +2481,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/stevedomin/bigflake"; }; - } + } // packageOverrides) ) {}; bigflake = bigflake_0_3_0; billiards_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "billiards"; version = "0.0.1"; src = fetchHex { @@ -2947,15 +2499,15 @@ let "5b8d8eab12e35c0c7eff5be02a4adf0a7aa4cf10688a5faeec9b10f2c2f04046"; }; meta = { }; - } + } // packageOverrides) ) {}; billiards = billiards_0_0_1; bin_format_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "bin_format"; version = "0.0.1"; src = fetchHex { @@ -2971,50 +2523,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/willpenington/bin_format"; }; - } + } // packageOverrides) ) {}; bin_format = bin_format_0_0_1; - bing_translator_0_2_6 = callPackage - ( - { - buildMix, - fetchHex, - timex_1_0_2, - poison_1_5_2, - httpoison_0_8_2, - floki_0_8_0 - }: - buildMix { - name = "bing_translator"; - version = "0.2.6"; - src = fetchHex { - pkg = "bing_translator"; - version = "0.2.6"; - sha256 = - "d25df43466458eca86c9d5aa22d94bc41c3d182949a9ec36e9387ffe442e540e"; - }; - beamDeps = [ - timex_1_0_2 poison_1_5_2 httpoison_0_8_2 floki_0_8_0 - ]; - - meta = { - longDescription = ''Translate strings using the Bing HTTP API. - Requires that you have a Client ID and Secret. - See README.md for information.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/ikeikeikeike/bing_translator"; - }; - } - ) {}; - - bing_translator = bing_translator_0_2_6; - binstructor_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "binstructor"; version = "0.0.1"; src = fetchHex { @@ -3030,15 +2547,15 @@ let 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, fetchHex, eqc_ex_1_2_4 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, eqc_ex_1_2_4 }: + buildMix ({ name = "bit_field_set"; version = "0.1.0"; src = fetchHex { @@ -3057,39 +2574,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/gausby/bit_field_set"; }; - } + } // packageOverrides) ) {}; bit_field_set = bit_field_set_0_1_0; - bitbucket_api_0_0_2 = callPackage - ( - { buildMix, fetchHex, jsx_2_8_0, httpoison_0_7_5, jsex_2_0_0 }: - buildMix { - name = "bitbucket_api"; - version = "0.0.2"; - src = fetchHex { - pkg = "bitbucket_api"; - version = "0.0.2"; - sha256 = - "25fbdda8ed1813f0ade92b4f28b3290b3efd6be63ff25c84ab9e24b512464245"; - }; - beamDeps = [ jsx_2_8_0 httpoison_0_7_5 jsex_2_0_0 ]; - - meta = { - description = ''Create hooks for Bitbucket. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/Blackrush/bitbucket_api"; - }; - } - ) {}; - - bitbucket_api = bitbucket_api_0_0_2; - bitcask_2_0_2 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "bitcask"; version = "2.0.2"; src = fetchHex { @@ -3099,21 +2592,23 @@ let "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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "bitfield"; version = "1.0.0"; src = fetchHex { @@ -3128,15 +2623,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/camshaft/bitfield.erl"; }; - } + } // packageOverrides) ) {}; bitfield = bitfield_1_0_0; bitmap_1_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "bitmap"; version = "1.0.0"; src = fetchHex { @@ -3153,83 +2648,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/hashd/bitmap-elixir"; }; - } + } // packageOverrides) ) {}; bitmap = bitmap_1_0_0; - bitpay_0_2_5 = callPackage - ( - { - buildMix, fetchHex, uuid_1_0_0, httpotion_2_2_2, exjsx_3_1_0 - }: - buildMix { - name = "bitpay"; - version = "0.2.5"; - src = fetchHex { - pkg = "bitpay"; - version = "0.2.5"; - sha256 = - "25a0b2dbf6619ddc0db4cf1ee03b3d097adac47dc47c65b71a2661eba0f2e3a2"; - }; - beamDeps = [ uuid_1_0_0 httpotion_2_2_2 exjsx_3_1_0 ]; - - meta = { - longDescription = ''Library to allow elixir apps to easily use - the BitPay REST API to authenticate, generate - invoices, and retrieve invoices. Includes - Utilities for using Erlangs library for Elliptic - Curve Keys.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/bitpay/elixir-client"; - }; - } - ) {}; - - bitpay = bitpay_0_2_5; - - blackbook_0_3_1 = callPackage - ( - { - buildMix, - fetchHex, - timex_ecto_1_0_4, - timex_0_19_5, - secure_random_0_2_0, - postgrex_0_11_1, - ecto_2_0_0_beta_2, - earmark_0_2_1, - comeonin_1_6_0 - }: - buildMix { - name = "blackbook"; - version = "0.3.1"; - src = fetchHex { - pkg = "blackbook"; - version = "0.3.1"; - sha256 = - "deecf1248ec5ef7911e3b440a968d8cb2dae54d50e36bf80173a2593f0e4ecde"; - }; - beamDeps = [ - timex_ecto_1_0_4 - timex_0_19_5 - secure_random_0_2_0 - postgrex_0_11_1 - ecto_2_0_0_beta_2 - earmark_0_2_1 - comeonin_1_6_0 - ]; - - meta = { }; - } - ) {}; - - blackbook = blackbook_0_3_1; - blacksmith_0_1_3 = callPackage ( - { buildMix, fetchHex, faker_0_6_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, faker_0_6_0 }: + buildMix ({ name = "blacksmith"; version = "0.1.3"; src = fetchHex { @@ -3246,15 +2673,21 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/batate/blacksmith"; }; - } + } // packageOverrides) ) {}; blacksmith = blacksmith_0_1_3; blaguth_1_2_1 = callPackage ( - { buildMix, fetchHex, plug_1_1_3, cowboy_1_0_4 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ name = "blaguth"; version = "1.2.1"; src = fetchHex { @@ -3271,15 +2704,15 @@ let license = stdenv.lib.licenses.isc; homepage = "https://github.com/lexmag/blaguth"; }; - } + } // packageOverrides) ) {}; blaguth = blaguth_1_2_1; blake2_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "blake2"; version = "0.0.1"; src = fetchHex { @@ -3294,15 +2727,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/mwmiller/blake2_ex"; }; - } + } // packageOverrides) ) {}; blake2 = blake2_0_0_1; blanket_0_3_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "blanket"; version = "0.3.1"; src = fetchHex { @@ -3318,89 +2751,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/niahoo/blanket"; }; - } + } // packageOverrides) ) {}; blanket = blanket_0_3_1; - blaze_cloud_0_0_1 = callPackage - ( - { buildMix, fetchHex, poison_2_0_1, httpoison_0_8_2 }: - buildMix { - name = "blaze_cloud"; - version = "0.0.1"; - src = fetchHex { - pkg = "blaze_cloud"; - version = "0.0.1"; - sha256 = - "c5a26f194691d7c40a008c5aded034ca0a43d4fa6a9173952333479cf2661b2b"; - }; - beamDeps = [ poison_2_0_1 httpoison_0_8_2 ]; - - meta = { - description = ''Elixir Library for Backblaze B2 Cloud Storage.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/PerishableDave/blaze_cloud"; - }; - } - ) {}; - - blaze_cloud = blaze_cloud_0_0_1; - - block_timer_0_0_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "block_timer"; - version = "0.0.1"; - src = fetchHex { - pkg = "block_timer"; - version = "0.0.1"; - sha256 = - "1dec7d6590de5b5d2cecd101ea4b276180b7d428e8b36863c424223dd0a97782"; - }; - - meta = { - description = ''Macros to use :timer.apply_after and - :timer.apply_interval with a block''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/adamkittelson/block_timer"; - }; - } - ) {}; - - block_timer = block_timer_0_0_1; - - blockchain_info_0_0_1 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "blockchain_info"; - version = "0.0.1"; - src = fetchHex { - pkg = "blockchain_info"; - version = "0.0.1"; - sha256 = - "22efbcc8df574ddddb9d548150fa704966a59397c103ce58d82a6597cbd5ccd2"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - longDescription = ''WIP BlockchainInfo API wrapper for Elixir. - Provides access to bitcoin blockchain data.''; - license = stdenv.lib.licenses.mit; - homepage = - "https://github.com/cyberpunk-ventures/blockchain_info_ex"; - }; - } - ) {}; - - blockchain_info = blockchain_info_0_0_1; - blocking_queue_1_3_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "blocking_queue"; version = "1.3.0"; src = fetchHex { @@ -3417,40 +2776,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/joekain/BlockingQueue"; }; - } + } // packageOverrides) ) {}; blocking_queue = blocking_queue_1_3_0; - bloodhound_0_1_1 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "bloodhound"; - version = "0.1.1"; - src = fetchHex { - pkg = "bloodhound"; - version = "0.1.1"; - sha256 = - "6aaab638fe90fc3714b650b659df774c7cdb12d098fee3910952e0a0f8fcd6ec"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''An ElasticSearch library for Elixir that can be - easily integrated with Ecto''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/ianwalter/bloodhound"; - }; - } - ) {}; - - bloodhound = bloodhound_0_1_1; - bloomex_1_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "bloomex"; version = "1.0.0"; src = fetchHex { @@ -3466,15 +2800,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/gmcabrita/bloomex"; }; - } + } // packageOverrides) ) {}; bloomex = bloomex_1_0_0; bmark_1_0_3 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "bmark"; version = "1.0.3"; src = fetchHex { @@ -3490,42 +2824,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/joekain/bmark"; }; - } + } // packageOverrides) ) {}; bmark = bmark_1_0_3; - bno055_0_0_1 = callPackage - ( - { buildMix, fetchHex, gproc_0_5_0, elixir_ale_0_4_1 }: - buildMix { - name = "bno055"; - version = "0.0.1"; - src = fetchHex { - pkg = "bno055"; - version = "0.0.1"; - sha256 = - "07f97909748be55dc7e3f31b9fbf708c5b43e9ba229f82b674aaa0ad57f35ef6"; - }; - beamDeps = [ gproc_0_5_0 elixir_ale_0_4_1 ]; - - meta = { - longDescription = ''OTP application for reading the BNO-055 - absolute orientation sensor. Euler angles are - read at 20hz and published to a configured local - `gproc` property.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/TattdCodeMonkey/bno055"; - }; - } - ) {}; - - bno055 = bno055_0_0_1; - boltun_0_0_4 = callPackage ( - { buildMix, fetchHex, postgrex_0_11_1 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, postgrex_0_11_1 }: + buildMix ({ name = "boltun"; version = "0.0.4"; src = fetchHex { @@ -3543,177 +2850,15 @@ let license = stdenv.lib.licenses.isc; homepage = "https://github.com/briksoftware/boltun"; }; - } + } // packageOverrides) ) {}; boltun = boltun_0_0_4; - booter_0_1_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "booter"; - version = "0.1.0"; - src = fetchHex { - pkg = "booter"; - version = "0.1.0"; - sha256 = - "bb14263b5d5dc74c3f4086f764153a0d09b2b05a9cda6f4b121cc7789159a80e"; - }; - - meta = { - description = ''Boot an Elixir application step by step''; - license = stdenv.lib.licenses.mpl11; - homepage = "https://github.com/eraserewind/booter"; - }; - } - ) {}; - - booter = booter_0_1_0; - - botan_0_1_2 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "botan"; - version = "0.1.2"; - src = fetchHex { - pkg = "botan"; - version = "0.1.2"; - sha256 = - "43541b5c52c91e46295a015f58857c347c85a7753d7c3cd3a1f835b25fdedaa9"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''Elixir wrapper for Botan.io''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/mendab1e/exBotan"; - }; - } - ) {}; - - botan = botan_0_1_2; - - bottler_0_5_0 = callPackage - ( - { buildMix, fetchHex, sshex_1_1_0 }: - buildMix { - name = "bottler"; - version = "0.5.0"; - src = fetchHex { - pkg = "bottler"; - version = "0.5.0"; - sha256 = - "a76b2ddfc98ef943ceb6730dd09fb3d085cb9dcc8feb8c739abbe0dcc77d8ffe"; - }; - beamDeps = [ sshex_1_1_0 ]; - - meta = { - longDescription = ''Help you bottle, ship and serve your Elixir - apps. Bottler is a collection of tools that aims - to help you generate releases, ship them to your - servers, install them there, and get them live - on production.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/elpulgardelpanda/bottler"; - }; - } - ) {}; - - bottler = bottler_0_5_0; - - bouncer_0_1_5 = callPackage - ( - { - buildMix, - fetchHex, - redix_0_3_6, - poolboy_1_5_1, - poison_1_5_2, - plug_1_1_3, - phoenix_1_1_4 - }: - buildMix { - name = "bouncer"; - version = "0.1.5"; - src = fetchHex { - pkg = "bouncer"; - version = "0.1.5"; - sha256 = - "82979e9c8df401cbf5eb2dd09dff3952933cf2efd9135be1f0cb51ec04deb996"; - }; - beamDeps = [ - redix_0_3_6 - poolboy_1_5_1 - poison_1_5_2 - plug_1_1_3 - phoenix_1_1_4 - ]; - - meta = { - description = ''Token-based authorization and session management - for Phoenix (Elixir)''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/ianwalter/bouncer"; - }; - } - ) {}; - - bouncer = bouncer_0_1_5; - - brady_0_0_2 = callPackage - ( - { buildMix, fetchHex, phoenix_1_1_4 }: - buildMix { - name = "brady"; - version = "0.0.2"; - src = fetchHex { - pkg = "brady"; - version = "0.0.2"; - sha256 = - "90518fe90719cfb64d3b3d8a2947f14b2d8657414d9e9bb86cb03e7901334b0d"; - }; - beamDeps = [ phoenix_1_1_4 ]; - - meta = { - description = ''Template helpers for Phoenix applications''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/thoughtbot/brady"; - }; - } - ) {}; - - brady = brady_0_0_2; - - braintree_0_3_2 = callPackage - ( - { buildMix, fetchHex, httpoison_0_8_2 }: - buildMix { - name = "braintree"; - version = "0.3.2"; - src = fetchHex { - pkg = "braintree"; - version = "0.3.2"; - sha256 = - "cfc2aa7fc94c74eeb41c34a401fa8784f9c423268086c797949d0f0dc5c657a3"; - }; - beamDeps = [ httpoison_0_8_2 ]; - - meta = { - description = ''Native Braintree client library for Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/sorentwo/braintree-elixir"; - }; - } - ) {}; - - braintree = braintree_0_3_2; - braise_0_3_2 = callPackage ( - { buildMix, fetchHex, poison_1_3_1 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, poison_1_3_1 }: + buildMix ({ name = "braise"; version = "0.3.2"; src = fetchHex { @@ -3730,15 +2875,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/IoraHealth/braise"; }; - } + } // packageOverrides) ) {}; braise = braise_0_3_2; brcpfcnpj_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "brcpfcnpj"; version = "0.1.0"; src = fetchHex { @@ -3755,15 +2900,15 @@ let license = stdenv.lib.licenses.unlicense; homepage = "https://github.com/williamgueiros/Brcpfcnpj"; }; - } + } // packageOverrides) ) {}; brcpfcnpj = brcpfcnpj_0_1_0; breadcrumble_1_0_3 = callPackage ( - { buildMix, fetchHex, plug_1_1_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ name = "breadcrumble"; version = "1.0.3"; src = fetchHex { @@ -3779,15 +2924,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/ma2gedev/breadcrumble_ex"; }; - } + } // packageOverrides) ) {}; breadcrumble = breadcrumble_1_0_3; briefly_0_3_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "briefly"; version = "0.3.0"; src = fetchHex { @@ -3802,15 +2947,15 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/CargoSense/briefly"; }; - } + } // packageOverrides) ) {}; briefly = briefly_0_3_0; browser_0_1_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "browser"; version = "0.1.2"; src = fetchHex { @@ -3825,38 +2970,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/tuvistavie/elixir-browser"; }; - } + } // packageOverrides) ) {}; browser = browser_0_1_2; - bson_0_4_4 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "bson"; - version = "0.4.4"; - src = fetchHex { - pkg = "bson"; - version = "0.4.4"; - sha256 = - "69cbda1d27fd0f500f306c99e609593132c66b521b92a21ce6f21fea88dc3d27"; - }; - - meta = { - description = ''BSON implementation for Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/checkiz/elixir-bson"; - }; - } - ) {}; - - bson = bson_0_4_4; - bstr_0_3_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "bstr"; version = "0.3.0"; src = fetchHex { @@ -3871,15 +2993,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/jcomellas/bstr"; }; - } + } // packageOverrides) ) {}; bstr = bstr_0_3_0; buffer_0_3_6 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "buffer"; version = "0.3.6"; src = fetchHex { @@ -3894,64 +3016,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/adrienmo/buffer"; }; - } + } // packageOverrides) ) {}; buffer = buffer_0_3_6; - bugsnag_1_2_0 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "bugsnag"; - version = "1.2.0"; - src = fetchHex { - pkg = "bugsnag"; - version = "1.2.0"; - sha256 = - "23c6e8eb827ec1294684b5fe788d4d1cd670804ddfb74bb2bd427aed44a68f05"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''An Elixir interface to the Bugsnag API''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/jarednorman/bugsnag-elixir"; - }; - } - ) {}; - - bugsnag = bugsnag_1_2_0; - - bugsnag_erl_0_1_3 = callPackage - ( - { buildRebar3, fetchHex, lager_2_1_1, jsx_2_8_0 }: - buildRebar3 { - name = "bugsnag_erl"; - version = "0.1.3"; - src = fetchHex { - pkg = "bugsnag_erl"; - version = "0.1.3"; - sha256 = - "02b400b8f7f606c580ca81311279ef8bbe99c2cfc32b0b956af1644594ddaf2b"; - }; - - beamDeps = [ lager_2_1_1 jsx_2_8_0 ]; - - meta = { - description = ''Bugsnag notifier''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/project-fifo/bugsnag-erlang"; - }; - } - ) {}; - - bugsnag_erl = bugsnag_erl_0_1_3; - build_client_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "build_client"; version = "0.0.1"; src = fetchHex { @@ -3966,39 +3039,15 @@ let homepage = "https://github.com/dapdizzy/build_client"; }; - } + } // packageOverrides) ) {}; build_client = build_client_0_0_1; - bump_0_1_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "bump"; - version = "0.1.0"; - src = fetchHex { - pkg = "bump"; - version = "0.1.0"; - sha256 = - "068b418026a90382f9809ffe0504579f7ccea981f794ff6257ba2a0925b91360"; - }; - - meta = { - description = ''A library for writing BMP files from binary data. - ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/evanfarrar/ex_bump"; - }; - } - ) {}; - - bump = bump_0_1_0; - bunt_0_1_5 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "bunt"; version = "0.1.5"; src = fetchHex { @@ -4013,178 +3062,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/rrrene/bunt"; }; - } + } // packageOverrides) ) {}; bunt = bunt_0_1_5; - bureaucrat_0_1_2 = callPackage - ( - { buildMix, fetchHex, plug_0_5_2 }: - buildMix { - name = "bureaucrat"; - version = "0.1.2"; - src = fetchHex { - pkg = "bureaucrat"; - version = "0.1.2"; - sha256 = - "cd746f6f9ee9927b1b81ae7834c7b0a045df7e53151674d8b3d8de5832ec7402"; - }; - beamDeps = [ plug_0_5_2 ]; - - meta = { - description = ''Generate Phoenix API documentation from tests''; - license = stdenv.lib.licenses.unlicense; - homepage = "https://github.com/api-hogs/bureaucrat"; - }; - } - ) {}; - - bureaucrat = bureaucrat_0_1_2; - - butler_0_7_0 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_7_5 }: - buildMix { - name = "butler"; - version = "0.7.0"; - src = fetchHex { - pkg = "butler"; - version = "0.7.0"; - sha256 = - "0a6ab3880449370d4fe40355372c8929ff16031fd5d118a8936739cb034b45bd"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_7_5 ]; - - meta = { - description = ''A simple elixir robot to help you get things - done''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/keathley/butler"; - }; - } - ) {}; - - butler_0_7_1 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_7_5 }: - buildMix { - name = "butler"; - version = "0.7.1"; - src = fetchHex { - pkg = "butler"; - version = "0.7.1"; - sha256 = - "fdc4226c0347ea94e6b535c7d352c098720bdfad280357dad9b4d8bd3c346bd7"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_7_5 ]; - - meta = { - description = ''A simple elixir robot to help you get things - done''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/keathley/butler"; - }; - } - ) {}; - - butler = butler_0_7_1; - - butler_cage_0_0_2 = callPackage - ( - { buildMix, fetchHex, butler_0_7_1 }: - buildMix { - name = "butler_cage"; - version = "0.0.2"; - src = fetchHex { - pkg = "butler_cage"; - version = "0.0.2"; - sha256 = - "22c5d1d0cbe6c19fffae260b02717a984ee5632c34492ee4254972ca4ab8e059"; - }; - beamDeps = [ butler_0_7_1 ]; - - meta = { - description = ''A Butler plugin for showing silly photos of Nick - Cage.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/keathley/butler_cage"; - }; - } - ) {}; - - butler_cage = butler_cage_0_0_2; - - butler_cowsay_0_2_1 = callPackage - ( - { buildMix, fetchHex, cowsay_0_0_1, butler_0_7_0 }: - buildMix { - name = "butler_cowsay"; - version = "0.2.1"; - src = fetchHex { - pkg = "butler_cowsay"; - version = "0.2.1"; - sha256 = - "d5b6ef82ebd387666c8b8d4fd93df3d11ff2ed7a129ae3aa7d7faac9ae803195"; - }; - beamDeps = [ cowsay_0_0_1 butler_0_7_0 ]; - - meta = { - description = ''ButlerCowsay plugin for Butler SlackBot''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/bbrock25/butler_cowsay"; - }; - } - ) {}; - - butler_cowsay = butler_cowsay_0_2_1; - - butler_new_0_4_3 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "butler_new"; - version = "0.4.3"; - src = fetchHex { - pkg = "butler_new"; - version = "0.4.3"; - sha256 = - "ef68a4957dde207e7663c3947d8ec93d8e24c9872619bd66b47d52abfb2b3d90"; - }; - meta = { }; - } - ) {}; - - butler_new = butler_new_0_4_3; - - butler_tableflip_0_0_3 = callPackage - ( - { buildMix, fetchHex, butler_0_7_1 }: - buildMix { - name = "butler_tableflip"; - version = "0.0.3"; - src = fetchHex { - pkg = "butler_tableflip"; - version = "0.0.3"; - sha256 = - "327840e6a07b8a3f2cc461920aea0a1cf39898b6fc0e1484e94867810dfea444"; - }; - beamDeps = [ butler_0_7_1 ]; - - meta = { - description = ''Butler Plugin for flipping tables.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/keathley/butler_tableflip"; - }; - } - ) {}; - - butler_tableflip = butler_tableflip_0_0_3; - bypass_0_5_1 = callPackage ( - { buildMix, fetchHex, plug_1_1_3, cowboy_1_0_4 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ name = "bypass"; version = "0.5.1"; src = fetchHex { @@ -4207,40 +3099,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/pspdfkit-labs/bypass"; }; - } + } // packageOverrides) ) {}; bypass = bypass_0_5_1; - cache_tab_1_0_2 = callPackage - ( - { buildRebar3, fetchHex, p1_utils_1_0_3 }: - buildRebar3 { - name = "cache_tab"; - version = "1.0.2"; - src = fetchHex { - pkg = "cache_tab"; - version = "1.0.2"; - sha256 = - "1d802a8bdf01178e1c6171037cc6e66da1a0c9fbb6589f644919d9a7402ebcd2"; - }; - - beamDeps = [ p1_utils_1_0_3 ]; - - meta = { - description = ''In-memory cache Erlang / Elixir library''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/processone/cache_tab"; - }; - } - ) {}; - - cache_tab = cache_tab_1_0_2; - cachex_0_8_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "cachex"; version = "0.8.0"; src = fetchHex { @@ -4256,41 +3123,17 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/zackehh/cachex"; }; - } + } // packageOverrides) ) {}; cachex = cachex_0_8_0; - calecto_0_5_2 = callPackage - ( - { buildMix, fetchHex, ecto_0_2_7, calendar_0_12_4 }: - buildMix { - name = "calecto"; - version = "0.5.2"; - src = fetchHex { - pkg = "calecto"; - version = "0.5.2"; - sha256 = - "ed21765dea78d2b3888a11c83c9642aee0624098625bc32b0eb642b9e3578ef7"; - }; - beamDeps = [ ecto_0_2_7 calendar_0_12_4 ]; - - meta = { - longDescription = ''Library for using Calendar with Ecto. This - lets you save Calendar types in Ecto and work - with date-times in multiple timezones.''; - - homepage = "https://github.com/lau/calecto"; - }; - } - ) {}; - - calecto = calecto_0_5_2; - calendar_0_12_4 = callPackage ( - { buildMix, fetchHex, tzdata_0_1_201603 }: - buildMix { + { + buildMix, packageOverrides ? {}, fetchHex, tzdata_0_1_201603 + }: + buildMix ({ name = "calendar"; version = "0.12.4"; src = fetchHex { @@ -4315,13 +3158,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/lau/calendar"; }; - } + } // packageOverrides) ) {}; calendar_0_13_2 = callPackage ( - { buildMix, fetchHex, tzdata_0_1_201603 }: - buildMix { + { + buildMix, packageOverrides ? {}, fetchHex, tzdata_0_1_201603 + }: + buildMix ({ name = "calendar"; version = "0.13.2"; src = fetchHex { @@ -4346,15 +3191,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/lau/calendar"; }; - } + } // packageOverrides) ) {}; calendar = calendar_0_13_2; calendar_translations_0_0_3 = callPackage ( - { buildMix, fetchHex, calendar_0_13_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, calendar_0_13_2 }: + buildMix ({ name = "calendar_translations"; version = "0.0.3"; src = fetchHex { @@ -4370,15 +3215,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "calliope"; version = "0.3.0"; src = fetchHex { @@ -4389,95 +3234,19 @@ let }; meta = { - description = ''An Elixir library for parsing haml templates. ''; + 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; - canada_1_0_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "canada"; - version = "1.0.0"; - src = fetchHex { - pkg = "canada"; - version = "1.0.0"; - sha256 = - "5f4eb50f2f2747e5f3e8750760e2683b38667e113281a7a71b502d1aa52d89d1"; - }; - - meta = { - description = '' A DSL for declarative permissions ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/jarednorman/canada"; - }; - } - ) {}; - - canada = canada_1_0_0; - - canary_0_14_1 = callPackage - ( - { - buildMix, fetchHex, plug_1_1_3, ecto_2_0_0_beta_2, canada_1_0_0 - }: - buildMix { - name = "canary"; - version = "0.14.1"; - src = fetchHex { - pkg = "canary"; - version = "0.14.1"; - sha256 = - "8ee0f96f4f98c0c0188eea68b2d90adae8e6af527eb04ee8623811bd58be7f0c"; - }; - beamDeps = [ plug_1_1_3 ecto_2_0_0_beta_2 canada_1_0_0 ]; - - meta = { - longDescription = ''An authorization library to restrict what - resources the current user is allowed to access, - and load resources for you.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/cpjk/canary"; - }; - } - ) {}; - - canary = canary_0_14_1; - - carrier_1_0_4 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_7_5 }: - buildMix { - name = "carrier"; - version = "1.0.4"; - src = fetchHex { - pkg = "carrier"; - version = "1.0.4"; - sha256 = - "9ea767fa6dfc35b1b5ebcdf3d737ea741589100573406969cea7579bbb51c0de"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_7_5 ]; - - meta = { - description = ''Elixir library for interacting with - SmartyStreets''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/mylanconnolly/carrier"; - }; - } - ) {}; - - carrier = carrier_1_0_4; - cartographer_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "cartographer"; version = "0.0.1"; src = fetchHex { @@ -4492,201 +3261,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/afronski/cartographer"; }; - } + } // packageOverrides) ) {}; cartographer = cartographer_0_0_1; - cassette_1_0_0 = callPackage - ( - { buildMix, fetchHex, httpoison_0_8_2, exml_0_1_0 }: - buildMix { - name = "cassette"; - version = "1.0.0"; - src = fetchHex { - pkg = "cassette"; - version = "1.0.0"; - sha256 = - "cbb9e1bffc2161ac51f6b8b376159e6bf1f39a2f41a9f07f861653cfb4c4e531"; - }; - beamDeps = [ httpoison_0_8_2 exml_0_1_0 ]; - - meta = { - description = ''A CAS client and validation library''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/locaweb/elixir-cassette"; - }; - } - ) {}; - - cassette = cassette_1_0_0; - - cassette_plug_1_0_1 = callPackage - ( - { buildMix, fetchHex, plug_1_1_3, cassette_1_0_0 }: - buildMix { - name = "cassette_plug"; - version = "1.0.1"; - src = fetchHex { - pkg = "cassette_plug"; - version = "1.0.1"; - sha256 = - "7c6ca0bacb3660efd1367b95c8a2d70e485e2842b9bfc87bdeb85c33882dc164"; - }; - beamDeps = [ plug_1_1_3 cassette_1_0_0 ]; - - meta = { - description = ''An auth Plug using Cassette''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/locaweb/cassette-plug"; - }; - } - ) {}; - - cassette_plug = cassette_plug_1_0_1; - - cassius_0_0_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "cassius"; - version = "0.0.1"; - src = fetchHex { - pkg = "cassius"; - version = "0.0.1"; - sha256 = - "3fe26f2b1fceed3c553871dcf954955063e01ab2e2de41d8322e58bd03348c17"; - }; - - meta = { - description = ''Monitor linux file system events''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/jquadrin/cassius"; - }; - } - ) {}; - - cassius = cassius_0_0_1; - - cauldron_0_1_5 = callPackage - ( - { buildMix, fetchHex, httprot_0_1_7, reagent_0_1_5 }: - buildMix { - name = "cauldron"; - version = "0.1.5"; - src = fetchHex { - pkg = "cauldron"; - version = "0.1.5"; - sha256 = - "565ee9bb6800512a3c9e8a58951455904c44d8f0ec207e80e20aef9f8cb7d6b1"; - }; - beamDeps = [ httprot_0_1_7 reagent_0_1_5 ]; - - meta = { - description = ''Web server library written in Elixir''; - license = stdenv.lib.licenses.wtfpl; - homepage = "https://github.com/meh/cauldron"; - }; - } - ) {}; - - cauldron = cauldron_0_1_5; - - caylir_0_2_0 = callPackage - ( - { - buildMix, fetchHex, poolboy_1_5_1, poison_1_5_2, hackney_1_6_0 - }: - buildMix { - name = "caylir"; - version = "0.2.0"; - src = fetchHex { - pkg = "caylir"; - version = "0.2.0"; - sha256 = - "b3699171f2bef699ce1968394cb2aee3b5ec7db529a395d8bf7d85163067f888"; - }; - beamDeps = [ poolboy_1_5_1 poison_1_5_2 hackney_1_6_0 ]; - - meta = { - description = ''Cayley driver for Elixir''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/mneudert/caylir"; - }; - } - ) {}; - - caylir = caylir_0_2_0; - - ccc_0_0_2 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "ccc"; - version = "0.0.2"; - src = fetchHex { - pkg = "ccc"; - version = "0.0.2"; - sha256 = - "cb976cf81c8497a271d3c6a4b20be4d0e569d5a0db3a60a227e1e8a13ee6abf7"; - }; - - meta = { - description = ''Character Code Converter''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/Joe-noh/ccc"; - }; - } - ) {}; - - ccc = ccc_0_0_2; - - cep_0_0_1 = callPackage - ( - { - buildMix, - fetchHex, - sweet_xml_0_6_1, - poolboy_1_5_1, - poison_2_1_0, - httpoison_0_8_2, - codepagex_0_1_2 - }: - buildMix { - name = "cep"; - version = "0.0.1"; - src = fetchHex { - pkg = "cep"; - version = "0.0.1"; - sha256 = - "f76e67e1d989fc2edbfbd265f79e4a33a0aa7f9ff06934a1f2d49903df72b79f"; - }; - beamDeps = [ - sweet_xml_0_6_1 - poolboy_1_5_1 - poison_2_1_0 - httpoison_0_8_2 - codepagex_0_1_2 - ]; - - meta = { - longDescription = ''A package to query Brazilian CEP codes. Has - support for multiple source APIs (Correios, - ViaCep, Postmon, etc). It can query one specific - source or query until one source returns a valid - result.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/douglascamata/cep"; - }; - } - ) {}; - - cep = cep_0_0_1; - certifi_0_1_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "certifi"; version = "0.1.1"; src = fetchHex { @@ -4696,18 +3279,21 @@ let "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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "certifi"; version = "0.3.0"; src = fetchHex { @@ -4722,13 +3308,13 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/certifi/erlang-certifi"; }; - } + } // packageOverrides) ) {}; certifi_0_4_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "certifi"; version = "0.4.0"; src = fetchHex { @@ -4743,79 +3329,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/certifi/erlang-certifi"; }; - } + } // packageOverrides) ) {}; certifi = certifi_0_4_0; - cesso_0_1_3 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "cesso"; - version = "0.1.3"; - src = fetchHex { - pkg = "cesso"; - version = "0.1.3"; - sha256 = - "54ba81e0d1358095e00305e48cd3917bc9ee06905bdaab7bc60c7ae3489a6ba7"; - }; - - meta = { - description = ''CSV handling library for Elixir.''; - license = stdenv.lib.licenses.wtfpl; - homepage = "https://github.com/meh/cesso"; - }; - } - ) {}; - - cesso = cesso_0_1_3; - - cet_0_2_3 = callPackage - ( - { - buildRebar3, - fetchHex, - lager_3_0_1, - jsx_2_8_0, - gen_smtp_0_9_0, - cowboy_1_0_4, - bstr_0_3_0, - bbmustache_1_0_4 - }: - buildRebar3 { - name = "cet"; - version = "0.2.3"; - src = fetchHex { - pkg = "cet"; - version = "0.2.3"; - sha256 = - "4942c6d86568ee8daffebfece8b73dcef3d91702484480b27a2b32590ad0894e"; - }; - - beamDeps = [ - lager_3_0_1 - jsx_2_8_0 - gen_smtp_0_9_0 - cowboy_1_0_4 - bstr_0_3_0 - bbmustache_1_0_4 - ]; - - meta = { - description = ''Cielo24 Erlang Tools''; - - homepage = "https://github.com/Cielo24/cet"; - }; - } - ) {}; - - cet = cet_0_2_3; - cf_0_1_2 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "cf"; version = "0.1.2"; src = fetchHex { @@ -4829,13 +3351,13 @@ let description = ''Terminal colour helper''; license = stdenv.lib.licenses.mit; }; - } + } // packageOverrides) ) {}; cf_0_2_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "cf"; version = "0.2.1"; src = fetchHex { @@ -4849,15 +3371,15 @@ let description = ''Terminal colour helper''; license = stdenv.lib.licenses.mit; }; - } + } // packageOverrides) ) {}; cf = cf_0_2_1; chacha20_0_3_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "chacha20"; version = "0.3.2"; src = fetchHex { @@ -4872,15 +3394,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/mwmiller/chacha20_ex"; }; - } + } // packageOverrides) ) {}; chacha20 = chacha20_0_3_2; changeset_0_2_1 = callPackage ( - { buildMix, fetchHex, defmemo_0_1_1 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, defmemo_0_1_1 }: + buildMix ({ name = "changeset"; version = "0.2.1"; src = fetchHex { @@ -4897,15 +3419,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/erwald/elixir-changeset"; }; - } + } // packageOverrides) ) {}; changeset = changeset_0_2_1; changex_0_1_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "changex"; version = "0.1.1"; src = fetchHex { @@ -4921,108 +3443,21 @@ let license = stdenv.lib.licenses.free; homepage = "https://github.com/Gazler/changex"; }; - } + } // packageOverrides) ) {}; changex = changex_0_1_1; - chaos_spawn_0_7_0 = callPackage - ( - { buildMix, fetchHex, timex_0_19_5, exactor_2_2_0 }: - buildMix { - name = "chaos_spawn"; - version = "0.7.0"; - src = fetchHex { - pkg = "chaos_spawn"; - version = "0.7.0"; - sha256 = - "c4c8e985e750706fb4351d6eb036b513a4b7ea3e689a9aecd424251991f21eaa"; - }; - beamDeps = [ timex_0_19_5 exactor_2_2_0 ]; - - meta = { - longDescription = ''Providing tools to randomly kill proceses. - With the goal of creating robust supevision - trees.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/meadsteve/chaos-spawn"; - }; - } - ) {}; - - chaos_spawn = chaos_spawn_0_7_0; - - charlotte_0_4_0 = callPackage + chartkick_0_0_2 = callPackage ( { buildMix, + packageOverrides ? {}, fetchHex, - cowboy_1_0_4, - env_conf_0_3_0, - uuid_1_0_0, - jazz_0_2_1 + uuid_1_1_3, + poison_1_5_2 }: - buildMix { - name = "charlotte"; - version = "0.4.0"; - src = fetchHex { - pkg = "charlotte"; - version = "0.4.0"; - sha256 = - "2c0eb1335922bec0c6bc5e8f3dc4d84192657b708c2558742f676ed430f0950f"; - }; - beamDeps = [ cowboy_1_0_4 env_conf_0_3_0 uuid_1_0_0 jazz_0_2_1 - ]; - - meta = { - longDescription = '' Charlotte is a Web Framework. It takes a - little from Rails and a little from Sinatra and - does a few things it`s own way. The goal is to - be light weight, fun and get out of your way. - defmodule Controller do use - Charlotte.Handlers.HTTP def routes do [ - {"/path", :path}, {"/path/:part", - :path_with_part} ] end def path("GET", _params, - conn) do render [message: "hello from path"], - conn end def path(verb, _params, conn) do - respond 405, {"Allowed", "GET"}, "#{verb} not - allowed", conn end end ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/LeakyBucket/charlotte.git"; - }; - } - ) {}; - - charlotte = charlotte_0_4_0; - - charm_0_0_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "charm"; - version = "0.0.1"; - src = fetchHex { - pkg = "charm"; - version = "0.0.1"; - sha256 = - "97a05c37c76b2efa5e8bd3c47333e9ebfe4f7c8777540900fcbec70c287bffa7"; - }; - - meta = { - description = ''Use ansi terminal characters to write colors and - cursor positions.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/tomgco/elixir-charm"; - }; - } - ) {}; - - charm = charm_0_0_1; - - chartkick_0_0_2 = callPackage - ( - { buildMix, fetchHex, uuid_1_1_3, poison_1_5_2 }: - buildMix { + buildMix ({ name = "chartkick"; version = "0.0.2"; src = fetchHex { @@ -5034,15 +3469,15 @@ let beamDeps = [ uuid_1_1_3 poison_1_5_2 ]; meta = { }; - } + } // packageOverrides) ) {}; chartkick = chartkick_0_0_2; chash_0_1_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "chash"; version = "0.1.1"; src = fetchHex { @@ -5057,73 +3492,15 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/project-fifo/chash"; }; - } + } // packageOverrides) ) {}; chash = chash_0_1_1; - chatter_0_0_14 = callPackage - ( - { - buildMix, fetchHex, snappy_1_1_1, ranch_1_2_1, exactor_2_2_0 - }: - buildMix { - name = "chatter"; - version = "0.0.14"; - src = fetchHex { - pkg = "chatter"; - version = "0.0.14"; - sha256 = - "6f6ee9aac860198a08322f77a334df82c43e38aa9f5fa7186034bf84ac86f060"; - }; - beamDeps = [ snappy_1_1_1 ranch_1_2_1 exactor_2_2_0 ]; - - meta = { - longDescription = ''Chatter is extracted from the ScaleSmall - project as a standalone piece. This may be used - independently to broadcast messages to a set of - nodes. It uses a mixture of UDP multicast and - TCP to deliver messages and tries to minimize - network traffic while doing so.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/dbeck/chatter_ex/"; - }; - } - ) {}; - - chatter = chatter_0_0_14; - - chinese_translation_0_1_0 = callPackage - ( - { buildMix, fetchHex, httpoison_0_8_2 }: - buildMix { - name = "chinese_translation"; - version = "0.1.0"; - src = fetchHex { - pkg = "chinese_translation"; - version = "0.1.0"; - sha256 = - "d5e4f59421bad59e465322ce7a8f366179e5f6a732d7e06435e8a7c01f42e7ab"; - }; - beamDeps = [ httpoison_0_8_2 ]; - - meta = { - longDescription = ''ChineseTranslation provides traditional - chinese <-> simplified chinese translation, as - well as pinyin translation and slugify for - chinese phrases/characters. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/tyrchen/chinese_translation"; - }; - } - ) {}; - - chinese_translation = chinese_translation_0_1_0; - chronos_0_3_9 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "chronos"; version = "0.3.9"; src = fetchHex { @@ -5140,13 +3517,13 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/nurugger07/chronos"; }; - } + } // packageOverrides) ) {}; chronos_1_5_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "chronos"; version = "1.5.1"; src = fetchHex { @@ -5163,15 +3540,17 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/nurugger07/chronos"; }; - } + } // packageOverrides) ) {}; chronos = chronos_1_5_1; chunky_svg_0_0_4 = callPackage ( - { buildMix, fetchHex, xml_builder_0_0_8 }: - buildMix { + { + buildMix, packageOverrides ? {}, fetchHex, xml_builder_0_0_8 + }: + buildMix ({ name = "chunky_svg"; version = "0.0.4"; src = fetchHex { @@ -5187,15 +3566,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "cidr"; version = "1.0.0"; src = fetchHex { @@ -5211,15 +3590,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "cipher"; version = "0.1.0"; src = fetchHex { @@ -5241,44 +3620,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/rubencaro/cipher"; }; - } + } // packageOverrides) ) {}; - cipher_1_0_0 = callPackage - ( - { buildMix, fetchHex, poison_2_1_0 }: - buildMix { - name = "cipher"; - version = "1.0.0"; - src = fetchHex { - pkg = "cipher"; - version = "1.0.0"; - sha256 = - "a83812b09b65c6a821129e709fee31b4f96ccc0c547e29fe42928ed49811ed79"; - }; - beamDeps = [ poison_2_1_0 ]; - - 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"; - }; - } - ) {}; - - cipher = cipher_1_0_0; - cirru_parser_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "cirru_parser"; version = "0.0.1"; src = fetchHex { @@ -5293,15 +3641,21 @@ let 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, fetchHex, poison_1_5_2, httpotion_2_2_2 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_5_2, + httpotion_2_2_2 + }: + buildMix ({ name = "ckan"; version = "0.0.2"; src = fetchHex { @@ -5318,100 +3672,21 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/rossjones/ckan_ex"; }; - } + } // packageOverrides) ) {}; ckan = ckan_0_0_2; - cldr_0_0_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "cldr"; - version = "0.0.1"; - src = fetchHex { - pkg = "cldr"; - version = "0.0.1"; - sha256 = - "12e38f1ac12957606db8bd63314d98e40db007ff413de8f2ec94e0520a078201"; - }; - - meta = { - description = ''cldr is a library to use information from CLDR - data. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/magicienap/cldr"; - }; - } - ) {}; - - cldr = cldr_0_0_1; - - cleverbot_0_0_1 = callPackage - ( - { buildMix, fetchHex, httpoison_0_7_5 }: - buildMix { - name = "cleverbot"; - version = "0.0.1"; - src = fetchHex { - pkg = "cleverbot"; - version = "0.0.1"; - sha256 = - "2a6f1bedbfd03fa0bbceff1134976d720e349cd7551cd5033eadf79f6cea4622"; - }; - beamDeps = [ httpoison_0_7_5 ]; - - meta = { - description = ''A Cleverbot API wrapper.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/BlakeWilliams/Elixir-Cleverbot"; - }; - } - ) {}; - - cleverbot = cleverbot_0_0_1; - - clicksign_0_0_2 = callPackage + clint_0_0_1 = callPackage ( { buildMix, + packageOverrides ? {}, fetchHex, - plug_1_1_3, - httpoison_0_8_2, - exjsx_3_2_0, - cowboy_1_0_4, - bypass_0_5_1 + plug_0_11_3, + cowboy_1_0_4 }: - buildMix { - name = "clicksign"; - version = "0.0.2"; - src = fetchHex { - pkg = "clicksign"; - version = "0.0.2"; - sha256 = - "e6e9335c86298d5d5af6c18b85f3533554eca74d6129e1aea7dae17849b48ed2"; - }; - beamDeps = [ - plug_1_1_3 - httpoison_0_8_2 - exjsx_3_2_0 - cowboy_1_0_4 - bypass_0_5_1 - ]; - - meta = { - description = ''Clicksign client''; - - }; - } - ) {}; - - clicksign = clicksign_0_0_2; - - clint_0_0_1 = callPackage - ( - { buildMix, fetchHex, plug_0_11_3, cowboy_1_0_4 }: - buildMix { + buildMix ({ name = "clint"; version = "0.0.1"; src = fetchHex { @@ -5428,15 +3703,17 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/lpil/clint"; }; - } + } // packageOverrides) ) {}; clint = clint_0_0_1; clique_3_0_1 = callPackage ( - { buildRebar3, fetchHex, cuttlefish_2_0_7 }: - buildRebar3 { + { + buildRebar3, packageOverrides ? {}, fetchHex, cuttlefish_2_0_7 + }: + buildRebar3 ({ name = "clique"; version = "3.0.1"; src = fetchHex { @@ -5453,39 +3730,15 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/basho/clique"; }; - } + } // packageOverrides) ) {}; clique = clique_3_0_1; - cloak_0_2_0 = callPackage - ( - { buildMix, fetchHex, poison_2_1_0, ecto_2_0_0_beta_2 }: - buildMix { - name = "cloak"; - version = "0.2.0"; - src = fetchHex { - pkg = "cloak"; - version = "0.2.0"; - sha256 = - "8e2455ab420102280719efc86cee7a58d1de358a541cd7d1b49b74fa30fa8fb8"; - }; - beamDeps = [ poison_2_1_0 ecto_2_0_0_beta_2 ]; - - meta = { - description = ''Encrypted fields for Ecto.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/danielberkompas/cloak"; - }; - } - ) {}; - - cloak = cloak_0_2_0; - close_enough_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "close_enough"; version = "0.0.1"; src = fetchHex { @@ -5501,908 +3754,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/sivsushruth/close_enough"; }; - } + } // packageOverrides) ) {}; close_enough = close_enough_0_0_1; - cloudex_0_0_2 = callPackage - ( - { - buildMix, - fetchHex, - tzdata_0_5_7, - timex_0_19_5, - poison_1_5_2, - httpoison_0_8_2 - }: - buildMix { - name = "cloudex"; - version = "0.0.2"; - src = fetchHex { - pkg = "cloudex"; - version = "0.0.2"; - sha256 = - "eb424a8e6610de6f7a2f2be074937c571a86d11e4b942d2ea39900855a66b306"; - }; - beamDeps = [ - tzdata_0_5_7 timex_0_19_5 poison_1_5_2 httpoison_0_8_2 - ]; - - meta = { - longDescription = ''A library that helps with uploading image - files and urls to cloudinary. Also provides an - helper to generate transformations and - cloudinary urls pointing to your images''; - license = stdenv.lib.licenses.wtfpl; - homepage = "https://github.com/smeevil/cloudex"; - }; - } - ) {}; - - cloudex = cloudex_0_0_2; - - cloudi_core_1_5_1 = callPackage - ( - { - buildRebar3, - fetchHex, - varpool_1_5_1, - uuid_erl_1_5_1, - trie_1_5_1, - syslog_1_0_2, - supool_1_5_1, - reltool_util_1_5_1, - quickrand_1_5_1, - pqueue_1_5_1, - nodefinder_1_5_1, - keys1value_1_5_1, - key2value_1_5_1, - erlang_term_1_5_1, - dynamic_compile_1_0_0, - cpg_1_5_1 - }: - buildRebar3 { - name = "cloudi_core"; - version = "1.5.1"; - src = fetchHex { - pkg = "cloudi_core"; - version = "1.5.1"; - sha256 = - "1dd4471c9c5d5b0e8c0ccaff2878e046c430a8b00d59c2c0a41ed29cba1102ba"; - }; - - beamDeps = [ - varpool_1_5_1 - uuid_erl_1_5_1 - trie_1_5_1 - syslog_1_0_2 - supool_1_5_1 - reltool_util_1_5_1 - quickrand_1_5_1 - pqueue_1_5_1 - nodefinder_1_5_1 - keys1value_1_5_1 - key2value_1_5_1 - erlang_term_1_5_1 - dynamic_compile_1_0_0 - cpg_1_5_1 - ]; - - meta = { - description = ''Erlang/Elixir Cloud Framework''; - license = stdenv.lib.licenses.bsd3; - homepage = "http://cloudi.org"; - }; - } - ) {}; - - cloudi_core = cloudi_core_1_5_1; - - cloudi_service_api_requests_1_5_1 = callPackage - ( - { - buildRebar3, fetchHex, trie_1_5_1, jsx_2_3_1, cloudi_core_1_5_1 - }: - buildRebar3 { - name = "cloudi_service_api_requests"; - version = "1.5.1"; - src = fetchHex { - pkg = "cloudi_service_api_requests"; - version = "1.5.1"; - sha256 = - "3af4a6bb4ef9f428f6044a752cc5c37cd7bf9fdc7d26407044b8c716b40c86f3"; - }; - - beamDeps = [ trie_1_5_1 jsx_2_3_1 cloudi_core_1_5_1 ]; - - meta = { - description = ''Erlang/Elixir Cloud Framework API requests - (JSON-RPC/Erlang-term support)''; - license = stdenv.lib.licenses.bsd3; - homepage = "http://cloudi.org"; - }; - } - ) {}; - - cloudi_service_api_requests = cloudi_service_api_requests_1_5_1; - - cloudi_service_db_1_5_1 = callPackage - ( - { - buildRebar3, - fetchHex, - uuid_erl_1_5_1, - trie_1_5_1, - cloudi_core_1_5_1 - }: - buildRebar3 { - name = "cloudi_service_db"; - version = "1.5.1"; - src = fetchHex { - pkg = "cloudi_service_db"; - version = "1.5.1"; - sha256 = - "067fccc8ca006722021b873995245f498a86582540bf738f6648bdceebd187e9"; - }; - - beamDeps = [ uuid_erl_1_5_1 trie_1_5_1 cloudi_core_1_5_1 ]; - - meta = { - description = ''Erlang/Elixir Cloud Framework Database - (in-memory/testing/generic)''; - license = stdenv.lib.licenses.bsd3; - homepage = "http://cloudi.org"; - }; - } - ) {}; - - cloudi_service_db = cloudi_service_db_1_5_1; - - cloudi_service_db_cassandra_1_3_3 = callPackage - ( - { buildRebar3, fetchHex, cloudi_core_1_5_1 }: - buildRebar3 { - name = "cloudi_service_db_cassandra"; - version = "1.3.3"; - src = fetchHex { - pkg = "cloudi_service_db_cassandra"; - version = "1.3.3"; - sha256 = - "78c9f924df50466fc3d27ffdd38dd235562be2ba4da5c298c569b3eee2bc10ef"; - }; - - beamDeps = [ cloudi_core_1_5_1 ]; - - meta = { - description = ''Erlang/Elixir Cloud Framework Cassandra - Service''; - license = stdenv.lib.licenses.bsd3; - homepage = "http://cloudi.org"; - }; - } - ) {}; - - cloudi_service_db_cassandra = cloudi_service_db_cassandra_1_3_3; - - cloudi_service_db_cassandra_cql_1_5_1 = callPackage - ( - { buildRebar3, fetchHex, cloudi_core_1_5_1 }: - buildRebar3 { - name = "cloudi_service_db_cassandra_cql"; - version = "1.5.1"; - src = fetchHex { - pkg = "cloudi_service_db_cassandra_cql"; - version = "1.5.1"; - sha256 = - "09173e571262745de51bb0b53732d909d846c80079ce33b976df7d61584f9ba8"; - }; - - beamDeps = [ cloudi_core_1_5_1 ]; - - meta = { - description = ''Erlang/Elixir Cloud Framework Cassandra CQL - Service''; - license = stdenv.lib.licenses.bsd3; - homepage = "http://cloudi.org"; - }; - } - ) {}; - - cloudi_service_db_cassandra_cql = - cloudi_service_db_cassandra_cql_1_5_1; - - cloudi_service_db_couchdb_1_5_1 = callPackage - ( - { buildRebar3, fetchHex, cloudi_core_1_5_1 }: - buildRebar3 { - name = "cloudi_service_db_couchdb"; - version = "1.5.1"; - src = fetchHex { - pkg = "cloudi_service_db_couchdb"; - version = "1.5.1"; - sha256 = - "c6e97aadacf625549c99a96435e35d0dc971a7d0e7cf5283769e3d7e8ee36812"; - }; - - beamDeps = [ cloudi_core_1_5_1 ]; - - meta = { - description = ''Erlang/Elixir Cloud Framework CouchDB Service''; - license = stdenv.lib.licenses.bsd3; - homepage = "http://cloudi.org"; - }; - } - ) {}; - - cloudi_service_db_couchdb = cloudi_service_db_couchdb_1_5_1; - - cloudi_service_db_elasticsearch_1_3_3 = callPackage - ( - { buildRebar3, fetchHex, cloudi_core_1_5_1 }: - buildRebar3 { - name = "cloudi_service_db_elasticsearch"; - version = "1.3.3"; - src = fetchHex { - pkg = "cloudi_service_db_elasticsearch"; - version = "1.3.3"; - sha256 = - "2e4f6c8488ce879235f0548cb15cae6f3bcbb3c0b20e51ab3faad6769220ee12"; - }; - - beamDeps = [ cloudi_core_1_5_1 ]; - - meta = { - description = ''Erlang/Elixir Cloud Framework elasticsearch - Service''; - license = stdenv.lib.licenses.bsd3; - homepage = "http://cloudi.org"; - }; - } - ) {}; - - cloudi_service_db_elasticsearch = - cloudi_service_db_elasticsearch_1_3_3; - - cloudi_service_db_http_elli_1_5_1 = callPackage - ( - { - buildRebar3, - fetchHex, - uuid_erl_1_5_1, - trie_1_5_1, - elli_1_0_5, - cowlib_1_0_2, - cloudi_core_1_5_1 - }: - buildRebar3 { - name = "cloudi_service_db_http_elli"; - version = "1.5.1"; - src = fetchHex { - pkg = "cloudi_service_db_http_elli"; - version = "1.5.1"; - sha256 = - "f1dde8cbb83773fb0e9ac918ac5c6ffdf3255462d252296b9a23f02e144ea13a"; - }; - - beamDeps = [ - uuid_erl_1_5_1 - trie_1_5_1 - elli_1_0_5 - cowlib_1_0_2 - cloudi_core_1_5_1 - ]; - - meta = { - description = ''Erlang/Elixir Cloud Framework elli HTTP - Service''; - license = stdenv.lib.licenses.bsd3; - homepage = "http://cloudi.org"; - }; - } - ) {}; - - cloudi_service_db_http_elli = cloudi_service_db_http_elli_1_5_1; - - cloudi_service_db_memcached_1_5_1 = callPackage - ( - { buildRebar3, fetchHex, cloudi_core_1_5_1 }: - buildRebar3 { - name = "cloudi_service_db_memcached"; - version = "1.5.1"; - src = fetchHex { - pkg = "cloudi_service_db_memcached"; - version = "1.5.1"; - sha256 = - "edcd28714e02d1b875c0c3a754fe230d5247b7b5e10194a74ee4d425fdca0839"; - }; - - beamDeps = [ cloudi_core_1_5_1 ]; - - meta = { - description = ''Erlang/Elixir Cloud Framework memcached - Service''; - license = stdenv.lib.licenses.bsd3; - homepage = "http://cloudi.org"; - }; - } - ) {}; - - cloudi_service_db_memcached = cloudi_service_db_memcached_1_5_1; - - cloudi_service_db_mysql_1_5_1 = callPackage - ( - { buildRebar3, fetchHex, cloudi_core_1_5_1 }: - buildRebar3 { - name = "cloudi_service_db_mysql"; - version = "1.5.1"; - src = fetchHex { - pkg = "cloudi_service_db_mysql"; - version = "1.5.1"; - sha256 = - "9bb0dec142d903615e0a5e360bd5faae9ceeccf37f1afc705e2a9a402c273a5b"; - }; - - beamDeps = [ cloudi_core_1_5_1 ]; - - meta = { - description = ''Erlang/Elixir Cloud Framework MySQL Service''; - license = stdenv.lib.licenses.bsd3; - homepage = "http://cloudi.org"; - }; - } - ) {}; - - cloudi_service_db_mysql = cloudi_service_db_mysql_1_5_1; - - cloudi_service_db_pgsql_1_5_1 = callPackage - ( - { buildRebar3, fetchHex, cloudi_core_1_5_1 }: - buildRebar3 { - name = "cloudi_service_db_pgsql"; - version = "1.5.1"; - src = fetchHex { - pkg = "cloudi_service_db_pgsql"; - version = "1.5.1"; - sha256 = - "d7cf7cb44d57e84f68310f0e146bf2c76f0aa42bca0073166c0da79ddd44b70e"; - }; - - beamDeps = [ cloudi_core_1_5_1 ]; - - meta = { - description = ''Erlang/Elixir Cloud Framework PostgreSQL - Service''; - license = stdenv.lib.licenses.bsd3; - homepage = "http://cloudi.org"; - }; - } - ) {}; - - cloudi_service_db_pgsql = cloudi_service_db_pgsql_1_5_1; - - cloudi_service_db_riak_1_3_3 = callPackage - ( - { buildRebar3, fetchHex, cloudi_core_1_5_1 }: - buildRebar3 { - name = "cloudi_service_db_riak"; - version = "1.3.3"; - src = fetchHex { - pkg = "cloudi_service_db_riak"; - version = "1.3.3"; - sha256 = - "902b6cb52a077fa47579631c07ca5ee414001b7388aac324b668c902a75de459"; - }; - - beamDeps = [ cloudi_core_1_5_1 ]; - - meta = { - description = ''Erlang/Elixir Cloud Framework Riak Service''; - license = stdenv.lib.licenses.bsd3; - homepage = "http://cloudi.org"; - }; - } - ) {}; - - cloudi_service_db_riak = cloudi_service_db_riak_1_3_3; - - cloudi_service_db_tokyotyrant_1_5_0 = callPackage - ( - { buildRebar3, fetchHex, cloudi_core_1_5_1 }: - buildRebar3 { - name = "cloudi_service_db_tokyotyrant"; - version = "1.5.0"; - src = fetchHex { - pkg = "cloudi_service_db_tokyotyrant"; - version = "1.5.0"; - sha256 = - "553893dfed554b3988e80f6dbc2aa301255941646fe82df57d4bca00ffeb9d1a"; - }; - - beamDeps = [ cloudi_core_1_5_1 ]; - - meta = { - description = ''Erlang/Elixir Cloud Framework Tokyo Tyrant - Service''; - license = stdenv.lib.licenses.bsd3; - homepage = "http://cloudi.org"; - }; - } - ) {}; - - cloudi_service_db_tokyotyrant = - cloudi_service_db_tokyotyrant_1_5_0; - - cloudi_service_filesystem_1_5_1 = callPackage - ( - { buildRebar3, fetchHex, cowlib_1_0_2, cloudi_core_1_5_1 }: - buildRebar3 { - name = "cloudi_service_filesystem"; - version = "1.5.1"; - src = fetchHex { - pkg = "cloudi_service_filesystem"; - version = "1.5.1"; - sha256 = - "18fa3406bd3a6cafb40cbacd01c16ff32daccf6b4eb45efa6ec351d03f08d4c3"; - }; - - beamDeps = [ cowlib_1_0_2 cloudi_core_1_5_1 ]; - - meta = { - description = ''Erlang/Elixir Cloud Framework Filesystem - Service''; - license = stdenv.lib.licenses.bsd3; - homepage = "http://cloudi.org"; - }; - } - ) {}; - - cloudi_service_filesystem = cloudi_service_filesystem_1_5_1; - - cloudi_service_http_client_1_5_1 = callPackage - ( - { - buildRebar3, - fetchHex, - uuid_erl_1_5_1, - trie_1_5_1, - cloudi_core_1_5_1 - }: - buildRebar3 { - name = "cloudi_service_http_client"; - version = "1.5.1"; - src = fetchHex { - pkg = "cloudi_service_http_client"; - version = "1.5.1"; - sha256 = - "674be0160e09543e9cddf0286b11d8110514b0db3d18e2f9e097796997b7a7db"; - }; - - beamDeps = [ uuid_erl_1_5_1 trie_1_5_1 cloudi_core_1_5_1 ]; - - meta = { - description = ''Erlang/Elixir Cloud Framework HTTP client - Service''; - license = stdenv.lib.licenses.bsd3; - homepage = "http://cloudi.org"; - }; - } - ) {}; - - cloudi_service_http_client = cloudi_service_http_client_1_5_1; - - cloudi_service_http_cowboy_1_5_1 = callPackage - ( - { buildRebar3, fetchHex, cowboy_1_0_4, cloudi_core_1_5_1 }: - buildRebar3 { - name = "cloudi_service_http_cowboy"; - version = "1.5.1"; - src = fetchHex { - pkg = "cloudi_service_http_cowboy"; - version = "1.5.1"; - sha256 = - "e0d07bbcd33bac980b66b7854bb8804433ba4619b6c6a3be63fefa36372b7a4b"; - }; - - beamDeps = [ cowboy_1_0_4 cloudi_core_1_5_1 ]; - - meta = { - description = ''Erlang/Elixir Cloud Framework cowboy HTTP/HTTPS - Service''; - license = stdenv.lib.licenses.bsd3; - homepage = "http://cloudi.org"; - }; - } - ) {}; - - cloudi_service_http_cowboy = cloudi_service_http_cowboy_1_5_1; - - cloudi_service_http_rest_1_5_1 = callPackage - ( - { buildRebar3, fetchHex, trie_1_5_1, cloudi_core_1_5_1 }: - buildRebar3 { - name = "cloudi_service_http_rest"; - version = "1.5.1"; - src = fetchHex { - pkg = "cloudi_service_http_rest"; - version = "1.5.1"; - sha256 = - "5f9f51df32defa5d383446431a0029d614732b1377933e0c682ca4556cfe63ce"; - }; - - beamDeps = [ trie_1_5_1 cloudi_core_1_5_1 ]; - - meta = { - description = ''REST HTTP CloudI Service''; - license = stdenv.lib.licenses.bsd3; - homepage = "http://cloudi.org"; - }; - } - ) {}; - - cloudi_service_http_rest = cloudi_service_http_rest_1_5_1; - - cloudi_service_map_reduce_1_5_1 = callPackage - ( - { buildRebar3, fetchHex, cloudi_core_1_5_1 }: - buildRebar3 { - name = "cloudi_service_map_reduce"; - version = "1.5.1"; - src = fetchHex { - pkg = "cloudi_service_map_reduce"; - version = "1.5.1"; - sha256 = - "44d31fd7f4e772bce5f508f4eb41d423bbfc347f2d7a4194326085ee5542a61d"; - }; - - beamDeps = [ cloudi_core_1_5_1 ]; - - meta = { - description = ''Erlang/Elixir Cloud Framework Map/Reduce - Service''; - license = stdenv.lib.licenses.bsd3; - homepage = "http://cloudi.org"; - }; - } - ) {}; - - cloudi_service_map_reduce = cloudi_service_map_reduce_1_5_1; - - cloudi_service_monitoring_1_5_1 = callPackage - ( - { - buildRebar3, - fetchHex, - key2value_1_5_1, - folsom_0_8_3, - cloudi_core_1_5_1 - }: - buildRebar3 { - name = "cloudi_service_monitoring"; - version = "1.5.1"; - src = fetchHex { - pkg = "cloudi_service_monitoring"; - version = "1.5.1"; - sha256 = - "4cb1d89085bba3b30910d8d129dde609cc063f761a736418da0eb9491ee673d5"; - }; - - beamDeps = [ key2value_1_5_1 folsom_0_8_3 cloudi_core_1_5_1 ]; - - meta = { - description = ''CloudI Monitoring Service''; - license = stdenv.lib.licenses.bsd3; - homepage = "http://cloudi.org"; - }; - } - ) {}; - - cloudi_service_monitoring = cloudi_service_monitoring_1_5_1; - - cloudi_service_queue_1_5_1 = callPackage - ( - { buildRebar3, fetchHex, cloudi_core_1_5_1 }: - buildRebar3 { - name = "cloudi_service_queue"; - version = "1.5.1"; - src = fetchHex { - pkg = "cloudi_service_queue"; - version = "1.5.1"; - sha256 = - "7fc7a1f0e8a888df2f6b5a2d3c0a7134475ba99f08aeb92244bbbf12e420d4c6"; - }; - - beamDeps = [ cloudi_core_1_5_1 ]; - - meta = { - description = ''Erlang/Elixir Cloud Framework Persistent Queue - Service''; - license = stdenv.lib.licenses.bsd3; - homepage = "http://cloudi.org"; - }; - } - ) {}; - - cloudi_service_queue = cloudi_service_queue_1_5_1; - - cloudi_service_quorum_1_5_1 = callPackage - ( - { buildRebar3, fetchHex, cloudi_core_1_5_1 }: - buildRebar3 { - name = "cloudi_service_quorum"; - version = "1.5.1"; - src = fetchHex { - pkg = "cloudi_service_quorum"; - version = "1.5.1"; - sha256 = - "2ca5f275073696f6226c7610a3933761d28081ad86d2b7a37dac41b40fe293f9"; - }; - - beamDeps = [ cloudi_core_1_5_1 ]; - - meta = { - description = ''Erlang/Elixir Cloud Framework Quorum Service''; - license = stdenv.lib.licenses.bsd3; - homepage = "http://cloudi.org"; - }; - } - ) {}; - - cloudi_service_quorum = cloudi_service_quorum_1_5_1; - - cloudi_service_router_1_5_1 = callPackage - ( - { buildRebar3, fetchHex, cloudi_core_1_5_1 }: - buildRebar3 { - name = "cloudi_service_router"; - version = "1.5.1"; - src = fetchHex { - pkg = "cloudi_service_router"; - version = "1.5.1"; - sha256 = - "e37d8f657183ab44fe28f27d02a6a50608c04af8f47872cbd4cb12a19a23b18f"; - }; - - beamDeps = [ cloudi_core_1_5_1 ]; - - meta = { - description = ''Erlang/Elixir Cloud Framework Router Service''; - license = stdenv.lib.licenses.bsd3; - homepage = "http://cloudi.org"; - }; - } - ) {}; - - cloudi_service_router = cloudi_service_router_1_5_1; - - cloudi_service_tcp_1_5_1 = callPackage - ( - { buildRebar3, fetchHex, cloudi_core_1_5_1 }: - buildRebar3 { - name = "cloudi_service_tcp"; - version = "1.5.1"; - src = fetchHex { - pkg = "cloudi_service_tcp"; - version = "1.5.1"; - sha256 = - "f0be083ef768aa356148f7fa26989139bfc5d8fb6f1119bd31eed06e5ab38469"; - }; - - beamDeps = [ cloudi_core_1_5_1 ]; - - meta = { - description = ''Erlang/Elixir Cloud Framework TCP Service''; - license = stdenv.lib.licenses.bsd3; - homepage = "http://cloudi.org"; - }; - } - ) {}; - - cloudi_service_tcp = cloudi_service_tcp_1_5_1; - - cloudi_service_timers_1_5_1 = callPackage - ( - { buildRebar3, fetchHex, cloudi_core_1_5_1 }: - buildRebar3 { - name = "cloudi_service_timers"; - version = "1.5.1"; - src = fetchHex { - pkg = "cloudi_service_timers"; - version = "1.5.1"; - sha256 = - "c576fe4725493fd3303945398b0984f339a8b52877bead4deb282e7d0f4bbc64"; - }; - - beamDeps = [ cloudi_core_1_5_1 ]; - - meta = { - description = ''Erlang/Elixir Cloud Framework Timers Service''; - license = stdenv.lib.licenses.bsd3; - homepage = "http://cloudi.org"; - }; - } - ) {}; - - cloudi_service_timers = cloudi_service_timers_1_5_1; - - cloudi_service_udp_1_5_1 = callPackage - ( - { buildRebar3, fetchHex, cloudi_core_1_5_1 }: - buildRebar3 { - name = "cloudi_service_udp"; - version = "1.5.1"; - src = fetchHex { - pkg = "cloudi_service_udp"; - version = "1.5.1"; - sha256 = - "d2939f6eb8048a0b154463e3ee5ff986a0a5370c97019e5562ee3fbb07b8698b"; - }; - - beamDeps = [ cloudi_core_1_5_1 ]; - - meta = { - description = ''Erlang/Elixir Cloud Framework UDP Service''; - license = stdenv.lib.licenses.bsd3; - homepage = "http://cloudi.org"; - }; - } - ) {}; - - cloudi_service_udp = cloudi_service_udp_1_5_1; - - cloudi_service_validate_1_5_1 = callPackage - ( - { buildRebar3, fetchHex, cloudi_core_1_5_1 }: - buildRebar3 { - name = "cloudi_service_validate"; - version = "1.5.1"; - src = fetchHex { - pkg = "cloudi_service_validate"; - version = "1.5.1"; - sha256 = - "96712d805bea5f36acbb01c90b46b87532e64a454a7c2b4deb34029508c51c78"; - }; - - beamDeps = [ cloudi_core_1_5_1 ]; - - meta = { - description = ''Erlang/Elixir Cloud Framework Validate Service''; - license = stdenv.lib.licenses.bsd3; - homepage = "http://cloudi.org"; - }; - } - ) {}; - - cloudi_service_validate = cloudi_service_validate_1_5_1; - - cloudi_service_zeromq_1_5_1 = callPackage - ( - { buildRebar3, fetchHex, cloudi_core_1_5_1 }: - buildRebar3 { - name = "cloudi_service_zeromq"; - version = "1.5.1"; - src = fetchHex { - pkg = "cloudi_service_zeromq"; - version = "1.5.1"; - sha256 = - "dba08d714d32fc9b50658ef075a13e99285458f73f433fb6f2059afcfb1ce498"; - }; - - beamDeps = [ cloudi_core_1_5_1 ]; - - meta = { - description = ''Erlang/Elixir Cloud Framework ZeroMQ Service''; - license = stdenv.lib.licenses.bsd3; - homepage = "http://cloudi.org"; - }; - } - ) {}; - - cloudi_service_zeromq = cloudi_service_zeromq_1_5_1; - - cloudinary_0_0_2 = callPackage - ( - { buildMix, fetchHex, poison_1_4_0, httpoison_0_8_2 }: - buildMix { - name = "cloudinary"; - version = "0.0.2"; - src = fetchHex { - pkg = "cloudinary"; - version = "0.0.2"; - sha256 = - "9e32b21717b193f90a526203725811b96294d7c88391e5ad4a57bf178678cc4c"; - }; - beamDeps = [ poison_1_4_0 httpoison_0_8_2 ]; - - meta = { - description = ''Library to upload to Cloudinary''; - license = stdenv.lib.licenses.mit; - }; - } - ) {}; - - cloudinary = cloudinary_0_0_2; - - cloudinaryex_0_0_2 = callPackage - ( - { - buildMix, fetchHex, timex_1_0_2, poison_1_5_2, httpoison_0_8_2 - }: - buildMix { - name = "cloudinaryex"; - version = "0.0.2"; - src = fetchHex { - pkg = "cloudinaryex"; - version = "0.0.2"; - sha256 = - "31518baacfcca428e30ee8f1c411d76568344e7032ed93cf34535e279c8472fc"; - }; - beamDeps = [ timex_1_0_2 poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''A library for connecting with Cloudinary in - Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/micahwedemeyer/cloudinaryex"; - }; - } - ) {}; - - cloudinaryex = cloudinaryex_0_0_2; - - clox_0_1_3 = callPackage - ( - { buildMix, fetchHex, timex_0_13_5 }: - buildMix { - name = "clox"; - version = "0.1.3"; - src = fetchHex { - pkg = "clox"; - version = "0.1.3"; - sha256 = - "a4e9330289479ecffce51346071282d8470612462b40e150d34a27475411f35b"; - }; - beamDeps = [ timex_0_13_5 ]; - - meta = { - description = ''time series date keys''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/camshaft/clox"; - }; - } - ) {}; - - clox = clox_0_1_3; - - cmark_0_6_8 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "cmark"; - version = "0.6.8"; - src = fetchHex { - pkg = "cmark"; - version = "0.6.8"; - sha256 = - "ee148d419684923567be4f413cf82c6f8da2d235e40d434e616febca158372cc"; - }; - - meta = { - longDescription = ''Elixir NIF for cmark (C), a parser library - following the CommonMark spec, a compatible - implementation of Markdown.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/asaaki/cmark.ex"; - }; - } - ) {}; - - cmark = cmark_0_6_8; - cobertura_cover_0_9_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "cobertura_cover"; version = "0.9.0"; src = fetchHex { @@ -6419,15 +3779,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "codepagex"; version = "0.1.2"; src = fetchHex { @@ -6444,15 +3804,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/tallakt/codepagex"; }; - } + } // packageOverrides) ) {}; codepagex = codepagex_0_1_2; coffee_rotor_0_2_1 = callPackage ( - { buildMix, fetchHex, rotor_0_2_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, rotor_0_2_2 }: + buildMix ({ name = "coffee_rotor"; version = "0.2.1"; src = fetchHex { @@ -6469,86 +3829,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/HashNuke/coffee_rotor"; }; - } + } // packageOverrides) ) {}; coffee_rotor = coffee_rotor_0_2_1; - coinbase_0_0_1 = callPackage - ( - { - buildMix, - fetchHex, - timex_0_13_5, - poison_1_3_1, - inflex_1_0_0, - httpoison_0_7_5, - dotenv_0_0_4 - }: - buildMix { - name = "coinbase"; - version = "0.0.1"; - src = fetchHex { - pkg = "coinbase"; - version = "0.0.1"; - sha256 = - "c7d59d239f219623765a596dc61a678a527d19fd0110db1ea09ab937d0df9bcc"; - }; - beamDeps = [ - timex_0_13_5 - poison_1_3_1 - inflex_1_0_0 - httpoison_0_7_5 - dotenv_0_0_4 - ]; - - meta = { - description = ''Coinbase API for Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/gregpardo/coinbase-elixir"; - }; - } - ) {}; - - coinbase = coinbase_0_0_1; - - coincap_io_0_0_1 = callPackage - ( - { - buildMix, - fetchHex, - poison_1_5_2, - httpoison_0_8_2, - exconstructor_1_0_2 - }: - buildMix { - name = "coincap_io"; - version = "0.0.1"; - src = fetchHex { - pkg = "coincap_io"; - version = "0.0.1"; - sha256 = - "27638d227a407a204c83534e15917bd77fac64a8bdc96dbad07d59a935639da3"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 exconstructor_1_0_2 ]; - - meta = { - longDescription = ''WIP, unstable Elixir API wrapper for - coincap.io. Provides access to market - capitalization data of bitcoin, altcoins and - cryptotokens.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/cyberpunk-ventures/coincap_io_ex"; - }; - } - ) {}; - - coincap_io = coincap_io_0_0_1; - colixir_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "colixir"; version = "0.0.1"; src = fetchHex { @@ -6564,15 +3853,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/mondok/colixir"; }; - } + } // packageOverrides) ) {}; colixir = colixir_0_0_1; color_stream_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "color_stream"; version = "0.0.2"; src = fetchHex { @@ -6588,15 +3877,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "color_utils"; version = "0.2.0"; src = fetchHex { @@ -6611,15 +3900,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "colorful"; version = "0.6.0"; src = fetchHex { @@ -6634,15 +3923,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/Joe-noh/colorful"; }; - } + } // packageOverrides) ) {}; colorful = colorful_0_6_0; colorize_0_2_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "colorize"; version = "0.2.0"; src = fetchHex { @@ -6657,15 +3946,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/shiroyasha/colorize"; }; - } + } // packageOverrides) ) {}; colorize = colorize_0_2_0; colors_1_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "colors"; version = "1.0.1"; src = fetchHex { @@ -6680,15 +3969,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/lidashuang/colors"; }; - } + } // packageOverrides) ) {}; colors = colors_1_0_1; combination_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "combination"; version = "0.0.2"; src = fetchHex { @@ -6704,15 +3993,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/seantanly/elixir-combination"; }; - } + } // packageOverrides) ) {}; combination = combination_0_0_2; combine_0_7_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "combine"; version = "0.7.0"; src = fetchHex { @@ -6727,131 +4016,15 @@ let projects.''; license = stdenv.lib.licenses.mit; }; - } + } // packageOverrides) ) {}; combine = combine_0_7_0; - comeonin_1_6_0 = callPackage - ( - { buildErlangMk, fetchHex, comeonin_i18n_0_1_3 }: - buildErlangMk { - name = "comeonin"; - version = "1.6.0"; - src = fetchHex { - pkg = "comeonin"; - version = "1.6.0"; - sha256 = - "40dd0da2c33696d19515888fd86b9ffdcad92d49e9a6b3b13df98e824897a1b1"; - }; - beamDeps = [ comeonin_i18n_0_1_3 ]; - - meta = { - description = ''Password hashing (bcrypt, pbkdf2_sha512) library - for Elixir.''; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/elixircnx/comeonin"; - }; - } - ) {}; - - comeonin_2_0_3 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "comeonin"; - version = "2.0.3"; - src = fetchHex { - pkg = "comeonin"; - version = "2.0.3"; - sha256 = - "a9a6f87107ebf6898adeca7130adb1b9e421c1be7e8b30b13ac1e0354ea15198"; - }; - - meta = { - description = ''Password hashing (bcrypt, pbkdf2_sha512) library - for Elixir.''; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/elixircnx/comeonin"; - }; - } - ) {}; - - comeonin_2_1_1 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "comeonin"; - version = "2.1.1"; - src = fetchHex { - pkg = "comeonin"; - version = "2.1.1"; - sha256 = - "7f85774ae5d453f664d0e7809cc1ab32ff22855d16ff6a2edd68c6d36cb1a1aa"; - }; - - meta = { - description = ''Password hashing (bcrypt, pbkdf2_sha512) library - for Elixir.''; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/elixircnx/comeonin"; - }; - } - ) {}; - - comeonin_2_3_0 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "comeonin"; - version = "2.3.0"; - src = fetchHex { - pkg = "comeonin"; - version = "2.3.0"; - sha256 = - "f3463468faa27ec22116a0469406472b0f67cf86c3e9cb44ac2991c5a0c2655d"; - }; - - meta = { - description = ''Password hashing (bcrypt, pbkdf2_sha512) library - for Elixir.''; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/elixircnx/comeonin"; - }; - } - ) {}; - - comeonin = comeonin_2_3_0; - - comeonin_ecto_password_0_0_3 = callPackage - ( - { buildMix, fetchHex, ecto_1_1_5, comeonin_2_3_0 }: - buildMix { - name = "comeonin_ecto_password"; - version = "0.0.3"; - src = fetchHex { - pkg = "comeonin_ecto_password"; - version = "0.0.3"; - sha256 = - "44c8dbf5b81fca515b91422fddb240c5d714bc81bc0d59b3ca60300edb3f856b"; - }; - beamDeps = [ ecto_1_1_5 comeonin_2_3_0 ]; - - meta = { - description = ''Ecto custom type for storing encrypted password - using Comonin''; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/vic/comeonin_ecto_password"; - }; - } - ) {}; - - comeonin_ecto_password = comeonin_ecto_password_0_0_3; - comeonin_i18n_0_1_3 = callPackage ( - { buildMix, fetchHex, gettext_0_10_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, gettext_0_10_0 }: + buildMix ({ name = "comeonin_i18n"; version = "0.1.3"; src = fetchHex { @@ -6868,47 +4041,21 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/elixircnx/comeonin_i18n"; }; - } + } // packageOverrides) ) {}; comeonin_i18n = comeonin_i18n_0_1_3; - commerce_billing_0_0_2 = callPackage + complex_0_2_0 = callPackage ( { buildMix, + packageOverrides ? {}, fetchHex, - mock_0_1_3, - jazz_0_2_1, - httpoison_0_8_2, - ex_doc_0_11_4 + exprintf_0_1_6, + earmark_0_2_1 }: - buildMix { - name = "commerce_billing"; - version = "0.0.2"; - src = fetchHex { - pkg = "commerce_billing"; - version = "0.0.2"; - sha256 = - "6bb751f496011b974cb8d536b079eb7dfaeee4be827e4cf2fe0585e10f26bd04"; - }; - beamDeps = [ mock_0_1_3 jazz_0_2_1 httpoison_0_8_2 ex_doc_0_11_4 - ]; - - meta = { - description = ''Credit card processing library''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/joshnuss/commerce_billing"; - }; - } - ) {}; - - commerce_billing = commerce_billing_0_0_2; - - complex_0_2_0 = callPackage - ( - { buildMix, fetchHex, exprintf_0_1_6, earmark_0_2_1 }: - buildMix { + buildMix ({ name = "complex"; version = "0.2.0"; src = fetchHex { @@ -6925,40 +4072,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/twist-vector/elixir-complex.git"; }; - } + } // packageOverrides) ) {}; complex = complex_0_2_0; - comredis_1_0_0 = callPackage - ( - { buildMix, fetchHex, poison_2_1_0 }: - buildMix { - name = "comredis"; - version = "1.0.0"; - src = fetchHex { - pkg = "comredis"; - version = "1.0.0"; - sha256 = - "181989546464dbe57f2feceb39954eea8008e28612df0c6a7b9b0f7003b251e9"; - }; - beamDeps = [ poison_2_1_0 ]; - - meta = { - description = ''Comredis is your comrade for Redis command - generation in Elixir.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/iurifq/comredis"; - }; - } - ) {}; - - comredis = comredis_1_0_0; - con_cache_0_11_0 = callPackage ( - { buildMix, fetchHex, exactor_2_2_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, exactor_2_2_0 }: + buildMix ({ name = "con_cache"; version = "0.11.0"; src = fetchHex { @@ -6976,15 +4098,15 @@ let 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, fetchHex, exactor_2_2_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, exactor_2_2_0 }: + buildMix ({ name = "con_cache"; version = "0.9.0"; src = fetchHex { @@ -7002,37 +4124,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/sasa1977/con_cache"; }; - } + } // packageOverrides) ) {}; - conferl_0_0_1 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "conferl"; - version = "0.0.1"; - src = fetchHex { - pkg = "conferl"; - version = "0.0.1"; - sha256 = - "402ff3b66ff98ada2b537e2d9d329f4f6f32230c39d7a3be150cf72b7525f801"; - }; - - meta = { - description = ''Auto-Conference Service in Erlang (similar to - Disqus)''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/inaka/conferl"; - }; - } - ) {}; - - conferl = conferl_0_0_1; - config_values_1_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "config_values"; version = "1.0.0"; src = fetchHex { @@ -7047,15 +4145,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "configparser_ex"; version = "0.2.1"; src = fetchHex { @@ -7071,57 +4169,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/easco/configparser_ex"; }; - } + } // packageOverrides) ) {}; configparser_ex = configparser_ex_0_2_1; - conform_0_10_5 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "conform"; - version = "0.10.5"; - src = fetchHex { - pkg = "conform"; - version = "0.10.5"; - sha256 = - "2ded6a4f7405f2288d7888c86b59d3f2871bd9339f3e396d9f9fb148c4ce2304"; - }; - - meta = { - description = ''Easy release configuration for Elixir apps.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/bitwalker/conform"; - }; - } - ) {}; - - conform_0_11_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "conform"; - version = "0.11.0"; - src = fetchHex { - pkg = "conform"; - version = "0.11.0"; - sha256 = - "2547e29fec74952572a0f2456f38e11dc8247a00d4b197eca2e61a8fd767f3eb"; - }; - - meta = { - description = ''Easy release configuration for Elixir apps.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/bitwalker/conform"; - }; - } - ) {}; - conform_0_16_0 = callPackage ( - { buildMix, fetchHex, neotoma_1_7_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, neotoma_1_7_3 }: + buildMix ({ name = "conform"; version = "0.16.0"; src = fetchHex { @@ -7137,13 +4193,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/bitwalker/conform"; }; - } + } // packageOverrides) ) {}; conform_1_0_0_rc8 = callPackage ( - { buildMix, fetchHex, neotoma_1_7_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, neotoma_1_7_3 }: + buildMix ({ name = "conform"; version = "1.0.0-rc8"; src = fetchHex { @@ -7159,13 +4215,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/bitwalker/conform"; }; - } + } // packageOverrides) ) {}; conform_2_0_0 = callPackage ( - { buildMix, fetchHex, neotoma_1_7_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, neotoma_1_7_3 }: + buildMix ({ name = "conform"; version = "2.0.0"; src = fetchHex { @@ -7181,15 +4237,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/bitwalker/conform"; }; - } + } // packageOverrides) ) {}; conform = conform_2_0_0; conform_exrm_1_0_0 = callPackage ( - { buildMix, fetchHex, exrm_1_0_3, conform_2_0_0 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + exrm_1_0_3, + conform_2_0_0 + }: + buildMix ({ name = "conform_exrm"; version = "1.0.0"; src = fetchHex { @@ -7205,15 +4267,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "connection"; version = "1.0.0-rc.1"; src = fetchHex { @@ -7228,13 +4290,13 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/fishcakez/connection"; }; - } + } // packageOverrides) ) {}; connection_1_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "connection"; version = "1.0.2"; src = fetchHex { @@ -7249,15 +4311,21 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/fishcakez/connection"; }; - } + } // packageOverrides) ) {}; connection = connection_1_0_2; conqueuer_0_5_1 = callPackage ( - { buildMix, fetchHex, poolboy_1_5_1, inflex_1_5_0 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + poolboy_1_5_1, + inflex_1_5_0 + }: + buildMix ({ name = "conqueuer"; version = "0.5.1"; src = fetchHex { @@ -7273,37 +4341,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/midas/conqueuer"; }; - } + } // packageOverrides) ) {}; conqueuer = conqueuer_0_5_1; - console_0_0_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "console"; - version = "0.0.1"; - src = fetchHex { - pkg = "console"; - version = "0.0.1"; - sha256 = - "55e0635d7fdde35a04694e646a01b161c142b4d814a97ed8a373fd42af35c955"; - }; - - meta = { - - homepage = "https://github.com/matteosister/console"; - }; - } - ) {}; - - console = console_0_0_1; - console_tree_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "console_tree"; version = "0.0.1"; src = fetchHex { @@ -7320,39 +4366,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/ciaran/console_tree"; }; - } + } // packageOverrides) ) {}; console_tree = console_tree_0_0_1; - consul_1_0_3 = callPackage - ( - { buildMix, fetchHex, httpoison_0_7_5, exjsx_3_2_0 }: - buildMix { - name = "consul"; - version = "1.0.3"; - src = fetchHex { - pkg = "consul"; - version = "1.0.3"; - sha256 = - "80d5836e4cbe686bff535634e719e0892455b03e77bcde149fb221c80fdb1a52"; - }; - beamDeps = [ httpoison_0_7_5 exjsx_3_2_0 ]; - - meta = { - description = ''An Elixir client for Consul`s HTTP API ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/undeadlabs/consul-ex"; - }; - } - ) {}; - - consul = consul_1_0_3; - control_0_0_4 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "control"; version = "0.0.4"; src = fetchHex { @@ -7368,15 +4390,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/slogsdon/elixir-control"; }; - } + } // packageOverrides) ) {}; control = control_0_0_4; convertat_1_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "convertat"; version = "1.1.0"; src = fetchHex { @@ -7392,62 +4414,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/whatyouhide/convertat"; }; - } + } // packageOverrides) ) {}; convertat = convertat_1_1_0; - core_0_14_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "core"; - version = "0.14.1"; - src = fetchHex { - pkg = "core"; - version = "0.14.1"; - sha256 = - "142c14544ce688b4527abeadfb3bf249678caaec1a3f3d11cb4927695f19ff33"; - }; - - meta = { - description = ''Library for selective receive OTP processes''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/fishcakez/core"; - }; - } - ) {}; - - core = core_0_14_1; - - core_data_0_1_0 = callPackage - ( - { buildMix, fetchHex, floki_0_1_1 }: - buildMix { - name = "core_data"; - version = "0.1.0"; - src = fetchHex { - pkg = "core_data"; - version = "0.1.0"; - sha256 = - "09b308a42f0697053c68f253e7f687c0f6b5f96bb1b114a7b1852c5b6804122e"; - }; - beamDeps = [ floki_0_1_1 ]; - - meta = { - description = ''iOS Core Data parser''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/evolet-project/core_data"; - }; - } - ) {}; - - core_data = core_data_0_1_0; - cors_plug_1_1_1 = callPackage ( - { buildMix, fetchHex, plug_1_1_3, cowboy_1_0_4 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ name = "cors_plug"; version = "1.1.1"; src = fetchHex { @@ -7465,15 +4446,21 @@ let 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, fetchHex, plug_1_1_3, cowboy_1_0_4 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ name = "corsica"; version = "0.4.1"; src = fetchHex { @@ -7489,15 +4476,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/whatyouhide/corsica"; }; - } + } // packageOverrides) ) {}; corsica = corsica_0_4_1; couch_factory_0_1_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "couch_factory"; version = "0.1.1"; src = fetchHex { @@ -7513,114 +4500,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/javierg/couch_factory"; }; - } + } // packageOverrides) ) {}; couch_factory = couch_factory_0_1_1; - couchbeam_1_3_0 = callPackage - ( - { buildRebar3, fetchHex, jsx_2_8_0, hackney_1_5_7 }: - buildRebar3 { - name = "couchbeam"; - version = "1.3.0"; - src = fetchHex { - pkg = "couchbeam"; - version = "1.3.0"; - sha256 = - "5d94bfc80532999e4f8e7f5da3abff74fbf3b59d5e02e0a99eb0dc3697c97a50"; - }; - - beamDeps = [ jsx_2_8_0 hackney_1_5_7 ]; - - meta = { - description = ''Erlang CouchDB client''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/benoitc/couchbeam"; - }; - } - ) {}; - - couchbeam = couchbeam_1_3_0; - - couchdb_client_0_2_5 = callPackage - ( - { - buildMix, - fetchHex, - poison_1_5_2, - httpoison_0_7_5, - ex_doc_0_11_4, - earmark_0_2_1 - }: - buildMix { - name = "couchdb_client"; - version = "0.2.5"; - src = fetchHex { - pkg = "couchdb_client"; - version = "0.2.5"; - sha256 = - "243c2fde196762dd6b664d3a91d111ac70336b22d91ca9aafc7c778e61ccb496"; - }; - beamDeps = [ - poison_1_5_2 - httpoison_0_7_5 - ex_doc_0_11_4 - earmark_0_2_1 - ]; - - meta = { - description = ''A partial yet functional CouchDB client, with - attachment support.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/gutschilla/elixir-couchdb-client"; - }; - } - ) {}; - - couchdb_client = couchdb_client_0_2_5; - - couchdb_connector_0_2_0 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "couchdb_connector"; - version = "0.2.0"; - src = fetchHex { - pkg = "couchdb_connector"; - version = "0.2.0"; - sha256 = - "05ac95c3f08038c3f17c03be5f27922b919513dfd4582f2da150f70182dac01b"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - longDescription = ''A connector for CouchDB, the Erlang-based, - JSON document database. The connector does not - implement the protocols defined in Ecto. - Reasons: CouchDB does not support transactions - as known in the world of ACID compliant, - relational databases. The concept of migrations - also does not apply to CouchDB. And since - CouchDB does not implement an SQL dialect, the - decision was taken to not follow the standards - established by Ecto. The connector offers - `create`, `update` and `read` operations through - its Writer and Reader modules. Basic support for - view operations is provided by the View - module.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/locolupo/couchdb_connector"; - }; - } - ) {}; - - couchdb_connector = couchdb_connector_0_2_0; - couchex_0_6_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "couchex"; version = "0.6.0"; src = fetchHex { @@ -7636,15 +4524,15 @@ let license = stdenv.lib.licenses.unlicense; homepage = "https://github.com/ringling/couchex"; }; - } + } // packageOverrides) ) {}; couchex = couchex_0_6_0; count_buffer_0_1_5 = callPackage ( - { buildMix, fetchHex, pool_ring_0_1_5 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, pool_ring_0_1_5 }: + buildMix ({ name = "count_buffer"; version = "0.1.5"; src = fetchHex { @@ -7661,41 +4549,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/camshaft/count_buffer"; }; - } + } // packageOverrides) ) {}; count_buffer = count_buffer_0_1_5; - countries_1_1_2 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "countries"; - version = "1.1.2"; - src = fetchHex { - pkg = "countries"; - version = "1.1.2"; - sha256 = - "8420314185aed4152340dcab3f8643d9c312610e2c065ee8709d8a097285149c"; - }; - - meta = { - longDescription = ''Countries is a collection of all sorts of - useful information for every country in the [ISO - 3166](https://de.wikipedia.org/wiki/ISO_3166) - standard. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/SebastianSzturo/countries"; - }; - } - ) {}; - - countries = countries_1_1_2; - courier_0_0_3 = callPackage ( - { buildMix, fetchHex, mail_0_0_4, gen_smtp_0_9_0 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + mail_0_0_4, + gen_smtp_0_9_0 + }: + buildMix ({ name = "courier"; version = "0.0.3"; src = fetchHex { @@ -7711,80 +4579,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/DockYard/courier"; }; - } + } // packageOverrides) ) {}; courier = courier_0_0_3; - courier_web_0_0_8 = callPackage - ( - { - buildMix, - fetchHex, - uuid_1_1_3, - poison_2_1_0, - plug_1_1_3, - ja_serializer_0_8_1, - courier_0_0_3 - }: - buildMix { - name = "courier_web"; - version = "0.0.8"; - src = fetchHex { - pkg = "courier_web"; - version = "0.0.8"; - sha256 = - "c4161f218d487901bc1e63ce1840c73de34d84d8c53eda12f09cea4a8fa2758b"; - }; - beamDeps = [ - uuid_1_1_3 - poison_2_1_0 - plug_1_1_3 - ja_serializer_0_8_1 - courier_0_0_3 - ]; - - meta = { - description = ''Web client adapter for Courier''; - - }; - } - ) {}; - - courier_web = courier_web_0_0_8; - - coverex_1_4_8 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "coverex"; - version = "1.4.8"; - src = fetchHex { - pkg = "coverex"; - version = "1.4.8"; - sha256 = - "47f03bd9d00b22893fda81273c310d30d96e849026f5c1d0ad664089c875bac6"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - longDescription = ''Coverex is an Elixir Coverage tool used by - mix. It provides tables with overviews of module - and function coverage data, includings links to - annotated source code files and supports - coveralls.io.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/alfert/coverex"; - }; - } - ) {}; - - coverex = coverex_1_4_8; - cowboy_1_0_4 = callPackage ( - { buildErlangMk, fetchHex, cowlib_1_0_2, ranch_1_2_1 }: - buildErlangMk { + { + buildErlangMk, + packageOverrides ? {}, + fetchHex, + cowlib_1_0_2, + ranch_1_2_1 + }: + buildErlangMk ({ name = "cowboy"; version = "1.0.4"; src = fetchHex { @@ -7801,58 +4610,15 @@ let license = stdenv.lib.licenses.isc; homepage = "https://github.com/ninenines/cowboy"; }; - } + } // packageOverrides) ) {}; cowboy = cowboy_1_0_4; - cowboy_oauth_0_2_14 = callPackage - ( - { - buildRebar3, - fetchHex, - oauth2_erlang_0_6_1, - libsnarl_0_3_40, - lager_2_1_1, - jsxd_0_1_10, - jsx_1_4_5, - erlydtl2_0_11_1, - cowboy_1_0_4 - }: - buildRebar3 { - name = "cowboy_oauth"; - version = "0.2.14"; - src = fetchHex { - pkg = "cowboy_oauth"; - version = "0.2.14"; - sha256 = - "fc6b3da2a53d8527a08f6427745c85eb3b2da1e90de1a3fe290d4193ac4e5b09"; - }; - - beamDeps = [ - oauth2_erlang_0_6_1 - libsnarl_0_3_40 - lager_2_1_1 - jsxd_0_1_10 - jsx_1_4_5 - erlydtl2_0_11_1 - cowboy_1_0_4 - ]; - - meta = { - description = ''OAuth2 endpoints for cowboy and snarl.''; - license = stdenv.lib.licenses.cddl; - homepage = "https://github.com/project-fifo/cowboy_oauth"; - }; - } - ) {}; - - cowboy_oauth = cowboy_oauth_0_2_14; - cowgirl_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "cowgirl"; version = "0.0.1"; src = fetchHex { @@ -7868,15 +4634,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/larrylv/cowgirl"; }; - } + } // packageOverrides) ) {}; cowgirl = cowgirl_0_0_1; cowlib_1_0_0 = callPackage ( - { buildErlangMk, fetchHex }: - buildErlangMk { + { buildErlangMk, packageOverrides ? {}, fetchHex }: + buildErlangMk ({ name = "cowlib"; version = "1.0.0"; src = fetchHex { @@ -7892,13 +4658,13 @@ let license = stdenv.lib.licenses.isc; homepage = "https://github.com/ninenines/cowlib"; }; - } + } // packageOverrides) ) {}; cowlib_1_0_2 = callPackage ( - { buildErlangMk, fetchHex }: - buildErlangMk { + { buildErlangMk, packageOverrides ? {}, fetchHex }: + buildErlangMk ({ name = "cowlib"; version = "1.0.2"; src = fetchHex { @@ -7914,13 +4680,13 @@ let license = stdenv.lib.licenses.isc; homepage = "https://github.com/ninenines/cowlib"; }; - } + } // packageOverrides) ) {}; cowlib_1_3_0 = callPackage ( - { buildErlangMk, fetchHex }: - buildErlangMk { + { buildErlangMk, packageOverrides ? {}, fetchHex }: + buildErlangMk ({ name = "cowlib"; version = "1.3.0"; src = fetchHex { @@ -7936,15 +4702,15 @@ let license = stdenv.lib.licenses.isc; homepage = "https://github.com/ninenines/cowlib"; }; - } + } // packageOverrides) ) {}; cowlib = cowlib_1_3_0; cowsay_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "cowsay"; version = "0.0.1"; src = fetchHex { @@ -7959,46 +4725,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/bbrock25/cowsay"; }; - } + } // packageOverrides) ) {}; cowsay = cowsay_0_0_1; - cpg_1_5_1 = callPackage - ( - { - buildRebar3, - fetchHex, - trie_1_5_1, - reltool_util_1_5_1, - quickrand_1_5_1 - }: - buildRebar3 { - name = "cpg"; - version = "1.5.1"; - src = fetchHex { - pkg = "cpg"; - version = "1.5.1"; - sha256 = - "3bd7b7c48a0f959985d7038d6c533ee5540d12b8adfa6693409f4f6f492f4b45"; - }; - - beamDeps = [ trie_1_5_1 reltool_util_1_5_1 quickrand_1_5_1 ]; - - meta = { - description = ''CloudI Process Groups''; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/okeuday/cpg"; - }; - } - ) {}; - - cpg = cpg_1_5_1; - cqex_0_1_4 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "cqex"; version = "0.1.4"; src = fetchHex { @@ -8013,63 +4748,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/matehat/cqex"; }; - } + } // packageOverrides) ) {}; cqex = cqex_0_1_4; - craterl_0_2_3 = callPackage - ( - { buildRebar3, fetchHex, jsx_2_7_1, hackney_1_3_1 }: - buildRebar3 { - name = "craterl"; - version = "0.2.3"; - src = fetchHex { - pkg = "craterl"; - version = "0.2.3"; - sha256 = - "bbbfa254fa5834d144f9061fff03035eca9a50b5e7581ce342c495b91af02929"; - }; - - beamDeps = [ jsx_2_7_1 hackney_1_3_1 ]; - - meta = { - description = ''erlang client for crate''; - - }; - } - ) {}; - - craterl = craterl_0_2_3; - - crc_0_4_0 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "crc"; - version = "0.4.0"; - src = fetchHex { - pkg = "crc"; - version = "0.4.0"; - sha256 = - "4f0d872d46faea966aeb687158b7e02bfc61c49c4f2fb33f5e52e3d167f4faeb"; - }; - - 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_4_0; - credit_card_1_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "credit_card"; version = "1.0.0"; src = fetchHex { @@ -8084,15 +4771,15 @@ let 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, fetchHex, bunt_0_1_5 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, bunt_0_1_5 }: + buildMix ({ name = "credo"; version = "0.3.10"; src = fetchHex { @@ -8110,15 +4797,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/rrrene/credo"; }; - } + } // packageOverrides) ) {}; credo = credo_0_3_10; credo_0_3_2 = callPackage ( - { buildMix, fetchHex, bunt_0_1_5 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, bunt_0_1_5 }: + buildMix ({ name = "credo"; version = "0.3.2"; src = fetchHex { @@ -8136,13 +4823,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/rrrene/credo"; }; - } + } // packageOverrides) ) {}; croma_0_4_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "croma"; version = "0.4.0"; src = fetchHex { @@ -8156,39 +4843,15 @@ let description = ''Elixir macro utilities''; license = stdenv.lib.licenses.mit; }; - } + } // packageOverrides) ) {}; croma = croma_0_4_0; - crudex_0_0_2 = callPackage - ( - { buildMix, fetchHex, plug_auth_0_3_0 }: - buildMix { - name = "crudex"; - version = "0.0.2"; - src = fetchHex { - pkg = "crudex"; - version = "0.0.2"; - sha256 = - "2ccf07c728dbb328b9f869a87465c8ba647931ec68f563c4ddea99ec76fa4364"; - }; - beamDeps = [ plug_auth_0_3_0 ]; - - meta = { - description = ''A glue keeping Phoenix and Ecto together''; - license = stdenv.lib.licenses.isc; - homepage = "https://github.com/briksoftware/crudex"; - }; - } - ) {}; - - crudex = crudex_0_0_2; - crutches_1_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "crutches"; version = "1.0.0"; src = fetchHex { @@ -8204,15 +4867,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/mykewould/crutches"; }; - } + } // packageOverrides) ) {}; crutches = crutches_1_0_0; cryptex_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "cryptex"; version = "0.0.1"; src = fetchHex { @@ -8228,40 +4891,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/scrogson/cryptex"; }; - } + } // packageOverrides) ) {}; cryptex = cryptex_0_0_1; - crypto_ext_0_1_3 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "crypto_ext"; - version = "0.1.3"; - src = fetchHex { - pkg = "crypto_ext"; - version = "0.1.3"; - sha256 = - "8caea80b44aa7a8b02399e522b7ff756f07a8ef810dc39d54b4abed68bdb5cf3"; - }; - compilePorts = true; - - meta = { - description = ''Crypto lib extension to support AES 128 ECB - cipher''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/adrienmo/crypto_ext"; - }; - } - ) {}; - - crypto_ext = crypto_ext_0_1_3; - crypto_rsassa_pss_1_0_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "crypto_rsassa_pss"; version = "1.0.0"; src = fetchHex { @@ -8278,15 +4916,15 @@ let 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, fetchHex, exactor_2_2_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, exactor_2_2_0 }: + buildMix ({ name = "cspex"; version = "1.0.0"; src = fetchHex { @@ -8303,15 +4941,17 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/vidalraphael/cspex"; }; - } + } // packageOverrides) ) {}; cspex = cspex_1_0_0; csv_1_3_3 = callPackage ( - { buildMix, fetchHex, parallel_stream_1_0_3 }: - buildMix { + { + buildMix, packageOverrides ? {}, fetchHex, parallel_stream_1_0_3 + }: + buildMix ({ name = "csv"; version = "1.3.3"; src = fetchHex { @@ -8327,15 +4967,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/beatrichartz/csv"; }; - } + } // packageOverrides) ) {}; csv = csv_1_3_3; csvlixir_2_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "csvlixir"; version = "2.0.2"; src = fetchHex { @@ -8357,15 +4997,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/jimm/csvlixir"; }; - } + } // packageOverrides) ) {}; csvlixir = csvlixir_2_0_2; cth_readable_1_2_2 = callPackage ( - { buildRebar3, fetchHex, cf_0_2_1 }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex, cf_0_2_1 }: + buildRebar3 ({ name = "cth_readable"; version = "1.2.2"; src = fetchHex { @@ -8382,15 +5022,15 @@ let 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, fetchHex, murmur_1_0_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, murmur_1_0_0 }: + buildMix ({ name = "cuckoo"; version = "1.0.0"; src = fetchHex { @@ -8407,15 +5047,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/gmcabrita/cuckoo"; }; - } + } // packageOverrides) ) {}; cuckoo = cuckoo_1_0_0; cucumberl_0_0_6 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "cucumberl"; version = "0.0.6"; src = fetchHex { @@ -8425,20 +5065,23 @@ let "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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "cuid"; version = "0.1.0"; src = fetchHex { @@ -8453,41 +5096,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/duailibe/cuid"; }; - } + } // packageOverrides) ) {}; cuid = cuid_0_1_0; - cure_0_4_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "cure"; - version = "0.4.1"; - src = fetchHex { - pkg = "cure"; - version = "0.4.1"; - sha256 = - "92ac6e2dfed6a955cdfedc6860fb84ec968400902b27dfd068e49ff82277932b"; - }; - - meta = { - longDescription = ''Interfaces Elixir with C/C++ code in a - user-friendly way! Based on Erlang-ports. - Provides a few Mix-tasks to kickstart the - development process.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/Primordus/Cure.git"; - }; - } - ) {}; - - cure = cure_0_4_1; - currency_formatter_0_0_1 = callPackage ( - { buildMix, fetchHex, poison_2_1_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }: + buildMix ({ name = "currency_formatter"; version = "0.0.1"; src = fetchHex { @@ -8504,40 +5121,15 @@ let license = stdenv.lib.licenses.wtfpl; homepage = "https://github.com/smeevil/currency_formatter"; }; - } + } // packageOverrides) ) {}; currency_formatter = currency_formatter_0_0_1; - current_streak_ex_0_1_1 = callPackage - ( - { buildMix, fetchHex, httpoison_0_8_2, floki_0_8_0 }: - buildMix { - name = "current_streak_ex"; - version = "0.1.1"; - src = fetchHex { - pkg = "current_streak_ex"; - version = "0.1.1"; - sha256 = - "1c62bcd7bdd69818dc05f0602e03a5aca6b21554206cb6634bedb807ee27d5a7"; - }; - beamDeps = [ httpoison_0_8_2 floki_0_8_0 ]; - - meta = { - description = ''Get github current streak which support only - public repositories.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/KazuCocoa/current_streak_ex"; - }; - } - ) {}; - - current_streak_ex = current_streak_ex_0_1_1; - current_user_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "current_user"; version = "0.0.1"; src = fetchHex { @@ -8552,39 +5144,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/halogenandtoast/current_user"; }; - } + } // packageOverrides) ) {}; current_user = current_user_0_0_1; - currently_0_0_3 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "currently"; - version = "0.0.3"; - src = fetchHex { - pkg = "currently"; - version = "0.0.3"; - sha256 = - "50d7f8e0c6eb1dd4f434cd50c7447eb8f9e3d4c413161948df7363c41bf90ec1"; - }; - - meta = { - description = ''Currently is a tool to display cards currently - assigns on Trello ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/chatgris/currently"; - }; - } - ) {}; - - currently = currently_0_0_3; - curry_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "curry"; version = "0.0.1"; src = fetchHex { @@ -8600,15 +5168,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/niahoo/elixir-curry"; }; - } + } // packageOverrides) ) {}; curry = curry_0_0_1; curtail_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "curtail"; version = "0.1.0"; src = fetchHex { @@ -8623,15 +5191,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/seankay/curtail"; }; - } + } // packageOverrides) ) {}; curtail = curtail_0_1_0; curtains_0_0_1 = callPackage ( - { buildMix, fetchHex, plug_1_0_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, plug_1_0_3 }: + buildMix ({ name = "curtains"; version = "0.0.1"; src = fetchHex { @@ -8643,24 +5211,24 @@ let beamDeps = [ plug_1_0_3 ]; meta = { - longDescription = ''Curtains is a Elixir package that "takes - over" your Elixir website by returning content + 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.''; + 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "curve25519"; version = "0.1.0"; src = fetchHex { @@ -8675,15 +5243,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/mwmiller/curve25519_ex"; }; - } + } // packageOverrides) ) {}; curve25519 = curve25519_0_1_0; cushion_0_0_3 = callPackage ( - { buildMix, fetchHex, httpotion_2_2_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, httpotion_2_2_2 }: + buildMix ({ name = "cushion"; version = "0.0.3"; src = fetchHex { @@ -8702,15 +5270,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/ryanbillingsley/cushion"; }; - } + } // packageOverrides) ) {}; cushion = cushion_0_0_3; custom_base_0_2_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "custom_base"; version = "0.2.0"; src = fetchHex { @@ -8726,15 +5294,21 @@ let 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, fetchHex, lager_3_0_2, getopt_0_8_2 }: - buildRebar3 { + { + buildRebar3, + packageOverrides ? {}, + fetchHex, + lager_3_0_2, + getopt_0_8_2 + }: + buildRebar3 ({ name = "cuttlefish"; version = "2.0.7"; src = fetchHex { @@ -8751,15 +5325,15 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/tsloughter/cuttlefish"; }; - } + } // packageOverrides) ) {}; cuttlefish = cuttlefish_2_0_7; cypher_query_0_0_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "cypher_query"; version = "0.0.1"; src = fetchHex { @@ -8775,15 +5349,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "data_leaf_walker"; version = "0.1.0"; src = fetchHex { @@ -8800,15 +5374,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "database_url"; version = "0.1.0"; src = fetchHex { @@ -8824,104 +5398,22 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/s-m-i-t-a/database_url"; }; - } + } // packageOverrides) ) {}; database_url = database_url_0_1_0; - datomex_0_0_5 = callPackage - ( - { - buildMix, - fetchHex, - poison_1_5_2, - httpoison_0_8_2, - ex_doc_0_7_3, - erldn_1_0_5 - }: - buildMix { - name = "datomex"; - version = "0.0.5"; - src = fetchHex { - pkg = "datomex"; - version = "0.0.5"; - sha256 = - "bb2a5171a5d7783e40776db7fe7a6bff73ff69a4da4205c83b39c26ff73488c0"; - }; - beamDeps = [ - poison_1_5_2 httpoison_0_8_2 ex_doc_0_7_3 erldn_1_0_5 - ]; - - meta = { - description = ''Low level Elixir driver for the Datomic Database. - ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/edubkendo/datomex"; - }; - } - ) {}; - - datomex = datomex_0_0_5; - - datomic_gen_server_2_0_1 = callPackage - ( - { buildMix, fetchHex, exdn_2_1_2 }: - buildMix { - name = "datomic_gen_server"; - version = "2.0.1"; - src = fetchHex { - pkg = "datomic_gen_server"; - version = "2.0.1"; - sha256 = - "601422e876b895d1841c02afe4b89ec32d4859a4c9a81c2ecbe5fa6bf6d651ba"; - }; - beamDeps = [ exdn_2_1_2 ]; - - meta = { - longDescription = ''An Elixir GenServer that communicates with a - Clojure Datomic peer running in the JVM, using - clojure-erlastic.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/psfblair/datomic_gen_server"; - }; - } - ) {}; - - datomic_gen_server = datomic_gen_server_2_0_1; - - db_0_9_0 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "db"; - version = "0.9.0"; - src = fetchHex { - pkg = "db"; - version = "0.9.0"; - sha256 = - "23d0307bc227782b1c0c86bb5b66130312cf3eb4363f3f39d5b1fc84140b3a91"; - }; - - meta = { - description = ''Banking Database''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/spawnproc/db"; - }; - } - ) {}; - - db = db_0_9_0; - db_connection_0_2_4 = callPackage ( { buildMix, + packageOverrides ? {}, fetchHex, sbroker_0_7_0, poolboy_1_5_1, connection_1_0_2 }: - buildMix { + buildMix ({ name = "db_connection"; version = "0.2.4"; src = fetchHex { @@ -8938,15 +5430,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "dbg"; version = "1.0.1"; src = fetchHex { @@ -8961,132 +5453,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/fishcakez/dbg"; }; - } + } // packageOverrides) ) {}; dbg = dbg_1_0_1; - dbschema_0_2_0 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "dbschema"; - version = "0.2.0"; - src = fetchHex { - pkg = "dbschema"; - version = "0.2.0"; - sha256 = - "92eed9e62bf5998d33e7826e02f35bafa52bc7f5915c7ebaf4a8c687529688e2"; - }; - - meta = { - description = ''Database postgresql migrations util''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/egobrain/dbschema"; - }; - } - ) {}; - - dbschema = dbschema_0_2_0; - - dbus_0_5_0 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "dbus"; - version = "0.5.0"; - src = fetchHex { - pkg = "dbus"; - version = "0.5.0"; - sha256 = - "8607c4ae1c9e2f377cfd4c34fd8207ad842347dc86db1360605d0a85266ae2e3"; - }; - - meta = { - description = ''A native erlang implementation of D-Bus''; - license = stdenv.lib.licenses.apsl20; - homepage = "https://github.com/lizenn/erlang-dbus"; - }; - } - ) {}; - - dbus = dbus_0_5_0; - - ddb_client_0_1_17 = callPackage - ( - { buildRebar3, fetchHex, mmath_0_1_15, dproto_0_1_12 }: - buildRebar3 { - name = "ddb_client"; - version = "0.1.17"; - src = fetchHex { - pkg = "ddb_client"; - version = "0.1.17"; - sha256 = - "8a65ef0f4e1edb2c575f8c8b38b4fed51ea94fd6c6ec39cc464a66dab45e0892"; - }; - - beamDeps = [ mmath_0_1_15 dproto_0_1_12 ]; - - meta = { - description = ''DalmatinerDB client''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/dalmatinerdb/ddb_client"; - }; - } - ) {}; - - ddb_client = ddb_client_0_1_17; - - dealer_0_8_0 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "dealer"; - version = "0.8.0"; - src = fetchHex { - pkg = "dealer"; - version = "0.8.0"; - sha256 = - "c8c72d38e1cff6a181a6b6f627fb6fd5998279827519e598eb28bcef2be721ee"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''An API Client for Stockfighter.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/larrylv/dealer"; - }; - } - ) {}; - - dealer = dealer_0_8_0; - - decimal_0_2_5 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "decimal"; - version = "0.2.5"; - src = fetchHex { - pkg = "decimal"; - version = "0.2.5"; - sha256 = - "2e2d871c68fea7cc86eb20826cdb6fccec1b6b242bae46d958806e598dc3c947"; - }; - - meta = { - description = ''Arbitrary precision decimal arithmetic for - Elixir.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/ericmj/decimal"; - }; - } - ) {}; - decimal_1_1_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "decimal"; version = "1.1.1"; src = fetchHex { @@ -9102,15 +5477,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/ericmj/decimal"; }; - } + } // packageOverrides) ) {}; decimal = decimal_1_1_1; decks_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "decks"; version = "0.0.1"; src = fetchHex { @@ -9125,15 +5500,15 @@ let card games.''; }; - } + } // packageOverrides) ) {}; decks = decks_0_0_1; decoction_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "decoction"; version = "0.0.1"; src = fetchHex { @@ -9149,15 +5524,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/aarvay/decoction"; }; - } + } // packageOverrides) ) {}; decoction = decoction_0_0_1; defmemo_0_1_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "defmemo"; version = "0.1.1"; src = fetchHex { @@ -9173,15 +5548,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/os6sense/DefMemo"; }; - } + } // packageOverrides) ) {}; defmemo = defmemo_0_1_1; delayed_otp_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "delayed_otp"; version = "0.0.2"; src = fetchHex { @@ -9198,15 +5573,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "delegate_behaviour"; version = "0.1.3"; src = fetchHex { @@ -9221,15 +5596,15 @@ let concrete implementations of behaviours''; license = stdenv.lib.licenses.mit; }; - } + } // packageOverrides) ) {}; delegate_behaviour = delegate_behaviour_0_1_3; demacro_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "demacro"; version = "0.0.1"; src = fetchHex { @@ -9239,64 +5614,15 @@ let "e2a83d48f6b3e03764baf2e149dd5420e632d0d4daa77c5226697a3755a89d16"; }; meta = { }; - } + } // packageOverrides) ) {}; demacro = demacro_0_0_1; - denrei_0_2_3 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "denrei"; - version = "0.2.3"; - src = fetchHex { - pkg = "denrei"; - version = "0.2.3"; - sha256 = - "bc0e8cf7e085dda6027df83ef5d63c41b93988bcd7f3db7c68e4dad3cd599744"; - }; - - meta = { - description = ''Denrei - a lightweight Erlang messaging - system.''; - license = stdenv.lib.licenses.mit; - }; - } - ) {}; - - denrei = denrei_0_2_3; - - descriptive_statistics_0_0_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "descriptive_statistics"; - version = "0.0.1"; - src = fetchHex { - pkg = "descriptive_statistics"; - version = "0.0.1"; - sha256 = - "52004394a60aa8b7df57dda43591de6187a34a31ef64b0a4eecd140a647e2050"; - }; - - meta = { - longDescription = ''Descriptive Statistics is a library that - allows you to compute simple descriptive - statistics in Elixir. Inspired by - https://github.com/thirtysixthspan/descriptive_statistics.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/pusewicz/descriptive_statistics"; - }; - } - ) {}; - - descriptive_statistics = descriptive_statistics_0_0_1; - detergent_0_3_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "detergent"; version = "0.3.0"; src = fetchHex { @@ -9311,15 +5637,15 @@ let 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, fetchHex, detergent_0_3_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, detergent_0_3_0 }: + buildMix ({ name = "detergentex"; version = "0.0.7"; src = fetchHex { @@ -9336,64 +5662,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/r-icarus/detergentex"; }; - } + } // packageOverrides) ) {}; detergentex = detergentex_0_0_7; - deviant_elixir_0_0_4 = callPackage - ( - { buildMix, fetchHex, httpoison_0_8_2, feeder_ex_0_0_2 }: - buildMix { - name = "deviant_elixir"; - version = "0.0.4"; - src = fetchHex { - pkg = "deviant_elixir"; - version = "0.0.4"; - sha256 = - "42473969889a47edab66384988e70ab6b4da158043e9231deab822743e3d9943"; - }; - beamDeps = [ httpoison_0_8_2 feeder_ex_0_0_2 ]; - - meta = { - longDescription = ''WIP. Unstable alpha. Elixir API wrapper for - Deviant Art. At this moment provides only RSS - feeds intergac.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/vdaniuk/deviant-elixir"; - }; - } - ) {}; - - deviant_elixir = deviant_elixir_0_0_4; - - dexts_0_2_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "dexts"; - version = "0.2.1"; - src = fetchHex { - pkg = "dexts"; - version = "0.2.1"; - sha256 = - "9e5cfb3c4546b2f40713b7176556dfd5a839d77b6953ddaf9f06054a5c827ca4"; - }; - - meta = { - description = ''dets wrapper for Elixir''; - license = stdenv.lib.licenses.wtfpl; - homepage = "https://github.com/meh/dexts"; - }; - } - ) {}; - - dexts = dexts_0_2_1; - dflow_0_1_5 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "dflow"; version = "0.1.5"; src = fetchHex { @@ -9408,39 +5685,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/dalmatinerdb/dflow"; }; - } + } // packageOverrides) ) {}; dflow = dflow_0_1_5; - di_0_1_0 = callPackage - ( - { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: - buildMix { - name = "di"; - version = "0.1.0"; - src = fetchHex { - pkg = "di"; - version = "0.1.0"; - sha256 = - "d7a89568c986c98399667faeb618d5cc42a89965717e758323aa5370d1547260"; - }; - beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; - - meta = { - description = ''Elixir wrapper for DI.FM''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/JoshuaThompson/di"; - }; - } - ) {}; - - di = di_0_1_0; - dialyxir_0_3_3 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "dialyxir"; version = "0.3.3"; src = fetchHex { @@ -9456,36 +5709,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/jeremyjh/dialyxir"; }; - } + } // packageOverrides) ) {}; dialyxir = dialyxir_0_3_3; - dialyze_0_1_4 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "dialyze"; - version = "0.1.4"; - src = fetchHex { - pkg = "dialyze"; - version = "0.1.4"; - sha256 = - "af9d6c37d8c067aaee959d4e1701e045e011906217c9f772218a3abaa92e4505"; - }; - - meta = { - description = ''Dialyzer Mix task''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/fishcakez/dialyze"; - }; - } - ) {}; - dialyze_0_2_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "dialyze"; version = "0.2.1"; src = fetchHex { @@ -9500,39 +5732,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/fishcakez/dialyze"; }; - } + } // packageOverrides) ) {}; dialyze = dialyze_0_2_1; - diane_0_0_1 = callPackage - ( - { buildMix, fetchHex, sweet_xml_0_4_0 }: - buildMix { - name = "diane"; - version = "0.0.1"; - src = fetchHex { - pkg = "diane"; - version = "0.0.1"; - sha256 = - "cb4a9984aab545f376d32f13b4ab612ba32a603781ddd743658d9c3991a4a89d"; - }; - beamDeps = [ sweet_xml_0_4_0 ]; - - meta = { - description = ''RSS/Atom parser for Elixir.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/ptrckbrwn/diane"; - }; - } - ) {}; - - diane = diane_0_0_1; - dice_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "dice"; version = "0.0.1"; src = fetchHex { @@ -9547,15 +5755,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/stocks29/dice"; }; - } + } // packageOverrides) ) {}; dice = dice_0_0_1; dice_roller_1_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "dice_roller"; version = "1.0.1"; src = fetchHex { @@ -9569,64 +5777,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/KevinGreene/DiceRoller"; }; - } + } // packageOverrides) ) {}; dice_roller = dice_roller_1_0_1; - dicer_0_8_0 = callPackage - ( - { buildMix, fetchHex, sfmt_0_12_7 }: - buildMix { - name = "dicer"; - version = "0.8.0"; - src = fetchHex { - pkg = "dicer"; - version = "0.8.0"; - sha256 = - "834e5d3f4cd9afac655e0f27869ecfdf6fa4ea061ad9ededdc6f295f71325960"; - }; - beamDeps = [ sfmt_0_12_7 ]; - - meta = { - description = ''Elixir library to calculate dice rolls. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/olhado/dicer"; - }; - } - ) {}; - - dicer = dicer_0_8_0; - - dicks_0_1_0 = callPackage - ( - { buildMix, fetchHex, httpoison_0_7_5, exjsx_3_1_0 }: - buildMix { - name = "dicks"; - version = "0.1.0"; - src = fetchHex { - pkg = "dicks"; - version = "0.1.0"; - sha256 = - "66d1a93ad1753361f2fc82033805a5f4c03ff295c78123e497f1ec56b9815be3"; - }; - beamDeps = [ httpoison_0_7_5 exjsx_3_1_0 ]; - - meta = { - longDescription = ''An Elixir client for the Dick As A Service - platform http://dicks-api.herokuapp.com ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/Annwenn/DicksEx"; - }; - } - ) {}; - - dicks = dicks_0_1_0; - dicon_0_3_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "dicon"; version = "0.3.0"; src = fetchHex { @@ -9641,15 +5800,21 @@ let license = stdenv.lib.licenses.isc; homepage = "https://github.com/lexmag/dicon"; }; - } + } // packageOverrides) ) {}; dicon = dicon_0_3_0; difficult_0_0_2 = callPackage ( - { buildMix, fetchHex, ex_doc_0_11_4, earmark_0_2_1 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + ex_doc_0_11_4, + earmark_0_2_1 + }: + buildMix ({ name = "difficult"; version = "0.0.2"; src = fetchHex { @@ -9665,75 +5830,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/massn/Difficult"; }; - } + } // packageOverrides) ) {}; difficult = difficult_0_0_2; - digoc_0_3_3 = callPackage - ( - { buildMix, fetchHex, poison_1_3_1, httpoison_0_8_2 }: - buildMix { - name = "digoc"; - version = "0.3.3"; - src = fetchHex { - pkg = "digoc"; - version = "0.3.3"; - sha256 = - "23d5c2f1b977b1f3e12567879a20bc211898efdfcac9a0b6802324bc42ea0605"; - }; - beamDeps = [ poison_1_3_1 httpoison_0_8_2 ]; - - meta = { - description = ''An Elixir client for the Digital Ocean API v2.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/kevinmontuori/digoc"; - }; - } - ) {}; - - digoc = digoc_0_3_3; - - diplomat_0_0_1 = callPackage - ( - { - buildMix, - fetchHex, - poison_1_5_2, - httpoison_0_8_2, - goth_0_0_3, - exprotobuf_1_0_0 - }: - buildMix { - name = "diplomat"; - version = "0.0.1"; - src = fetchHex { - pkg = "diplomat"; - version = "0.0.1"; - sha256 = - "49d2bff25e177701f988f1abfb164233617c9af2da1701cb06f651e2b789407b"; - }; - beamDeps = [ - poison_1_5_2 - httpoison_0_8_2 - goth_0_0_3 - exprotobuf_1_0_0 - ]; - - meta = { - description = ''A library for interacting with Google`s Cloud - Datastore''; - - }; - } - ) {}; - - diplomat = diplomat_0_0_1; - dir_walker_0_0_6 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "dir_walker"; version = "0.0.6"; src = fetchHex { @@ -9750,7 +5855,7 @@ let 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 + <, 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 @@ -9758,63 +5863,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/pragdave/dir_walker"; }; - } + } // packageOverrides) ) {}; dir_walker = dir_walker_0_0_6; - discount_0_7_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "discount"; - version = "0.7.0"; - src = fetchHex { - pkg = "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; - - discovery_0_5_7 = callPackage - ( - { buildMix, fetchHex, hash_ring_ex_1_1_2, consul_1_0_3 }: - buildMix { - name = "discovery"; - version = "0.5.7"; - src = fetchHex { - pkg = "discovery"; - version = "0.5.7"; - sha256 = - "e252044547397e53c52809d5b76070f302e243992c4cbfa233fc4fa44927ccc8"; - }; - beamDeps = [ hash_ring_ex_1_1_2 consul_1_0_3 ]; - - meta = { - description = ''An OTP application for auto-discovering services - with Consul ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/undeadlabs/discovery"; - }; - } - ) {}; - - discovery = discovery_0_5_7; - dismake_1_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "dismake"; version = "1.0.0"; src = fetchHex { @@ -9825,20 +5882,20 @@ let }; meta = { - description = ''Dismake is a "compiler" (as in Mix.compilers) + 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "distance"; version = "0.1.2"; src = fetchHex { @@ -9854,13 +5911,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/pkinney/distance"; }; - } + } // packageOverrides) ) {}; distance_0_2_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "distance"; version = "0.2.0"; src = fetchHex { @@ -9876,39 +5933,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/pkinney/distance"; }; - } + } // packageOverrides) ) {}; distance = distance_0_2_0; - distance_api_matrix_2_0_0 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "distance_api_matrix"; - version = "2.0.0"; - src = fetchHex { - pkg = "distance_api_matrix"; - version = "2.0.0"; - sha256 = - "e6996e829d7cf4e3e6b7790c53207f86aa467c0ba28af7a20df81e3b16d40fa0"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''Google Distance Matrix API Library for Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/C404/distance-api-matrix"; - }; - } - ) {}; - - distance_api_matrix = distance_api_matrix_2_0_0; - distancex_0_1_0 = callPackage ( - { buildMix, fetchHex, poison_1_5_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }: + buildMix ({ name = "distancex"; version = "0.1.0"; src = fetchHex { @@ -9926,15 +5959,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/vysakh0/distancex"; }; - } + } // packageOverrides) ) {}; distancex = distancex_0_1_0; diver_0_1_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "diver"; version = "0.1.1"; src = fetchHex { @@ -9951,15 +5984,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/novabyte/diver"; }; - } + } // packageOverrides) ) {}; diver = diver_0_1_1; dlist_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "dlist"; version = "0.0.1"; src = fetchHex { @@ -9974,70 +6007,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/stocks29/dlist.git"; }; - } + } // packageOverrides) ) {}; dlist = dlist_0_0_1; - dns_0_0_3 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "dns"; - version = "0.0.3"; - src = fetchHex { - pkg = "dns"; - version = "0.0.3"; - sha256 = - "60f4ff5a01cf95bbeb7b407712bcf833092280f6cc0c34ab09d2c0415fcb842e"; - }; - - meta = { - longDescription = ''DNS library for Elixir. Currently, the - package provides: - Elixir structs to interface - with `inet_dns` module. - DNS.Server behavior - - DNS.Client Note: the `inet_dns` module is - considered internal to Erlang and subject to - change. If this happened this library will be - updated to accommodate for that, but for now - `inet_dns` is simple and worked for me.''; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/tungd/elixir-dns"; - }; - } - ) {}; - - dns = dns_0_0_3; - - dnsimple_0_0_1 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_7_5 }: - buildMix { - name = "dnsimple"; - version = "0.0.1"; - src = fetchHex { - pkg = "dnsimple"; - version = "0.0.1"; - sha256 = - "37acb9b7a35f9383ed98754e5bee5c479b91ac739ec566befa32d9baccdb4105"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_7_5 ]; - - meta = { - description = ''An (experimental) Elixir client for the DNSimple - API v2.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/weppos/dnsimple-elixir"; - }; - } - ) {}; - - dnsimple = dnsimple_0_0_1; - doc_first_formatter_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "doc_first_formatter"; version = "0.0.1"; src = fetchHex { @@ -10055,15 +6033,15 @@ let 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, fetchHex, plug_1_1_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ name = "doc_plug"; version = "1.0.2"; src = fetchHex { @@ -10080,41 +6058,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/hild/doc_plug"; }; - } + } // packageOverrides) ) {}; doc_plug = doc_plug_1_0_2; - docker_0_3_0 = callPackage - ( - { buildRebar3, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildRebar3 { - name = "docker"; - version = "0.3.0"; - src = fetchHex { - pkg = "docker"; - version = "0.3.0"; - sha256 = - "ad97dbaa51a615a7694018d95b0b09403b6d552a03ddb3ba50f121c814cc624a"; - }; - - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''Elixir client for the Docker Remote API using - HTTPoison. ''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/hexedpackets/docker-elixir"; - }; - } - ) {}; - - docker = docker_0_3_0; - dogma_0_1_4 = callPackage ( - { buildMix, fetchHex, poison_2_1_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }: + buildMix ({ name = "dogma"; version = "0.1.4"; src = fetchHex { @@ -10131,15 +6083,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/lpil/dogma"; }; - } + } // packageOverrides) ) {}; dogma = dogma_0_1_4; dogstatsd_0_0_3 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "dogstatsd"; version = "0.0.3"; src = fetchHex { @@ -10155,15 +6107,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/adamkittelson/dogstatsd-elixir"; }; - } + } // packageOverrides) ) {}; dogstatsd = dogstatsd_0_0_3; dot_0_0_3 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "dot"; version = "0.0.3"; src = fetchHex { @@ -10173,36 +6125,15 @@ let "3411bf1f70bb8ea0caa64515054a4a161b711667a5cdb0e7c14e766ce04b06ae"; }; meta = { }; - } + } // packageOverrides) ) {}; dot = dot_0_0_3; - dotenv_0_0_4 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "dotenv"; - version = "0.0.4"; - src = fetchHex { - pkg = "dotenv"; - version = "0.0.4"; - sha256 = - "e5243714a0fa0fbb6b5f466b1302db3a5fdb28363460fd4d282167e476cf703d"; - }; - - meta = { - description = ''A port of dotenv to Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/avdi/dotenv_elixir"; - }; - } - ) {}; - dotenv_2_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "dotenv"; version = "2.0.0"; src = fetchHex { @@ -10217,155 +6148,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/avdi/dotenv_elixir"; }; - } + } // packageOverrides) ) {}; dotenv = dotenv_2_0_0; - dotenv_elixir_0_0_2 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "dotenv_elixir"; - version = "0.0.2"; - src = fetchHex { - pkg = "dotenv_elixir"; - version = "0.0.2"; - sha256 = - "b7b95bff53df3bee1f500a24543bfb4c5c90b69c741454a86509b5a26c0355b7"; - }; - - meta = { - description = ''A port of dotenv to Elixir ''; - - homepage = "https://github.com/avdi/dotenv_elixir"; - }; - } - ) {}; - - dotenv_elixir = dotenv_elixir_0_0_2; - - dovetail_0_0_3 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "dovetail"; - version = "0.0.3"; - src = fetchHex { - pkg = "dovetail"; - version = "0.0.3"; - sha256 = - "01b6c3085ebb9cb7d43115c7a2d9780a840017e521daeb7d0a2233f61f8b0306"; - }; - - meta = { - description = ''Dovetail provides a harness for running test - dovecot servers.''; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/thusfresh/dovetail"; - }; - } - ) {}; - - dovetail = dovetail_0_0_3; - - dpd_client_0_0_6 = callPackage - ( - { buildMix, fetchHex, hackney_1_4_8, poison_1_0_3 }: - buildMix { - name = "dpd_client"; - version = "0.0.6"; - src = fetchHex { - pkg = "dpd_client"; - version = "0.0.6"; - sha256 = - "080d8e9e4c68db87e42ead3fa3ffbc8cde2cadac441dbe81fa7a1b903486cc2d"; - }; - beamDeps = [ hackney_1_4_8 poison_1_0_3 ]; - - meta = { - longDescription = ''`dpd_client` is an API client for the DPD - service. It only supports a few of the API`s - endpoints at present. ''; - license = stdenv.lib.licenses.mit; - }; - } - ) {}; - - dpd_client = dpd_client_0_0_6; - - dproto_0_1_12 = callPackage - ( - { buildRebar3, fetchHex, mmath_0_1_15 }: - buildRebar3 { - name = "dproto"; - version = "0.1.12"; - src = fetchHex { - pkg = "dproto"; - version = "0.1.12"; - sha256 = - "49e2a048293a6c6213b69b5e983c581f81de0536e9acb5c47cd113ef410abbcf"; - }; - - beamDeps = [ mmath_0_1_15 ]; - - meta = { - description = ''Protocols for dalmatinerdb''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/dalmatinerdb/dproto"; - }; - } - ) {}; - - dproto = dproto_0_1_12; - - dqe_0_1_33 = callPackage - ( - { - buildRebar3, - fetchHex, - qdate_0_4_2, - poolboy_1_5_1, - mmath_0_1_16, - lager_3_0_2, - dproto_0_1_12, - dflow_0_1_5, - ddb_client_0_1_17 - }: - buildRebar3 { - name = "dqe"; - version = "0.1.33"; - src = fetchHex { - pkg = "dqe"; - version = "0.1.33"; - sha256 = - "b3c4eded2953afff00df0e33534b36e8bcceccafa9c11fd3438e1a88d570bb41"; - }; - - beamDeps = [ - qdate_0_4_2 - poolboy_1_5_1 - mmath_0_1_16 - lager_3_0_2 - dproto_0_1_12 - dflow_0_1_5 - ddb_client_0_1_17 - ]; - - meta = { - description = ''DalmatinerDB query engine''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/dalmatinerdb/dqe"; - }; - } - ) {}; - - dqe = dqe_0_1_33; - drawille_0_0_1 = callPackage ( - { buildMix, fetchHex, ex_doc_0_10_0, earmark_0_1_19 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + ex_doc_0_10_0, + earmark_0_1_19 + }: + buildMix ({ name = "drawille"; version = "0.0.1"; src = fetchHex { @@ -10381,64 +6178,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/massn/elixir-drawille"; }; - } + } // packageOverrides) ) {}; drawille = drawille_0_0_1; - dropbox_0_0_7 = callPackage - ( - { buildMix, fetchHex, hackney_1_4_8, jazz_0_2_1 }: - buildMix { - name = "dropbox"; - version = "0.0.7"; - src = fetchHex { - pkg = "dropbox"; - version = "0.0.7"; - sha256 = - "d881be0c042856e0b2ff446dfac0b64337f5cbbb18479f4c81080d3d2cd7e4af"; - }; - beamDeps = [ hackney_1_4_8 jazz_0_2_1 ]; - - meta = { - description = ''A Dropbox Core API client for Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/ammmir/elixir-dropbox"; - }; - } - ) {}; - - dropbox = dropbox_0_0_7; - - dublin_bus_api_0_1_6 = callPackage - ( - { buildMix, fetchHex, httpoison_0_8_2, floki_0_8_0 }: - buildMix { - name = "dublin_bus_api"; - version = "0.1.6"; - src = fetchHex { - pkg = "dublin_bus_api"; - version = "0.1.6"; - sha256 = - "4ac4811519a176c149b03c021bebd44771a279c489fe09c18a1f16f373c7bbb8"; - }; - beamDeps = [ httpoison_0_8_2 floki_0_8_0 ]; - - meta = { - description = ''Access to the Real Time Passenger Information - (RTPI) for Dublin Bus services.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/carlo-colombo/dublin-bus-api"; - }; - } - ) {}; - - dublin_bus_api = dublin_bus_api_0_1_6; - durga_transport_1_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "durga_transport"; version = "1.0.1"; src = fetchHex { @@ -10448,15 +6196,15 @@ let "42db857eba0e78c4eb15823b5137e8ccad13711cc2c873b6f1b469c4c0771009"; }; meta = { }; - } + } // packageOverrides) ) {}; durga_transport = durga_transport_1_0_1; dye_0_4_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "dye"; version = "0.4.0"; src = fetchHex { @@ -10471,15 +6219,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/Kabie/dye"; }; - } + } // packageOverrides) ) {}; dye = dye_0_4_0; dynamic_compile_1_0_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "dynamic_compile"; version = "1.0.0"; src = fetchHex { @@ -10495,15 +6243,15 @@ let 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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "e2qc"; version = "0.1.0"; src = fetchHex { @@ -10513,21 +6261,23 @@ let "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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "e_queue"; version = "1.0.1"; src = fetchHex { @@ -10544,43 +6294,19 @@ let 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.''; + 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; - e_quip_0_0_1 = callPackage - ( - { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: - buildMix { - name = "e_quip"; - version = "0.0.1"; - src = fetchHex { - pkg = "e_quip"; - version = "0.0.1"; - sha256 = - "e6fe9eeb96dbc863b527a792e730ea41aea43caef2a5db68ea2c4c9fc21f552a"; - }; - beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; - - meta = { - description = ''Simple Quip API Client''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/mmartinson/e_quip"; - }; - } - ) {}; - - e_quip = e_quip_0_0_1; - earmark_0_1_15 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "earmark"; version = "0.1.15"; src = fetchHex { @@ -10599,13 +6325,13 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/pragdave/earmark"; }; - } + } // packageOverrides) ) {}; earmark_0_1_19 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "earmark"; version = "0.1.19"; src = fetchHex { @@ -10624,13 +6350,13 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/pragdave/earmark"; }; - } + } // packageOverrides) ) {}; earmark_0_2_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "earmark"; version = "0.2.1"; src = fetchHex { @@ -10649,15 +6375,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/pragdave/earmark"; }; - } + } // packageOverrides) ) {}; earmark = earmark_0_2_1; eastar_0_3_8 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "eastar"; version = "0.3.8"; src = fetchHex { @@ -10676,15 +6402,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "http://github.com/herenowcoder/eastar"; }; - } + } // packageOverrides) ) {}; eastar = eastar_0_3_8; easy_server_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "easy_server"; version = "0.0.1"; src = fetchHex { @@ -10699,15 +6425,15 @@ let 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, fetchHex, poison_1_5_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }: + buildMix ({ name = "easypost"; version = "0.0.1"; src = fetchHex { @@ -10723,15 +6449,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/Dania02525/easypost"; }; - } + } // packageOverrides) ) {}; easypost = easypost_0_0_1; ec2_0_9_1 = callPackage ( - { buildMix, fetchHex, jsx_2_8_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, jsx_2_8_0 }: + buildMix ({ name = "ec2"; version = "0.9.1"; src = fetchHex { @@ -10748,43 +6474,22 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/talentdeficit/ec2"; }; - } + } // packageOverrides) ) {}; ec2 = ec2_0_9_1; - ecc_0_1_3 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "ecc"; - version = "0.1.3"; - src = fetchHex { - pkg = "ecc"; - version = "0.1.3"; - sha256 = - "0255ffe6e2b2cbbc2445ec7de6d29e16b6b6d8eaf0a6ae99a299cc79162541db"; - }; - - meta = { - longDescription = ''An elixir module for elliptic curve - cryptography. It can be used either as a library - or as a GenServer-Task for signing messages and - verifying signatures with a public key. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/farao/elixir-ecc"; - }; - } - ) {}; - - ecc = ecc_0_1_3; - ecdo_0_1_4 = callPackage ( { - buildMix, fetchHex, postgrex_0_11_1, mariaex_0_7_0, ecto_1_0_7 + buildMix, + packageOverrides ? {}, + fetchHex, + postgrex_0_11_1, + mariaex_0_7_0, + ecto_1_0_7 }: - buildMix { + buildMix ({ name = "ecdo"; version = "0.1.4"; src = fetchHex { @@ -10802,15 +6507,15 @@ let homepage = "https://github.com/xerions/ecdo"; }; - } + } // packageOverrides) ) {}; ecdo = ecdo_0_1_4; echo_0_2_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "echo"; version = "0.2.0"; src = fetchHex { @@ -10829,39 +6534,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/zmoshansky/echo"; }; - } + } // packageOverrides) ) {}; echo = echo_0_2_0; - echonest_ex_0_0_2 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "echonest_ex"; - version = "0.0.2"; - src = fetchHex { - pkg = "echonest_ex"; - version = "0.0.2"; - sha256 = - "d8b3d7f2b04eb48b689877aaf9db30f33acea3ea02daca5aad8d105ac785bd98"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''Echonest api wrapper for Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/desmondhume/echonest_ex"; - }; - } - ) {}; - - echonest_ex = echonest_ex_0_0_2; - econfig_0_7_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "econfig"; version = "0.7.1"; src = fetchHex { @@ -10876,7 +6557,7 @@ let homepage = "https://github.com/benoitc/econfig"; }; - } + } // packageOverrides) ) {}; econfig = econfig_0_7_1; @@ -10885,6 +6566,7 @@ let ( { buildMix, + packageOverrides ? {}, fetchHex, sbroker_0_7_0, postgrex_0_9_1, @@ -10893,7 +6575,7 @@ let mariaex_0_4_3, decimal_1_1_1 }: - buildMix { + buildMix ({ name = "ecto"; version = "0.15.0"; src = fetchHex { @@ -10918,13 +6600,14 @@ let 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, @@ -10933,7 +6616,7 @@ let mariaex_0_4_3, decimal_1_1_1 }: - buildMix { + buildMix ({ name = "ecto"; version = "0.16.0"; src = fetchHex { @@ -10958,91 +6641,14 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/elixir-lang/ecto"; }; - } - ) {}; - - ecto_0_2_4 = callPackage - ( - { - buildMix, fetchHex, postgrex_0_8_4, poolboy_1_2_1, decimal_0_2_5 - }: - buildMix { - name = "ecto"; - version = "0.2.4"; - src = fetchHex { - pkg = "ecto"; - version = "0.2.4"; - sha256 = - "b6918fb8a0b72220238832616c42937ac04d2f8016d687b53e3a241234cae4f3"; - }; - beamDeps = [ postgrex_0_8_4 poolboy_1_2_1 decimal_0_2_5 ]; - - 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"; - }; - } - ) {}; - - ecto_0_2_7 = callPackage - ( - { - buildMix, fetchHex, postgrex_0_8_4, poolboy_1_4_2, decimal_0_2_5 - }: - buildMix { - name = "ecto"; - version = "0.2.7"; - src = fetchHex { - pkg = "ecto"; - version = "0.2.7"; - sha256 = - "3f26fd41a9e34272f5e753a010b1494646892130c91603da717b375c7acfed7f"; - }; - beamDeps = [ postgrex_0_8_4 poolboy_1_4_2 decimal_0_2_5 ]; - - 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"; - }; - } - ) {}; - - ecto_0_5_1 = callPackage - ( - { - buildMix, fetchHex, postgrex_0_8_4, poolboy_1_4_2, decimal_0_2_5 - }: - buildMix { - name = "ecto"; - version = "0.5.1"; - src = fetchHex { - pkg = "ecto"; - version = "0.5.1"; - sha256 = - "a7f1f8022f6b8c53edc91076bcc885e1124fdf14cdc2c4a11d3b9b4c26cf34a8"; - }; - beamDeps = [ postgrex_0_8_4 poolboy_1_4_2 decimal_0_2_5 ]; - - 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, @@ -11051,7 +6657,7 @@ let mariaex_0_4_3, decimal_1_1_1 }: - buildMix { + buildMix ({ name = "ecto"; version = "1.0.7"; src = fetchHex { @@ -11076,13 +6682,14 @@ let 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, @@ -11091,7 +6698,7 @@ let mariaex_0_1_7, decimal_1_1_1 }: - buildMix { + buildMix ({ name = "ecto"; version = "1.1.5"; src = fetchHex { @@ -11116,55 +6723,13 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/elixir-lang/ecto"; }; - } + } // packageOverrides) ) {}; - ecto_2_0_0_beta_2 = callPackage - ( - { - buildMix, - fetchHex, - sbroker_0_7_0, - postgrex_0_11_1, - poolboy_1_5_1, - poison_1_0_3, - mariaex_0_7_0, - decimal_1_1_1 - }: - buildMix { - name = "ecto"; - version = "2.0.0-beta.2"; - src = fetchHex { - pkg = "ecto"; - version = "2.0.0-beta.2"; - sha256 = - "8b4f7ee50b342b9ea8a9c64b855625f2f805ddb981b89261d464fe84e93e40bd"; - }; - beamDeps = [ - sbroker_0_7_0 - postgrex_0_11_1 - poolboy_1_5_1 - poison_1_0_3 - mariaex_0_7_0 - 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"; - }; - } - ) {}; - - ecto = ecto_2_0_0_beta_2; - ecto_audit_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ecto_audit"; version = "0.0.1"; src = fetchHex { @@ -11180,71 +6745,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/mattweldon/ecto_audit"; }; - } + } // packageOverrides) ) {}; ecto_audit = ecto_audit_0_0_1; - ecto_enum_0_3_0 = callPackage - ( - { - buildMix, - fetchHex, - postgrex_0_11_1, - mariaex_0_7_0, - ecto_2_0_0_beta_2 - }: - buildMix { - name = "ecto_enum"; - version = "0.3.0"; - src = fetchHex { - pkg = "ecto_enum"; - version = "0.3.0"; - sha256 = - "2aabbeeee17c67b8336890cc1888b1104b71e29852d464a77efca4257b02a8d9"; - }; - beamDeps = [ postgrex_0_11_1 mariaex_0_7_0 ecto_2_0_0_beta_2 ]; - - meta = { - description = ''Ecto extension to support enums in models''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/gjaldon/ecto_enum"; - }; - } - ) {}; - - ecto_enum = ecto_enum_0_3_0; - - ecto_fixtures_0_0_2 = callPackage - ( - { buildMix, fetchHex, uuid_1_1_3 }: - buildMix { - name = "ecto_fixtures"; - version = "0.0.2"; - src = fetchHex { - pkg = "ecto_fixtures"; - version = "0.0.2"; - sha256 = - "64e7ea208763fbcfb089ae8693fddcbe45c70ce2879614ad4edf883ca33ce061"; - }; - beamDeps = [ uuid_1_1_3 ]; - - meta = { - longDescription = ''Ecto Fixtures provides a simple DSL for - quickly creating fixture data for your test - suite.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/dockyard/ecto_fixtures"; - }; - } - ) {}; - - ecto_fixtures = ecto_fixtures_0_0_2; - ecto_gettext_0_1_4 = callPackage ( - { buildMix, fetchHex, gettext_0_10_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, gettext_0_10_0 }: + buildMix ({ name = "ecto_gettext"; version = "0.1.4"; src = fetchHex { @@ -11261,206 +6770,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/exbugs-elixir/ecto_gettext"; }; - } + } // packageOverrides) ) {}; ecto_gettext = ecto_gettext_0_1_4; - ecto_hstore_0_0_1 = callPackage - ( - { buildMix, fetchHex, ecto_2_0_0_beta_2 }: - buildMix { - name = "ecto_hstore"; - version = "0.0.1"; - src = fetchHex { - pkg = "ecto_hstore"; - version = "0.0.1"; - sha256 = - "0dca7ad14d0fa42038594e00a6f1e1fb3476644f71299f9e4ca10f1b9d6098cb"; - }; - beamDeps = [ ecto_2_0_0_beta_2 ]; - - meta = { - description = ''Ecto.Hstore adds Postgres Hstore compatibility to - Ecto. ''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/stavro/ecto_hstore"; - }; - } - ) {}; - - ecto_hstore = ecto_hstore_0_0_1; - - ecto_it_0_2_0 = callPackage - ( - { - buildMix, - fetchHex, - postgrex_0_11_1, - mariaex_0_7_0, - ecto_2_0_0_beta_2 - }: - buildMix { - name = "ecto_it"; - version = "0.2.0"; - src = fetchHex { - pkg = "ecto_it"; - version = "0.2.0"; - sha256 = - "ddbf27e85547b9812d7b49bc2252b4667468582b174045ba2bb1a804d209a860"; - }; - beamDeps = [ postgrex_0_11_1 mariaex_0_7_0 ecto_2_0_0_beta_2 ]; - - meta = { - longDescription = ''Ecto IT is library for writing integration - tests(with database backend) for ecto-based - applications.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/xerions/ecto_it"; - }; - } - ) {}; - - ecto_it = ecto_it_0_2_0; - - ecto_lazy_float_0_1_2 = callPackage - ( - { buildMix, fetchHex, ecto_2_0_0_beta_2 }: - buildMix { - name = "ecto_lazy_float"; - version = "0.1.2"; - src = fetchHex { - pkg = "ecto_lazy_float"; - version = "0.1.2"; - sha256 = - "76f14bf8d2bf52e3143c79fdf0e9d9bbb2fb1b087e847b13347e52e5b0c5da94"; - }; - beamDeps = [ ecto_2_0_0_beta_2 ]; - - meta = { - description = ''Ecto.LazyFloat takes integer, strings, and floats - and casts them to floats. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/joshdholtz/ecto-lazy-float"; - }; - } - ) {}; - - ecto_lazy_float = ecto_lazy_float_0_1_2; - - ecto_ldap_0_2_4 = callPackage - ( - { buildMix, fetchHex, ecto_2_0_0_beta_2 }: - buildMix { - name = "ecto_ldap"; - version = "0.2.4"; - src = fetchHex { - pkg = "ecto_ldap"; - version = "0.2.4"; - sha256 = - "156294145a5d4ab0b71f86f2738a991de0fa6352360f5d5383b22dc18a25dc57"; - }; - beamDeps = [ ecto_2_0_0_beta_2 ]; - - meta = { - description = ''An Ecto adapter for LDAP''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/jeffweiss/ecto_ldap"; - }; - } - ) {}; - - ecto_ldap = ecto_ldap_0_2_4; - - ecto_migrate_0_6_3 = callPackage - ( - { - buildMix, - fetchHex, - postgrex_0_11_1, - mariaex_0_7_0, - ecto_it_0_2_0, - ecto_1_0_7 - }: - buildMix { - name = "ecto_migrate"; - version = "0.6.3"; - src = fetchHex { - pkg = "ecto_migrate"; - version = "0.6.3"; - sha256 = - "a604f2fe7874c674bd42fc70f3e89776d3738571d252ec8b785a107a6fa12b5c"; - }; - beamDeps = [ - postgrex_0_11_1 mariaex_0_7_0 ecto_it_0_2_0 ecto_1_0_7 - ]; - - meta = { - longDescription = ''Ecto auto migration library. It allows to - generate and run migrations for initial and - update migrations.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/xerions/ecto_migrate"; - }; - } - ) {}; - - ecto_migrate = ecto_migrate_0_6_3; - - ecto_ordered_0_0_2 = callPackage - ( - { buildMix, fetchHex, ecto_0_5_1 }: - buildMix { - name = "ecto_ordered"; - version = "0.0.2"; - src = fetchHex { - pkg = "ecto_ordered"; - version = "0.0.2"; - sha256 = - "315ccd497576d800e3962874da19dae8938eb36ca4dc14193ed95ef7c9c12c1e"; - }; - beamDeps = [ ecto_0_5_1 ]; - - meta = { - description = ''Ecto extension to support ordered list models''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/trustatom-oss/ecto-ordered"; - }; - } - ) {}; - - ecto_ordered = ecto_ordered_0_0_2; - - ecto_validation_case_0_1_1 = callPackage - ( - { buildMix, fetchHex, ex_doc_0_11_4, ecto_2_0_0_beta_2 }: - buildMix { - name = "ecto_validation_case"; - version = "0.1.1"; - src = fetchHex { - pkg = "ecto_validation_case"; - version = "0.1.1"; - sha256 = - "0bec902247929e66cb0687f09d458633385843d18ca6ec1ac2557e6754b55cbd"; - }; - beamDeps = [ ex_doc_0_11_4 ecto_2_0_0_beta_2 ]; - - meta = { - description = ''Ecto.ValidationCase simplifies writing validation - tests for Ecto models. ''; - license = with stdenv.lib.licenses; [ mit asl20 ]; - homepage = - "https://github.com/danielberkompas/ecto_validation_case"; - }; - } - ) {}; - - ecto_validation_case = ecto_validation_case_0_1_1; - ectograph_0_0_2 = callPackage ( - { buildMix, fetchHex, graphql_0_2_0, ecto_1_1_5 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + graphql_0_2_0, + ecto_1_1_5 + }: + buildMix ({ name = "ectograph"; version = "0.0.2"; src = fetchHex { @@ -11478,77 +6802,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/icidasset/ectograph"; }; - } + } // packageOverrides) ) {}; ectograph = ectograph_0_0_2; - ectoo_0_0_4 = callPackage - ( - { buildMix, fetchHex, postgrex_0_11_1, ecto_2_0_0_beta_2 }: - buildMix { - name = "ectoo"; - version = "0.0.4"; - src = fetchHex { - pkg = "ectoo"; - version = "0.0.4"; - sha256 = - "bf5852e97e64666ebd57df710e4cb1239d3fcf135d7ae9d5d666fc53aa0e0b46"; - }; - beamDeps = [ postgrex_0_11_1 ecto_2_0_0_beta_2 ]; - - meta = { - longDescription = ''Make simple things easy in Ecto, e.g. - Ectoo.max(MyModel, :age). Also .count, .min, - .max, .avg.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/henrik/ectoo"; - }; - } - ) {}; - - ectoo = ectoo_0_0_4; - - ectophile_0_3_0 = callPackage - ( - { - buildMix, - fetchHex, - postgrex_0_9_1, - poison_1_5_2, - mariaex_0_4_3, - ecto_2_0_0_beta_2 - }: - buildMix { - name = "ectophile"; - version = "0.3.0"; - src = fetchHex { - pkg = "ectophile"; - version = "0.3.0"; - sha256 = - "376c7c838bc602bc64d7ae3dfa4079717f6ed5e0117113652fc281e3e17227d2"; - }; - beamDeps = [ - postgrex_0_9_1 - poison_1_5_2 - mariaex_0_4_3 - ecto_2_0_0_beta_2 - ]; - - meta = { - description = ''File upload extension for Ecto''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/gjaldon/ectophile"; - }; - } - ) {}; - - ectophile = ectophile_0_3_0; - edeliver_1_1_4 = callPackage ( - { buildMix, fetchHex, exrm_1_0_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, exrm_1_0_3 }: + buildMix ({ name = "edeliver"; version = "1.1.4"; src = fetchHex { @@ -11566,66 +6828,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/boldpoker/edeliver"; }; - } + } // packageOverrides) ) {}; edeliver = edeliver_1_1_4; - eden_0_1_3 = callPackage - ( - { buildMix, fetchHex, timex_0_13_5, array_1_0_1 }: - buildMix { - name = "eden"; - version = "0.1.3"; - src = fetchHex { - pkg = "eden"; - version = "0.1.3"; - sha256 = - "cbada564b3beb28c350a3f01da7398329e39c24dc9780002ab842d14604ca67b"; - }; - beamDeps = [ timex_0_13_5 array_1_0_1 ]; - - meta = { - description = ''edn (extensible data notation) encoder/decoder - implemented in Elixir.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/jfacorro/Eden/"; - }; - } - ) {}; - - eden = eden_0_1_3; - - edgarex_0_0_2 = callPackage - ( - { buildMix, fetchHex, httpotion_2_2_2, exquery_0_0_11 }: - buildMix { - name = "edgarex"; - version = "0.0.2"; - src = fetchHex { - pkg = "edgarex"; - version = "0.0.2"; - sha256 = - "99e25e685bc44a1f804729779e77d5e3d1920f42c99478cd9b712d724b4f6af4"; - }; - beamDeps = [ httpotion_2_2_2 exquery_0_0_11 ]; - - meta = { - longDescription = '' A set of utilities for fetching documents - from the SEC EDGAR data portal, as well as - parsing them into simpler structures. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/rozap/edgarex"; - }; - } - ) {}; - - edgarex = edgarex_0_0_2; - edib_0_5_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "edib"; version = "0.5.1"; src = fetchHex { @@ -11643,15 +6854,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "edip"; version = "0.4.3"; src = fetchHex { @@ -11669,38 +6880,16 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/asaaki/mix-edip"; }; - } + } // packageOverrides) ) {}; edip = edip_0_4_3; - edown_0_7_0 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "edown"; - version = "0.7.0"; - src = fetchHex { - pkg = "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; - eeb_0_1_3 = callPackage ( { buildMix, + packageOverrides ? {}, fetchHex, tzdata_0_1_201603, timex_1_0_2, @@ -11708,7 +6897,7 @@ let earmark_0_1_19, cowboy_1_0_4 }: - buildMix { + buildMix ({ name = "eeb"; version = "0.1.3"; src = fetchHex { @@ -11730,15 +6919,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/aborn/eeb"; }; - } + } // packageOverrides) ) {}; eeb = eeb_0_1_3; efirebirdsql_0_1_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "efirebirdsql"; version = "0.1.1"; src = fetchHex { @@ -11753,47 +6942,23 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/nakagami/efirebirdsql"; }; - } + } // packageOverrides) ) {}; efirebirdsql = efirebirdsql_0_1_1; - efrisby_0_2_0 = callPackage - ( - { buildRebar3, fetchHex, jsx_2_8_0, hackney_1_4_8 }: - buildRebar3 { - name = "efrisby"; - version = "0.2.0"; - src = fetchHex { - pkg = "efrisby"; - version = "0.2.0"; - sha256 = - "5ad6f030a9e6b7611af09ce009106dcad9fa4ab3d23aa6db03573082f4824470"; - }; - - beamDeps = [ jsx_2_8_0 hackney_1_4_8 ]; - - meta = { - description = ''A REST API testing framework for erlang''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/FabioBatSilva/efrisby"; - }; - } - ) {}; - - efrisby = efrisby_0_2_0; - 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 { + buildErlangMk ({ name = "egithub"; version = "0.2.2"; src = fetchHex { @@ -11811,15 +6976,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/inaka/erlang-github"; }; - } + } // packageOverrides) ) {}; egithub = egithub_0_2_2; eh_0_2_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "eh"; version = "0.2.0"; src = fetchHex { @@ -11835,15 +7000,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "eight_ball"; version = "0.0.1"; src = fetchHex { @@ -11859,15 +7024,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "eight_ball_dj"; version = "0.0.2"; src = fetchHex { @@ -11882,15 +7047,22 @@ let 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, fetchHex, poison_1_5_2, plug_1_1_3, cowboy_1_0_4 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_5_2, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ name = "eio"; version = "0.1.0"; src = fetchHex { @@ -11906,80 +7078,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/falood/eio"; }; - } + } // packageOverrides) ) {}; eio = eio_0_1_0; - ejabberd_16_2_0 = callPackage - ( - { - buildMix, - fetchHex, - stun_1_0_1, - stringprep_1_0_3, - sqlite3_1_1_5, - p1_xmlrpc_1_15_1, - p1_utils_1_0_3, - p1_pgsql_1_1_0, - p1_oauth2_0_6_1, - p1_mysql_1_0_1, - lager_3_0_2, - jiffy_0_14_7, - iconv_1_0_0, - fast_yaml_1_0_3, - fast_xml_1_1_11, - fast_tls_1_0_1, - ezlib_1_0_1, - esip_1_0_2, - eredis_1_0_8, - cache_tab_1_0_2 - }: - buildMix { - name = "ejabberd"; - version = "16.2.0"; - src = fetchHex { - pkg = "ejabberd"; - version = "16.2.0"; - sha256 = - "4e51457ac9f850782a5da63d060b8f710c2c652c7bd2062bb8c804a13985ca6e"; - }; - beamDeps = [ - stun_1_0_1 - stringprep_1_0_3 - sqlite3_1_1_5 - p1_xmlrpc_1_15_1 - p1_utils_1_0_3 - p1_pgsql_1_1_0 - p1_oauth2_0_6_1 - p1_mysql_1_0_1 - lager_3_0_2 - jiffy_0_14_7 - iconv_1_0_0 - fast_yaml_1_0_3 - fast_xml_1_1_11 - fast_tls_1_0_1 - ezlib_1_0_1 - esip_1_0_2 - eredis_1_0_8 - cache_tab_1_0_2 - ]; - - meta = { - longDescription = ''Robust, ubiquitous and massively scalable - Jabber / XMPP Instant Messaging platform.''; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/processone/ejabberd"; - }; - } - ) {}; - - ejabberd = ejabberd_16_2_0; - ejabberd_dev_15_9_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ejabberd_dev"; version = "15.9.0"; src = fetchHex { @@ -11997,234 +7104,15 @@ let license = stdenv.lib.licenses.gpl3; homepage = "https://github.com/scrogson/ejabberd_dev"; }; - } + } // packageOverrides) ) {}; ejabberd_dev = ejabberd_dev_15_9_0; - ekstat_0_2_2 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "ekstat"; - version = "0.2.2"; - src = fetchHex { - pkg = "ekstat"; - version = "0.2.2"; - sha256 = - "fdd30052433bf7ceb453397c4cabee2d9b0a2a716842a29a1121d3474c5b9fa7"; - }; - compilePorts = true; - - meta = { - description = ''libkstat interface for erlang''; - license = stdenv.lib.licenses.cddl; - homepage = "https://github.com/Licenser/ekstat"; - }; - } - ) {}; - - ekstat = ekstat_0_2_2; - - elastex_0_1_2 = callPackage - ( - { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: - buildMix { - name = "elastex"; - version = "0.1.2"; - src = fetchHex { - pkg = "elastex"; - version = "0.1.2"; - sha256 = - "eaab5305db3d5d326e471dc1799606b7055971dfb7d9a27571850d2ce7e97f9b"; - }; - beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; - - meta = { - description = ''Data driven elixir client for Elasticsearch.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/michaeldoaty/elastex"; - }; - } - ) {}; - - elastex = elastex_0_1_2; - - elastix_0_1_0 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_7_5 }: - buildMix { - name = "elastix"; - version = "0.1.0"; - src = fetchHex { - pkg = "elastix"; - version = "0.1.0"; - sha256 = - "3e24e2287bbd733e913d16092ea3fdff6b7f8f74f9eae73b07699fcf62bb5b06"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_7_5 ]; - - meta = { - description = ''A simple Elastic REST client written in - Elixir.''; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/werbitzky/elastix"; - }; - } - ) {}; - - elastix = elastix_0_1_0; - - elaxtic_0_0_1 = callPackage - ( - { buildMix, fetchHex, httpoison_0_8_2 }: - buildMix { - name = "elaxtic"; - version = "0.0.1"; - src = fetchHex { - pkg = "elaxtic"; - version = "0.0.1"; - sha256 = - "a912a0327bfe1c6443cec47a03d11450fed2e649bfdcd4e77bdb9176baa8cd45"; - }; - beamDeps = [ httpoison_0_8_2 ]; - - meta = { - description = ''ElasticSearch client for Elixir and Ecto - driver.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/vic/elaxtic"; - }; - } - ) {}; - - elaxtic = elaxtic_0_0_1; - - eleveldb_2_1_3 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "eleveldb"; - version = "2.1.3"; - src = fetchHex { - pkg = "eleveldb"; - version = "2.1.3"; - sha256 = - "91f4caccc3d0a40a6135b9a647a52c7ec5fefdd41883e1a0f32745838d7cfd3c"; - }; - compilePorts = true; - - meta = { - description = ''Erlang LevelDB API''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/basho/eleveldb"; - }; - } - ) {}; - - eleveldb = eleveldb_2_1_3; - - elibphonenumber_0_1_1 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "elibphonenumber"; - version = "0.1.1"; - src = fetchHex { - pkg = "elibphonenumber"; - version = "0.1.1"; - sha256 = - "6dcbcd49fe7c969873a3431eaa3939298b2564308d2a8fbcc22b7d9b4bc65f27"; - }; - compilePorts = true; - - meta = { - description = ''A port driver for libphonenumber''; - - homepage = "https://github.com/johnhamelink/elibphonenumber"; - }; - } - ) {}; - - elibphonenumber = elibphonenumber_0_1_1; - - elistrix_0_0_5 = callPackage - ( - { buildMix, fetchHex, timex_0_13_5 }: - buildMix { - name = "elistrix"; - version = "0.0.5"; - src = fetchHex { - pkg = "elistrix"; - version = "0.0.5"; - sha256 = - "63888c589e9ec116f4cb6f8b6ef18aec478d48563965da94594408d3c86450d3"; - }; - beamDeps = [ timex_0_13_5 ]; - - meta = { - longDescription = ''A latency / fault tolerance library to help - isolate your applications from an uncertain - world of slow or failed services.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/tobz/elistrix"; - }; - } - ) {}; - - elistrix = elistrix_0_0_5; - - elixilorem_0_0_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "elixilorem"; - version = "0.0.1"; - src = fetchHex { - pkg = "elixilorem"; - version = "0.0.1"; - sha256 = - "fbe0f40bed9e3e3db687e88d3afb24e1a81ae274582170d1ca0545e13638cbea"; - }; - - meta = { - description = ''A Lorem Ipsum generator for Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/mgamini/elixilorem"; - }; - } - ) {}; - - elixilorem = elixilorem_0_0_1; - - elixir_ale_0_4_1 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "elixir_ale"; - version = "0.4.1"; - src = fetchHex { - pkg = "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; - elixir_ami_0_0_3 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "elixir_ami"; version = "0.0.3"; src = fetchHex { @@ -12241,15 +7129,21 @@ let 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, fetchHex, xml_builder_0_0_8, exmerl_0_1_1 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + xml_builder_0_0_8, + exmerl_0_1_1 + }: + buildMix ({ name = "elixir_authorizenet"; version = "0.2.2"; src = fetchHex { @@ -12275,15 +7169,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "elixir_bencode"; version = "1.0.0"; src = fetchHex { @@ -12298,15 +7192,21 @@ let 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, fetchHex, ex_doc_0_10_0, earmark_0_1_19 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + ex_doc_0_10_0, + earmark_0_1_19 + }: + buildMix ({ name = "elixir_drawille"; version = "0.0.3"; src = fetchHex { @@ -12322,15 +7222,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "elixir_exif"; version = "0.1.1"; src = fetchHex { @@ -12346,15 +7246,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "elixir_feed_parser"; version = "0.9.0"; src = fetchHex { @@ -12369,15 +7269,21 @@ let 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, fetchHex, xml_builder_0_0_8, exmerl_0_1_1 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + xml_builder_0_0_8, + exmerl_0_1_1 + }: + buildMix ({ name = "elixir_freshbooks"; version = "0.0.4"; src = fetchHex { @@ -12393,64 +7299,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/marcelog/elixir_freshbooks"; }; - } + } // packageOverrides) ) {}; elixir_freshbooks = elixir_freshbooks_0_0_4; - elixir_ipfs_api_0_1_0 = callPackage - ( - { - buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2, ex_doc_0_10_0 - }: - buildMix { - name = "elixir_ipfs_api"; - version = "0.1.0"; - src = fetchHex { - pkg = "elixir_ipfs_api"; - version = "0.1.0"; - sha256 = - "b8b6656ce18ff070b2328436cfa3d55f08b3e0a2f98bee49d4b3cb49c144684b"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ex_doc_0_10_0 ]; - - meta = { - description = ''An elixir client library for the IPFS API''; - - }; - } - ) {}; - - elixir_ipfs_api = elixir_ipfs_api_0_1_0; - - elixir_locker_0_1_4 = callPackage - ( - { buildMix, fetchHex, locker_1_0_8 }: - buildMix { - name = "elixir_locker"; - version = "0.1.4"; - src = fetchHex { - pkg = "elixir_locker"; - version = "0.1.4"; - sha256 = - "cca190b5846f37dfaaa495981b92e34015ca0dd0a879d200be90333f3866ceb2"; - }; - beamDeps = [ locker_1_0_8 ]; - - meta = { - description = ''Elixir wrapper for the locker Erlang library.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/tsharju/elixir_locker"; - }; - } - ) {}; - - elixir_locker = elixir_locker_0_1_4; - elixir_mbcs_0_1_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "elixir_mbcs"; version = "0.1.2"; src = fetchHex { @@ -12465,15 +7322,15 @@ let 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, fetchHex, uuid_1_1_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, uuid_1_1_3 }: + buildMix ({ name = "elixir_mod_event"; version = "0.0.5"; src = fetchHex { @@ -12492,50 +7349,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/marcelog/elixir_mod_event"; }; - } + } // packageOverrides) ) {}; elixir_mod_event = elixir_mod_event_0_0_5; - elixir_nsq_1_0_3 = callPackage - ( - { - buildMix, - fetchHex, - uuid_1_1_3, - socket_0_3_1, - poison_1_5_2, - httpotion_2_2_2 - }: - buildMix { - name = "elixir_nsq"; - version = "1.0.3"; - src = fetchHex { - pkg = "elixir_nsq"; - version = "1.0.3"; - sha256 = - "6d30c3754dfdd988f927b9c6ae51d3e0ec4b0d2477b99047baf7a52c96bf9494"; - }; - beamDeps = [ - uuid_1_1_3 socket_0_3_1 poison_1_5_2 httpotion_2_2_2 - ]; - - meta = { - longDescription = ''A client library for NSQ, `elixir_nsq` aims - to be complete, easy to use, and well tested. - Developed at Wistia (http://wistia.com).''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/wistia/elixir_nsq"; - }; - } - ) {}; - - elixir_nsq = elixir_nsq_1_0_3; - elixir_prelude_0_2_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "elixir_prelude"; version = "0.2.1"; src = fetchHex { @@ -12550,15 +7372,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "elixir_radius"; version = "0.1.0"; src = fetchHex { @@ -12573,15 +7395,15 @@ let 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, fetchHex, estree_2_3_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, estree_2_3_0 }: + buildMix ({ name = "elixir_script"; version = "0.16.0"; src = fetchHex { @@ -12598,39 +7420,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/bryanjos/elixirscript"; }; - } + } // packageOverrides) ) {}; elixir_script = elixir_script_0_16_0; - elixir_talk_1_0_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "elixir_talk"; - version = "1.0.1"; - src = fetchHex { - pkg = "elixir_talk"; - version = "1.0.1"; - sha256 = - "846a7a66fbc11ed09aec93130da1fc034d28b8e5241b585ebeaaca5b38e0e0d2"; - }; - - meta = { - description = ''ElixirTalk is an Elixir client for beanstalkd. - ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/jsvisa/elixir_talk"; - }; - } - ) {}; - - elixir_talk = elixir_talk_1_0_1; - elixir_tea_1_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "elixir_tea"; version = "1.0.0"; src = fetchHex { @@ -12646,15 +7444,21 @@ let 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, fetchHex, poolboy_1_5_1, exjsx_3_2_0 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + poolboy_1_5_1, + exjsx_3_2_0 + }: + buildMix ({ name = "elixir_v8"; version = "0.2.2"; src = fetchHex { @@ -12670,15 +7474,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "elixlsx"; version = "0.0.2"; src = fetchHex { @@ -12693,41 +7497,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/xou/elixlsx"; }; - } + } // packageOverrides) ) {}; elixlsx = elixlsx_0_0_2; - elixtagram_0_2_5 = callPackage - ( - { - buildMix, fetchHex, poison_1_5_2, oauth2_0_6_0, httpoison_0_7_5 - }: - buildMix { - name = "elixtagram"; - version = "0.2.5"; - src = fetchHex { - pkg = "elixtagram"; - version = "0.2.5"; - sha256 = - "71503f2bfec0d4728449321e4e1aaae7c8ae24974d53b904327bcef5b16e6900"; - }; - beamDeps = [ poison_1_5_2 oauth2_0_6_0 httpoison_0_7_5 ]; - - meta = { - description = ''Instagram client library for Elixir.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/zensavona/elixtagram"; - }; - } - ) {}; - - elixtagram = elixtagram_0_2_5; - elli_1_0_5 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "elli"; version = "1.0.5"; src = fetchHex { @@ -12743,69 +7521,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/knutin/elli"; }; - } + } // packageOverrides) ) {}; elli = elli_1_0_5; - elmit_0_0_1 = callPackage - ( - { buildMix, fetchHex, httpotion_2_2_2 }: - buildMix { - name = "elmit"; - version = "0.0.1"; - src = fetchHex { - pkg = "elmit"; - version = "0.0.1"; - sha256 = - "90e5df811553733dd7505f9cc81397c3bdaf9c336eb3542c7e44f3c2012ef96e"; - }; - beamDeps = [ httpotion_2_2_2 ]; - - meta = { - description = ''Google Translate with speech synthesis in your - terminal as Hex package.''; - - }; - } - ) {}; - - elmit = elmit_0_0_1; - - email_checker_0_0_3 = callPackage - ( - { buildMix, fetchHex, socket_0_3_1 }: - buildMix { - name = "email_checker"; - version = "0.0.3"; - src = fetchHex { - pkg = "email_checker"; - version = "0.0.3"; - sha256 = - "feac6fa5cc1343b437221ace18fa8fa7251dfa777e986063e13f435d6aff990c"; - }; - beamDeps = [ socket_0_3_1 ]; - - meta = { - longDescription = ''Simple library checking the validity of an - email. Checks are performed in the following - order: - REGEX: validate the emails has a good - looking format - MX: validate the domain sever - contains MX records - SMTP: validate the SMTP - behind the MX records knows this email address - (no email sent)''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/kdisneur/email_checker"; - }; - } - ) {}; - - email_checker = email_checker_0_0_3; - eministat_0_10_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "eministat"; version = "0.10.1"; src = fetchHex { @@ -12820,15 +7544,15 @@ let benchmarks''; }; - } + } // packageOverrides) ) {}; eministat = eministat_0_10_1; eml_0_7_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "eml"; version = "0.7.1"; src = fetchHex { @@ -12848,15 +7572,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/zambal/eml"; }; - } + } // packageOverrides) ) {}; eml = eml_0_7_1; emodel_1_3_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "emodel"; version = "1.3.1"; src = fetchHex { @@ -12871,89 +7595,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/egobrain/emodel"; }; - } + } // packageOverrides) ) {}; emodel = emodel_1_3_1; - enotify_0_1_0 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "enotify"; - version = "0.1.0"; - src = fetchHex { - pkg = "enotify"; - version = "0.1.0"; - sha256 = - "8e48da763ce15bfd75cc857ddfe5011b03189d597f47bcdd8acc6fbbe8e6b6f4"; - }; - compilePorts = true; - - meta = { - description = ''Filesystem listener''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/tsloughter/enotify"; - }; - } - ) {}; - - enotify = enotify_0_1_0; - - ensq_0_1_6 = callPackage - ( - { buildRebar3, fetchHex, lager_2_1_1, jsxd_0_1_10, jsx_1_4_5 }: - buildRebar3 { - name = "ensq"; - version = "0.1.6"; - src = fetchHex { - pkg = "ensq"; - version = "0.1.6"; - sha256 = - "dd8c167eef061bb80384b34a81dc9a2079d42b254bd4ecbb0aa586937182a466"; - }; - - beamDeps = [ lager_2_1_1 jsxd_0_1_10 jsx_1_4_5 ]; - - meta = { - description = ''Erlang client for NSQ''; - license = stdenv.lib.licenses.cddl; - homepage = "https://github.com/project-fifo/ensq"; - }; - } - ) {}; - - ensq = ensq_0_1_6; - - env_conf_0_3_0 = callPackage - ( - { buildMix, fetchHex, earmark_0_1_19 }: - buildMix { - name = "env_conf"; - version = "0.3.0"; - src = fetchHex { - pkg = "env_conf"; - version = "0.3.0"; - sha256 = - "b1d9732ed635d2dea5bcd74a512e7274350361bc3de12080a03e985d7df3d900"; - }; - beamDeps = [ earmark_0_1_19 ]; - - meta = { - description = '' A simple 12-Factor configuration service for - Elixir. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/leakybucket/env_conf.git"; - }; - } - ) {}; - - env_conf = env_conf_0_3_0; - envy_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "envy"; version = "0.0.2"; src = fetchHex { @@ -12968,15 +7618,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/BlakeWilliams/envy"; }; - } + } // packageOverrides) ) {}; envy = envy_0_0_2; eper_0_94_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "eper"; version = "0.94.0"; src = fetchHex { @@ -12996,38 +7646,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/massemanet/eper"; }; - } + } // packageOverrides) ) {}; eper = eper_0_94_0; - epgpool_1_0_0 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "epgpool"; - version = "1.0.0"; - src = fetchHex { - pkg = "epgpool"; - version = "1.0.0"; - sha256 = - "fefcde1302722d010a71733cd2e1403ab40686343e7281221136b24d6fad5889"; - }; - - meta = { - description = ''Erlang postgresql pool application''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/egobrain/epgpool"; - }; - } - ) {}; - - epgpool = epgpool_1_0_0; - epgsql_3_1_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "epgsql"; version = "3.1.1"; src = fetchHex { @@ -13042,15 +7669,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/epgsql/epgsql"; }; - } + } // packageOverrides) ) {}; epgsql = epgsql_3_1_1; epiphany_0_1_0_dev = callPackage ( - { buildMix, fetchHex, connection_1_0_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, connection_1_0_2 }: + buildMix ({ name = "epiphany"; version = "0.1.0-dev"; src = fetchHex { @@ -13066,15 +7693,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/vptheron/epiphany"; }; - } + } // packageOverrides) ) {}; epiphany = epiphany_0_1_0_dev; episcina_1_1_0 = callPackage ( - { buildRebar3, fetchHex, gproc_0_3_1 }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex, gproc_0_3_1 }: + buildRebar3 ({ name = "episcina"; version = "1.1.0"; src = fetchHex { @@ -13090,64 +7717,15 @@ let description = ''Erlang Connection Pool''; }; - } + } // packageOverrides) ) {}; episcina = episcina_1_1_0; - eplugin_0_1_4 = callPackage - ( - { buildRebar3, fetchHex, lager_2_1_1 }: - buildRebar3 { - name = "eplugin"; - version = "0.1.4"; - src = fetchHex { - pkg = "eplugin"; - version = "0.1.4"; - sha256 = - "5103579323fb71e2c245fb5886c53e9ff4115282c09ecb5368b0ae293f0b20fe"; - }; - - beamDeps = [ lager_2_1_1 ]; - - meta = { - description = ''plugin provider for erlang''; - license = stdenv.lib.licenses.cddl; - homepage = "https://github.com/Licenser/eplugin"; - }; - } - ) {}; - - eplugin = eplugin_0_1_4; - - epubnub_0_1_0 = callPackage - ( - { buildRebar3, fetchHex, jsx_2_7_1, hackney_1_3_2 }: - buildRebar3 { - name = "epubnub"; - version = "0.1.0"; - src = fetchHex { - pkg = "epubnub"; - version = "0.1.0"; - sha256 = - "5a3b21ea035b1a7d89eeaf062da946fb17682a72fb9ae12d313677552f63fa69"; - }; - - beamDeps = [ jsx_2_7_1 hackney_1_3_2 ]; - - meta = { - description = ''Erlang PubNub API''; - - }; - } - ) {}; - - epubnub = epubnub_0_1_0; - eqc_ex_1_2_4 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "eqc_ex"; version = "1.2.4"; src = fetchHex { @@ -13162,15 +7740,15 @@ let with Elixir.''; license = stdenv.lib.licenses.bsd3; }; - } + } // packageOverrides) ) {}; eqc_ex = eqc_ex_1_2_4; eql_0_1_2 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "eql"; version = "0.1.2"; src = fetchHex { @@ -13185,15 +7763,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/artemeff/eql"; }; - } + } // packageOverrides) ) {}; eql = eql_0_1_2; equery_0_2_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "equery"; version = "0.2.0"; src = fetchHex { @@ -13208,15 +7786,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/egobrain/equery"; }; - } + } // packageOverrides) ) {}; equery = equery_0_2_0; eredis_1_0_8 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "eredis"; version = "1.0.8"; src = fetchHex { @@ -13231,41 +7809,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/wooga/eredis"; }; - } + } // packageOverrides) ) {}; eredis = eredis_1_0_8; - eredis_cluster_0_5_4 = callPackage - ( - { buildRebar3, fetchHex, poolboy_1_5_1, eredis_1_0_8 }: - buildRebar3 { - name = "eredis_cluster"; - version = "0.5.4"; - src = fetchHex { - pkg = "eredis_cluster"; - version = "0.5.4"; - sha256 = - "09320fe4fb737923e254d6d7ff4da421c1515fc74be9d2d9482ee4a576367681"; - }; - - beamDeps = [ poolboy_1_5_1 eredis_1_0_8 ]; - - meta = { - description = ''An erlang wrapper for eredis library to support - cluster mode''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/adrienmo/eredis_cluster"; - }; - } - ) {}; - - eredis_cluster = eredis_cluster_0_5_4; - erl2ex_0_0_8 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "erl2ex"; version = "0.0.8"; src = fetchHex { @@ -13282,38 +7834,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/dazuma/erl2ex"; }; - } + } // packageOverrides) ) {}; erl2ex = erl2ex_0_0_8; - erlang_dbus_0_2_0 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "erlang_dbus"; - version = "0.2.0"; - src = fetchHex { - pkg = "erlang_dbus"; - version = "0.2.0"; - sha256 = - "b00065acfae0cfea909335eab07339292a1f9a9c91b2f542d3841f86f4aac605"; - }; - - meta = { - description = ''A native erlang implementation of D-Bus''; - license = stdenv.lib.licenses.apsl20; - homepage = "https://github.com/lizenn/erlang-dbus"; - }; - } - ) {}; - - erlang_dbus = erlang_dbus_0_2_0; - erlang_localtime_1_0_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "erlang_localtime"; version = "1.0.0"; src = fetchHex { @@ -13329,40 +7858,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/choptastic/erlang_localtime"; }; - } + } // packageOverrides) ) {}; erlang_localtime = erlang_localtime_1_0_0; - erlang_lua_0_1_0 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "erlang_lua"; - version = "0.1.0"; - src = fetchHex { - pkg = "erlang_lua"; - version = "0.1.0"; - sha256 = - "4376a57f86e43ae1d687dca8b6c7c7f692b95d30091a9550636328358026e6eb"; - }; - compilePorts = true; - - meta = { - longDescription = ''Erlang-lua hex package, using Erlang`s Port - and C Node to run Lua VM as an external Node''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/rtraschke/erlang-lua"; - }; - } - ) {}; - - erlang_lua = erlang_lua_0_1_0; - erlang_term_1_5_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "erlang_term"; version = "1.5.1"; src = fetchHex { @@ -13377,15 +7881,15 @@ let 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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "erlang_version"; version = "0.2.0"; src = fetchHex { @@ -13400,41 +7904,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/sapporo-beam/erlang_version"; }; - } + } // packageOverrides) ) {}; erlang_version = erlang_version_0_2_0; - erlastic_search_1_1_1 = callPackage - ( - { buildRebar3, fetchHex, jsx_2_6_2, hackney_1_1_0 }: - buildRebar3 { - name = "erlastic_search"; - version = "1.1.1"; - src = fetchHex { - pkg = "erlastic_search"; - version = "1.1.1"; - sha256 = - "ac15a64db1397b616e1308b997d5de5372a3f67bd2bbdbf32b22d635befcc55a"; - }; - - beamDeps = [ jsx_2_6_2 hackney_1_1_0 ]; - - meta = { - description = ''An Erlang app for communicating with Elastic - Search`s rest interface.''; - license = stdenv.lib.licenses.lpgl3; - homepage = "https://github.com/tsloughter/erlastic_search"; - }; - } - ) {}; - - erlastic_search = erlastic_search_1_1_1; - erlaudio_0_2_3 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "erlaudio"; version = "0.2.3"; src = fetchHex { @@ -13449,15 +7927,21 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/asonge/erlaudio"; }; - } + } // packageOverrides) ) {}; erlaudio = erlaudio_0_2_3; erlcloud_0_13_0 = callPackage ( - { buildRebar3, fetchHex, lhttpc_1_3_0, jsx_2_8_0 }: - buildRebar3 { + { + buildRebar3, + packageOverrides ? {}, + fetchHex, + lhttpc_1_3_0, + jsx_2_8_0 + }: + buildRebar3 ({ name = "erlcloud"; version = "0.13.0"; src = fetchHex { @@ -13474,13 +7958,19 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/erlcloud/erlcloud"; }; - } + } // packageOverrides) ) {}; erlcloud_0_13_2 = callPackage ( - { buildRebar3, fetchHex, lhttpc_1_4_0, jsx_2_8_0 }: - buildRebar3 { + { + buildRebar3, + packageOverrides ? {}, + fetchHex, + lhttpc_1_4_0, + jsx_2_8_0 + }: + buildRebar3 ({ name = "erlcloud"; version = "0.13.2"; src = fetchHex { @@ -13497,61 +7987,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/erlcloud/erlcloud"; }; - } + } // packageOverrides) ) {}; erlcloud = erlcloud_0_13_2; - erlcloud_0_9_2 = callPackage - ( - { buildRebar3, fetchHex, meck_0_8_4, lhttpc_1_3_0, jsx_2_3_1 }: - buildRebar3 { - name = "erlcloud"; - version = "0.9.2"; - src = fetchHex { - pkg = "erlcloud"; - version = "0.9.2"; - sha256 = - "739ab77c3f007b3c8466e093726fb3e62b19691d70dbff4defc4beac61e48f12"; - }; - - beamDeps = [ meck_0_8_4 lhttpc_1_3_0 jsx_2_3_1 ]; - - meta = { - description = ''Erlang cloud computing library''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/erlcloud/erlcloud"; - }; - } - ) {}; - - erldn_1_0_5 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "erldn"; - version = "1.0.5"; - src = fetchHex { - pkg = "erldn"; - version = "1.0.5"; - sha256 = - "b7fdafda24884ab52dc453a18a99ad3d31fa690770d2d50f8e5bdbc3fff0f166"; - }; - - meta = { - description = ''An edn parser for the Erlang platform.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/marianoguerra/erldn"; - }; - } - ) {}; - - erldn = erldn_1_0_5; - erlexec_1_1_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "erlexec"; version = "1.1.0"; src = fetchHex { @@ -13561,43 +8005,21 @@ let "772162f0f0349f89ea11b9f27401cb437ccaabf480320284a13f2259bb63cb87"; }; compilePorts = true; + buildPlugins = [ pc ]; + meta = { description = ''OS Process Manager''; license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/saleyn/erlexec"; }; - } + } // packageOverrides) ) {}; - erlexec_1_1_1 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "erlexec"; - version = "1.1.1"; - src = fetchHex { - pkg = "erlexec"; - version = "1.1.1"; - sha256 = - "86e354558e3e2275d5d611d08c87bb66bdffa500573b1af410d117d6b6bc460b"; - }; - compilePorts = true; - - meta = { - description = ''OS Process Manager''; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/saleyn/erlexec"; - }; - } - ) {}; - - erlexec = erlexec_1_1_1; - erlogger_0_1_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "erlogger"; version = "0.1.0"; src = fetchHex { @@ -13607,20 +8029,23 @@ let "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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "erlsh"; version = "0.1.0"; src = fetchHex { @@ -13637,15 +8062,15 @@ let external programs.''; }; - } + } // packageOverrides) ) {}; erlsh = erlsh_0_1_0; erlsom_1_2_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "erlsom"; version = "1.2.1"; src = fetchHex { @@ -13659,39 +8084,15 @@ let description = ''erlsom XSD parser''; }; - } + } // packageOverrides) ) {}; erlsom = erlsom_1_2_1; - erltrace_0_1_4 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "erltrace"; - version = "0.1.4"; - src = fetchHex { - pkg = "erltrace"; - version = "0.1.4"; - sha256 = - "821452cb6d470cfe22cd1793c94c4e499957c72944a5d8781253aeb5b610acb0"; - }; - compilePorts = true; - - meta = { - description = ''erlang dtrace consumer.''; - license = stdenv.lib.licenses.cddl; - homepage = "https://github.com/project-fifo/erltrace"; - }; - } - ) {}; - - erltrace = erltrace_0_1_4; - erlware_commons_0_15_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "erlware_commons"; version = "0.15.0"; src = fetchHex { @@ -13706,13 +8107,13 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/erlware/erlware_commons"; }; - } + } // packageOverrides) ) {}; erlware_commons_0_18_0 = callPackage ( - { buildRebar3, fetchHex, cf_0_2_1 }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex, cf_0_2_1 }: + buildRebar3 ({ name = "erlware_commons"; version = "0.18.0"; src = fetchHex { @@ -13729,13 +8130,13 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/erlware/erlware_commons"; }; - } + } // packageOverrides) ) {}; erlware_commons_0_19_0 = callPackage ( - { buildRebar3, fetchHex, cf_0_2_1 }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex, cf_0_2_1 }: + buildRebar3 ({ name = "erlware_commons"; version = "0.19.0"; src = fetchHex { @@ -13752,13 +8153,13 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/erlware/erlware_commons"; }; - } + } // packageOverrides) ) {}; erlware_commons_0_20_0 = callPackage ( - { buildRebar3, fetchHex, cf_0_2_1 }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex, cf_0_2_1 }: + buildRebar3 ({ name = "erlware_commons"; version = "0.20.0"; src = fetchHex { @@ -13775,15 +8176,15 @@ let 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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "erlydtl"; version = "0.11.1"; src = fetchHex { @@ -13798,15 +8199,15 @@ let 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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "erlydtl2"; version = "0.11.1"; src = fetchHex { @@ -13821,132 +8222,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/erlydtl/erlydtl"; }; - } + } // packageOverrides) ) {}; erlydtl2 = erlydtl2_0_11_1; - erlzk_0_6_1 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "erlzk"; - version = "0.6.1"; - src = fetchHex { - pkg = "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; - - erocksdb_0_4_1 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "erocksdb"; - version = "0.4.1"; - src = fetchHex { - pkg = "erocksdb"; - version = "0.4.1"; - sha256 = - "982f25f0dcf4d1aa176ce4ec1b01b630bef601e4f8e103890fac23e0a3dc72ec"; - }; - compilePorts = true; - - meta = { - description = ''RocksDB for Erlang''; - license = stdenv.lib.licenses.apsl20; - homepage = "https://github.com/leo-project/erocksdb"; - }; - } - ) {}; - - erocksdb = erocksdb_0_4_1; - - erwatch_0_3_0 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "erwatch"; - version = "0.3.0"; - src = fetchHex { - pkg = "erwatch"; - version = "0.3.0"; - sha256 = - "0be5f4e83d762aa36ac3582efb480fb8041d06057a122c5d94a9956c4e3dbccc"; - }; - - meta = { - description = ''Erwatch is an Erlang/OTP application for tracking - changes in a file system.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/yuce/erwatch.git"; - }; - } - ) {}; - - erwatch = erwatch_0_3_0; - - es_0_0_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "es"; - version = "0.0.1"; - src = fetchHex { - pkg = "es"; - version = "0.0.1"; - sha256 = - "88a8f096177d111f82e8c05b611a3ec067abecb2612f44abb9a12eff06218d48"; - }; - - meta = { - description = ''A shell. With stuff.''; - - }; - } - ) {}; - - es = es_0_0_1; - - escalus_2_6_4 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "escalus"; - version = "2.6.4"; - src = fetchHex { - pkg = "escalus"; - version = "2.6.4"; - sha256 = - "f5227c39ddbdeb1056fd69eef1c8a80364fb8b690b98d662b126bb95f4108d66"; - }; - - meta = { - description = ''Escalus is an Erlang XMPP client library''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/esl/escalus"; - }; - } - ) {}; - - escalus = escalus_2_6_4; - esel_0_1_2 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "esel"; version = "0.1.2"; src = fetchHex { @@ -13960,116 +8244,15 @@ let description = ''An wrapper around openssl''; license = stdenv.lib.licenses.mit; }; - } + } // packageOverrides) ) {}; esel = esel_0_1_2; - esip_1_0_2 = callPackage - ( - { - buildRebar3, fetchHex, stun_1_0_1, p1_utils_1_0_3, fast_tls_1_0_1 - }: - buildRebar3 { - name = "esip"; - version = "1.0.2"; - src = fetchHex { - pkg = "esip"; - version = "1.0.2"; - sha256 = - "659b684d2573a52dfe411f20a36b704c41183b4c8206261229bfad12404d1cf7"; - }; - compilePorts = true; - beamDeps = [ stun_1_0_1 p1_utils_1_0_3 fast_tls_1_0_1 ]; - - meta = { - description = ''ProcessOne SIP server component in Erlang''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/processone/esip"; - }; - } - ) {}; - - esip = esip_1_0_2; - - espec_0_8_16 = callPackage - ( - { buildMix, fetchHex, meck_0_8_4 }: - buildMix { - name = "espec"; - version = "0.8.16"; - src = fetchHex { - pkg = "espec"; - version = "0.8.16"; - sha256 = - "f96d469838a747f60bb23a7515e4065808af31da1c0f3c50162b0dd383248a95"; - }; - beamDeps = [ meck_0_8_4 ]; - - meta = { - description = ''BDD test framework for Elixir inspired by - RSpec.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/antonmi/espec"; - }; - } - ) {}; - - espec = espec_0_8_16; - - espec_phoenix_0_2_0 = callPackage - ( - { - buildMix, fetchHex, phoenix_1_1_4, floki_0_7_2, espec_0_8_16 - }: - buildMix { - name = "espec_phoenix"; - version = "0.2.0"; - src = fetchHex { - pkg = "espec_phoenix"; - version = "0.2.0"; - sha256 = - "069e7df74370905cdce3c87144e707174c13e13c6541ecc4ac114465292bf08e"; - }; - beamDeps = [ phoenix_1_1_4 floki_0_7_2 espec_0_8_16 ]; - - meta = { - description = ''ESpec for Phoenix web framework.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/antonmi/espec_phoenix"; - }; - } - ) {}; - - espec_phoenix = espec_phoenix_0_2_0; - - esqlite_0_2_2 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "esqlite"; - version = "0.2.2"; - src = fetchHex { - pkg = "esqlite"; - version = "0.2.2"; - sha256 = - "5f15f8014baa9d31ee83817afe9164b3ecd76f77b2de7515f2cca2ca75b642e0"; - }; - - meta = { - description = ''A Sqlite3 NIF''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/mmzeeman/esqlite"; - }; - } - ) {}; - - esqlite = esqlite_0_2_2; - estree_2_3_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "estree"; version = "2.3.0"; src = fetchHex { @@ -14086,15 +8269,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/bryanjos/elixir-estree"; }; - } + } // packageOverrides) ) {}; estree = estree_2_3_0; esync_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "esync"; version = "0.0.1"; src = fetchHex { @@ -14110,39 +8293,15 @@ let homepage = "https://github.com/GrahamGoudeau21/ElixirSync"; }; - } + } // packageOverrides) ) {}; esync = esync_0_0_1; - etcd_0_0_2 = callPackage - ( - { buildMix, fetchHex, httpoison_0_8_2, exjsx_3_2_0 }: - buildMix { - name = "etcd"; - version = "0.0.2"; - src = fetchHex { - pkg = "etcd"; - version = "0.0.2"; - sha256 = - "c1b559bc37812b9ab488f90f322dc0b826c94ac9809d9044b42b4fb420710848"; - }; - beamDeps = [ httpoison_0_8_2 exjsx_3_2_0 ]; - - meta = { - description = ''Etcd APIv2 Client for Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/bearice/elixir-etcd"; - }; - } - ) {}; - - etcd = etcd_0_0_2; - ether_0_0_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "ether"; version = "0.0.1"; src = fetchHex { @@ -14157,43 +8316,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/maarek/ether"; }; - } + } // packageOverrides) ) {}; ether = ether_0_0_1; - etherchain_org_0_0_3 = callPackage - ( - { - buildMix, fetchHex, vex_0_5_5, poison_1_5_2, httpoison_0_8_2 - }: - buildMix { - name = "etherchain_org"; - version = "0.0.3"; - src = fetchHex { - pkg = "etherchain_org"; - version = "0.0.3"; - sha256 = - "45b231f1d177be098e2ddd575dd53d0b8676d676ed18c932495307e098c40880"; - }; - beamDeps = [ vex_0_5_5 poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - longDescription = ''WIP Elixir API wrapper for etherchain.org. - Provides access to ethereum blockchain data.''; - license = stdenv.lib.licenses.mit; - homepage = - "https://github.com/cyberpunk-ventures/etherchain_org_ex"; - }; - } - ) {}; - - etherchain_org = etherchain_org_0_0_3; - ets_map_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ets_map"; version = "0.0.1"; src = fetchHex { @@ -14209,15 +8340,21 @@ let 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, fetchHex, rebind_0_1_3, lineo_0_1_0 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + rebind_0_1_3, + lineo_0_1_0 + }: + buildMix ({ name = "etude"; version = "0.3.7"; src = fetchHex { @@ -14234,13 +8371,19 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/camshaft/etude"; }; - } + } // packageOverrides) ) {}; etude_1_0_0_beta_0 = callPackage ( - { buildMix, fetchHex, poison_2_1_0, nile_0_1_3 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_2_1_0, + nile_0_1_3 + }: + buildMix ({ name = "etude"; version = "1.0.0-beta.0"; src = fetchHex { @@ -14257,41 +8400,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/camshaft/etude"; }; - } + } // packageOverrides) ) {}; etude = etude_1_0_0_beta_0; - euler_0_0_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "euler"; - version = "0.0.1"; - src = fetchHex { - pkg = "euler"; - version = "0.0.1"; - sha256 = - "ab12770dd81fbb20524c751f71a31b8cc16553404665a336212d20bf351eb0fc"; - }; - - meta = { - longDescription = ''euler is a library that provides math - functions. ## Features * Working with integers: - * Greatest common divisor of two numbers (gcd) - ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/magicienap/euler"; - }; - } - ) {}; - - euler = euler_0_0_1; - eunit_formatters_0_3_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "eunit_formatters"; version = "0.3.1"; src = fetchHex { @@ -14306,15 +8423,17 @@ let 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, fetchHex, hash_ring_0_4_0 }: - buildRebar3 { + { + buildRebar3, packageOverrides ? {}, fetchHex, hash_ring_0_4_0 + }: + buildRebar3 ({ name = "evel"; version = "0.1.0"; src = fetchHex { @@ -14331,41 +8450,22 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/sile/evel"; }; - } + } // packageOverrides) ) {}; evel = evel_0_1_0; - event_source_encoder_0_0_3 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "event_source_encoder"; - version = "0.0.3"; - src = fetchHex { - pkg = "event_source_encoder"; - version = "0.0.3"; - sha256 = - "b930b7a8cf52e32913ba9bd333472253e2c100c91216c54dde043e5106d601df"; - }; - - meta = { - longDescription = ''EventSourceEncoder is a Elixir library to - encode data into EventSource compliant data. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/chatgris/event_source_encoder"; - }; - } - ) {}; - - event_source_encoder = event_source_encoder_0_0_3; - eventstore_0_2_1 = callPackage ( { - buildMix, fetchHex, postgrex_0_11_1, poolboy_1_5_1, fsm_0_2_0 + buildMix, + packageOverrides ? {}, + fetchHex, + postgrex_0_11_1, + poolboy_1_5_1, + fsm_0_2_0 }: - buildMix { + buildMix ({ name = "eventstore"; version = "0.2.1"; src = fetchHex { @@ -14381,105 +8481,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/slashdotdash/eventstore"; }; - } + } // packageOverrides) ) {}; eventstore = eventstore_0_2_1; - eventstore_client_0_1_4 = callPackage - ( - { - buildMix, fetchHex, uuid_1_1_3, poison_2_1_0, httpoison_0_8_2 - }: - buildMix { - name = "eventstore_client"; - version = "0.1.4"; - src = fetchHex { - pkg = "eventstore_client"; - version = "0.1.4"; - sha256 = - "fa77e1a7906b3ed27c0dfa0bd41f27b3129285857948aa23a3f888b0dd531109"; - }; - beamDeps = [ uuid_1_1_3 poison_2_1_0 httpoison_0_8_2 ]; - - meta = { - description = ''HTTP Client for EventStore (geteventstore.com)''; - - homepage = - "https://github.com/tbug/elixir-eventstore-http-client"; - }; - } - ) {}; - - eventstore_client = eventstore_client_0_1_4; - - everex_0_1_1 = callPackage + ewebmachine_2_0_12 = callPackage ( { buildMix, + packageOverrides ? {}, fetchHex, - plug_0_11_3, - oauther_1_0_2, - httpoison_0_7_5, + plug_1_1_3, cowboy_1_0_4 }: - buildMix { - name = "everex"; - version = "0.1.1"; - src = fetchHex { - pkg = "everex"; - version = "0.1.1"; - sha256 = - "3a85fc8d749b58c5fe87dc224cb7066cf1a45ac06d87c3661cd7a555076a901e"; - }; - beamDeps = [ - plug_0_11_3 oauther_1_0_2 httpoison_0_7_5 cowboy_1_0_4 - ]; - - meta = { - longDescription = ''Evernote API client for Elixir NOTE: Everex - is UNDER DEVELOPMENT, and is NOT ready for - production use. Feedback and contributions (via - pull requests) are very welcome, of course! - UPDATE: There is now an example showing how to - get access using the OAuth authentication - process. See `examples/oauth.exs`. ''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/jwarlander/everex"; - }; - } - ) {}; - - everex = everex_0_1_1; - - everyoneapi_0_0_1 = callPackage - ( - { buildMix, fetchHex, poison_1_3_1, httpoison_0_7_5 }: - buildMix { - name = "everyoneapi"; - version = "0.0.1"; - src = fetchHex { - pkg = "everyoneapi"; - version = "0.0.1"; - sha256 = - "8214fa434a10716f252bcbcb5660faddbc20909d1058d1b491c95132eb4b3182"; - }; - beamDeps = [ poison_1_3_1 httpoison_0_7_5 ]; - - meta = { - description = ''API Client for EveryoneAPI.com.''; - license = stdenv.lib.licenses.mit; - homepage = "http://github.com/knewter/everyoneapi"; - }; - } - ) {}; - - everyoneapi = everyoneapi_0_0_1; - - ewebmachine_2_0_12 = callPackage - ( - { buildMix, fetchHex, plug_1_1_3, cowboy_1_0_4 }: - buildMix { + buildMix ({ name = "ewebmachine"; version = "2.0.12"; src = fetchHex { @@ -14499,15 +8515,15 @@ let license = stdenv.lib.licenses.mit; homepage = "http://github.com/awetzel/ewebmachine"; }; - } + } // packageOverrides) ) {}; ewebmachine = ewebmachine_2_0_12; ex2ms_1_4_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ex2ms"; version = "1.4.0"; src = fetchHex { @@ -14523,15 +8539,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/ericmj/ex2ms"; }; - } + } // packageOverrides) ) {}; ex2ms = ex2ms_1_4_0; ex_abnf_0_2_7 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ex_abnf"; version = "0.2.7"; src = fetchHex { @@ -14551,97 +8567,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/marcelog/ex_abnf"; }; - } + } // packageOverrides) ) {}; ex_abnf = ex_abnf_0_2_7; - ex_aerospike_0_0_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "ex_aerospike"; - version = "0.0.1"; - src = fetchHex { - pkg = "ex_aerospike"; - version = "0.0.1"; - sha256 = - "3420ba4b94c25aca08106d58ce4bdc941767e588bf8092747a611e38a7b5e03f"; - }; - meta = { }; - } - ) {}; - - ex_aerospike = ex_aerospike_0_0_1; - - ex_aws_0_4_18 = callPackage - ( - { - buildMix, - fetchHex, - sweet_xml_0_6_1, - poison_1_5_2, - jsx_2_8_0, - httpotion_2_2_2, - httpoison_0_8_2 - }: - buildMix { - name = "ex_aws"; - version = "0.4.18"; - src = fetchHex { - pkg = "ex_aws"; - version = "0.4.18"; - sha256 = - "6e534b4c4b56046a52d86d62be59358418e38cdd994428a80fbdbba5cc37f075"; - }; - beamDeps = [ - sweet_xml_0_6_1 - poison_1_5_2 - jsx_2_8_0 - httpotion_2_2_2 - httpoison_0_8_2 - ]; - - meta = { - description = ''AWS client. Currently supports Dynamo, Kinesis, - Lambda, S3''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/CargoSense/ex_aws"; - }; - } - ) {}; - - ex_aws = ex_aws_0_4_18; - - ex_bitcask_0_1_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "ex_bitcask"; - version = "0.1.0"; - src = fetchHex { - pkg = "ex_bitcask"; - version = "0.1.0"; - sha256 = - "dc771229aae3c07c31a5523303f0c4dbe3c700d5025a09dfcca9cc357222c463"; - }; - - meta = { - longDescription = ''Elixir wrapper of Basho`s Bitcask Key/Value - store. Bitcask as a Log-Structured Hash Table - for Fast Key/Value Data. ''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/JonGretar/ExBitcask"; - }; - } - ) {}; - - ex_bitcask = ex_bitcask_0_1_0; - ex_brace_expansion_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ex_brace_expansion"; version = "0.0.2"; src = fetchHex { @@ -14654,44 +8588,21 @@ let 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"] ''; + 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_chimp_0_0_1 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "ex_chimp"; - version = "0.0.1"; - src = fetchHex { - pkg = "ex_chimp"; - version = "0.0.1"; - sha256 = - "1a4e97e2a4b7bf7401660acd61d7e35b9c758638c305324971eddc5bd1bb0bee"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''Basic/minimal Mailchimp API client.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/twined/ex_chimp"; - }; - } - ) {}; - - ex_chimp = ex_chimp_0_0_1; - ex_clacks_0_1_1 = callPackage ( - { buildMix, fetchHex, plug_1_1_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ name = "ex_clacks"; version = "0.1.1"; src = fetchHex { @@ -14707,133 +8618,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/polymetis/ex_clacks"; }; - } + } // packageOverrides) ) {}; ex_clacks = ex_clacks_0_1_1; - ex_closeio_0_0_12 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "ex_closeio"; - version = "0.0.12"; - src = fetchHex { - pkg = "ex_closeio"; - version = "0.0.12"; - sha256 = - "6090eaa4b699da9c242f498db0435cd45489702dc9859450cb4e26fd48288e79"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''Close.io client library for Elixir.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/taylorbrooks/ex_closeio"; - }; - } - ) {}; - - ex_closeio = ex_closeio_0_0_12; - - ex_cloudinary_0_1_2 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "ex_cloudinary"; - version = "0.1.2"; - src = fetchHex { - pkg = "ex_cloudinary"; - version = "0.1.2"; - sha256 = - "cbd90bcf8d5f9f7f2c624d2822704f693ff25716d2195281f418db4e13b553ea"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''A wrapper around the HTTPoison.Base module for - Cloudinary.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/sschneider1207/ExCloudinary"; - }; - } - ) {}; - - ex_cloudinary = ex_cloudinary_0_1_2; - - ex_conf_0_1_2 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "ex_conf"; - version = "0.1.2"; - src = fetchHex { - pkg = "ex_conf"; - version = "0.1.2"; - sha256 = - "0156e2b0d35a2ea9eeebe55e301035bfeb2187412a07d573cc1bc4a163b85de5"; - }; - - meta = { - description = ''Simple Elixir Configuration Management ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/phoenixframework/ex_conf"; - }; - } - ) {}; - - ex_conf_0_1_3 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "ex_conf"; - version = "0.1.3"; - src = fetchHex { - pkg = "ex_conf"; - version = "0.1.3"; - sha256 = - "140dfae39127354f6efa6c295ca5407a20cf2802be199ecdc77aa38e2915ca42"; - }; - - meta = { - description = ''Simple Elixir Configuration Management ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/phoenixframework/ex_conf"; - }; - } - ) {}; - - ex_conf = ex_conf_0_1_3; - - ex_crypto_0_0_1 = callPackage - ( - { buildMix, fetchHex, timex_2_1_3, poison_2_1_0, pipe_0_0_2 }: - buildMix { - name = "ex_crypto"; - version = "0.0.1"; - src = fetchHex { - pkg = "ex_crypto"; - version = "0.0.1"; - sha256 = - "f9c47326435e52154a6db97359356a44c1fe21a0d26fda24a46367ba33ccb85f"; - }; - beamDeps = [ timex_2_1_3 poison_2_1_0 pipe_0_0_2 ]; - - meta = { - longDescription = ''A wrapper around the Erlang Crypto module - with sensible defaults for common tasks.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/ntrepid8/ex_crypto"; - }; - } - ) {}; - - ex_crypto = ex_crypto_0_0_1; - ex_csv_0_1_4 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ex_csv"; version = "0.1.4"; src = fetchHex { @@ -14848,15 +8641,15 @@ let 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, fetchHex, earmark_0_1_15 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, earmark_0_1_15 }: + buildMix ({ name = "ex_doc"; version = "0.10.0"; src = fetchHex { @@ -14873,13 +8666,13 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/elixir-lang/ex_doc"; }; - } + } // packageOverrides) ) {}; ex_doc_0_11_4 = callPackage ( - { buildMix, fetchHex, earmark_0_1_15 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, earmark_0_1_15 }: + buildMix ({ name = "ex_doc"; version = "0.11.4"; src = fetchHex { @@ -14896,15 +8689,15 @@ let 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, fetchHex, earmark_0_1_15 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, earmark_0_1_15 }: + buildMix ({ name = "ex_doc"; version = "0.7.3"; src = fetchHex { @@ -14921,13 +8714,19 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/elixir-lang/ex_doc"; }; - } + } // packageOverrides) ) {}; ex_doc_dash_0_3_0 = callPackage ( - { buildMix, fetchHex, ex_doc_0_11_4, earmark_0_1_15 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + ex_doc_0_11_4, + earmark_0_1_15 + }: + buildMix ({ name = "ex_doc_dash"; version = "0.3.0"; src = fetchHex { @@ -14944,15 +8743,21 @@ let 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, fetchHex, ex_doc_0_11_4, earmark_0_1_19 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + ex_doc_0_11_4, + earmark_0_1_19 + }: + buildMix ({ name = "ex_doc_epub"; version = "0.0.2"; src = fetchHex { @@ -14969,65 +8774,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/milmazz/ex_doc_epub"; }; - } + } // packageOverrides) ) {}; ex_doc_epub = ex_doc_epub_0_0_2; - ex_dockerapi_0_0_1 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_7_5 }: - buildMix { - name = "ex_dockerapi"; - version = "0.0.1"; - src = fetchHex { - pkg = "ex_dockerapi"; - version = "0.0.1"; - sha256 = - "337481d27cb65f7d607e28f0bc129f2197c1b04fdc357446f5a07f2296b9604b"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_7_5 ]; - - meta = { - description = ''Docker API client.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/JonGretar/DockerAPI.ex"; - }; - } - ) {}; - - ex_dockerapi = ex_dockerapi_0_0_1; - - ex_edn_0_1_2 = callPackage - ( - { buildMix, fetchHex, timex_0_13_5, array_1_0_1 }: - buildMix { - name = "ex_edn"; - version = "0.1.2"; - src = fetchHex { - pkg = "ex_edn"; - version = "0.1.2"; - sha256 = - "9568e79cb96bd61f26389b96ab1ac4fee57762fba6c166ddc745c521ccf2c5ca"; - }; - beamDeps = [ timex_0_13_5 array_1_0_1 ]; - - meta = { - longDescription = ''[edn](https://github.com/edn-format/edn) - (extensible data notation) encoder/decoder - implemented in Elixir.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/jfacorro/ExEdn/"; - }; - } - ) {}; - - ex_edn = ex_edn_0_1_2; - ex_enum_0_1_0 = callPackage ( - { buildMix, fetchHex, gettext_0_10_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, gettext_0_10_0 }: + buildMix ({ name = "ex_enum"; version = "0.1.0"; src = fetchHex { @@ -15044,15 +8799,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ex_fabricators"; version = "0.1.0"; src = fetchHex { @@ -15067,15 +8822,15 @@ let homepage = "https://github.com/alterego-labs/ex_fabricators"; }; - } + } // packageOverrides) ) {}; ex_fabricators = ex_fabricators_0_1_0; ex_guard_0_10_0 = callPackage ( - { buildMix, fetchHex, fs_0_9_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, fs_0_9_2 }: + buildMix ({ name = "ex_guard"; version = "0.10.0"; src = fetchHex { @@ -15093,15 +8848,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ex_hl7"; version = "0.1.3"; src = fetchHex { @@ -15116,15 +8871,15 @@ let 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, fetchHex, timex_1_0_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, timex_1_0_2 }: + buildMix ({ name = "ex_ical"; version = "0.0.1"; src = fetchHex { @@ -15140,42 +8895,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/fazibear/ex_ical"; }; - } + } // packageOverrides) ) {}; ex_ical = ex_ical_0_0_1; - ex_iss_1_0_0 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "ex_iss"; - version = "1.0.0"; - src = fetchHex { - pkg = "ex_iss"; - version = "1.0.0"; - sha256 = - "8b2b2eebbd75593e814e712555c7f69138864317cf2f0093a82ca305138baa83"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - longDescription = ''This package is for interfacing with the Open - Notify API to information such as the ISS`s - current location, crew, and when it will pass - over a location.''; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/cryptobird/ex_iss"; - }; - } - ) {}; - - ex_iss = ex_iss_1_0_0; - ex_json_schema_0_3_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ex_json_schema"; version = "0.3.1"; src = fetchHex { @@ -15192,15 +8920,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ex_link_header"; version = "0.0.3"; src = fetchHex { @@ -15215,15 +8943,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ex_machina"; version = "0.6.1"; src = fetchHex { @@ -15239,15 +8967,15 @@ let 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, fetchHex, earmark_0_1_19 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, earmark_0_1_19 }: + buildMix ({ name = "ex_mark2pdf"; version = "0.1.0"; src = fetchHex { @@ -15263,15 +8991,15 @@ let 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, fetchHex, decimal_1_1_1 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, decimal_1_1_1 }: + buildMix ({ name = "ex_marshal"; version = "0.0.3"; src = fetchHex { @@ -15287,15 +9015,20 @@ let 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, fetchHex, ex_brace_expansion_0_0_2 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + ex_brace_expansion_0_0_2 + }: + buildMix ({ name = "ex_minimatch"; version = "0.0.1"; src = fetchHex { @@ -15315,15 +9048,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ex_modbus"; version = "0.0.3"; src = fetchHex { @@ -15338,68 +9071,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/hirschenberger/ex_modbus"; }; - } + } // packageOverrides) ) {}; ex_modbus = ex_modbus_0_0_3; - ex_omegle_0_1_1 = callPackage - ( - { buildMix, fetchHex, jsex_2_0_0, httpoison_0_8_2 }: - buildMix { - name = "ex_omegle"; - version = "0.1.1"; - src = fetchHex { - pkg = "ex_omegle"; - version = "0.1.1"; - sha256 = - "8166d1125a2670f55fce2030367d9da381e577ad122dcf1d03784e536c78cc65"; - }; - beamDeps = [ jsex_2_0_0 httpoison_0_8_2 ]; - - meta = { - description = ''A minimal Omegle chat client library for - Elixir.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/xtagon/ex_omegle"; - }; - } - ) {}; - - ex_omegle = ex_omegle_0_1_1; - - ex_orient_1_1_1 = callPackage - ( - { - buildMix, fetchHex, poolboy_1_2_1, poison_1_0_3, marco_polo_0_2_1 - }: - buildMix { - name = "ex_orient"; - version = "1.1.1"; - src = fetchHex { - pkg = "ex_orient"; - version = "1.1.1"; - sha256 = - "9cad40957987bb4aa440d798e6f7096de5136f54fe0b7bd7d0d5f67be63a7a08"; - }; - beamDeps = [ poolboy_1_2_1 poison_1_0_3 marco_polo_0_2_1 ]; - - meta = { - longDescription = ''OrientDB query builder that provides nice - syntax and connection pooling. Uses MarcoPolo - under the hood to run commands.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/Remesh/ex_orient/"; - }; - } - ) {}; - - ex_orient = ex_orient_1_1_1; - ex_parametarized_1_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ex_parametarized"; version = "1.0.0"; src = fetchHex { @@ -15414,15 +9094,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ex_parameterized"; version = "1.0.2"; src = fetchHex { @@ -15437,40 +9117,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/KazuCocoa/ex_parameterized"; }; - } + } // packageOverrides) ) {}; ex_parameterized = ex_parameterized_1_0_2; - ex_parsec_0_2_1 = callPackage - ( - { buildMix, fetchHex, monad_1_0_5 }: - buildMix { - name = "ex_parsec"; - version = "0.2.1"; - src = fetchHex { - pkg = "ex_parsec"; - version = "0.2.1"; - sha256 = - "1564d820e0b8b265a1525454aa9914edc15b6165ae74ffa31008686cbbad67da"; - }; - beamDeps = [ monad_1_0_5 ]; - - meta = { - description = ''A parser combinator library inspired by - Parsec.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/alexrp/ex_parsec"; - }; - } - ) {}; - - ex_parsec = ex_parsec_0_2_1; - ex_pool_0_1_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ex_pool"; version = "0.1.1"; src = fetchHex { @@ -15485,15 +9140,15 @@ let 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, fetchHex, poison_1_5_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }: + buildMix ({ name = "ex_prometheus_io"; version = "0.0.3"; src = fetchHex { @@ -15509,15 +9164,15 @@ let 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, fetchHex, ex2ms_1_4_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, ex2ms_1_4_0 }: + buildMix ({ name = "ex_rated"; version = "1.2.2"; src = fetchHex { @@ -15540,15 +9195,15 @@ let 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, fetchHex, ex_abnf_0_2_7 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, ex_abnf_0_2_7 }: + buildMix ({ name = "ex_rfc3966"; version = "0.2.3"; src = fetchHex { @@ -15560,21 +9215,21 @@ let beamDeps = [ ex_abnf_0_2_7 ]; meta = { - longDescription = ''A "tel" URI parser trying to be strictly + 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, fetchHex, ex_abnf_0_2_7 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, ex_abnf_0_2_7 }: + buildMix ({ name = "ex_rfc3986"; version = "0.2.6"; src = fetchHex { @@ -15592,15 +9247,21 @@ let 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, fetchHex, ex_doc_0_11_4, earmark_0_2_1 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + ex_doc_0_11_4, + earmark_0_2_1 + }: + buildMix ({ name = "ex_slp"; version = "0.1.0"; src = fetchHex { @@ -15619,15 +9280,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ex_spec"; version = "1.0.0"; src = fetchHex { @@ -15642,15 +9303,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ex_sshd"; version = "0.0.1"; src = fetchHex { @@ -15666,15 +9327,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ex_statsd"; version = "0.5.3"; src = fetchHex { @@ -15689,15 +9350,15 @@ let 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, fetchHex, connection_1_0_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, connection_1_0_2 }: + buildMix ({ name = "ex_sync"; version = "0.0.2"; src = fetchHex { @@ -15715,15 +9376,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ex_test"; version = "0.0.2"; src = fetchHex { @@ -15739,7 +9400,7 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/mcb/ex_test"; }; - } + } // packageOverrides) ) {}; ex_test = ex_test_0_0_2; @@ -15747,9 +9408,14 @@ let ex_twilio_0_1_4 = callPackage ( { - buildMix, fetchHex, poison_1_5_2, inflex_1_5_0, httpotion_2_2_2 + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_5_2, + inflex_1_5_0, + httpotion_2_2_2 }: - buildMix { + buildMix ({ name = "ex_twilio"; version = "0.1.4"; src = fetchHex { @@ -15765,15 +9431,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ex_twiml"; version = "2.1.0"; src = fetchHex { @@ -15788,38 +9454,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/danielberkompas/ex_twiml"; }; - } + } // packageOverrides) ) {}; ex_twiml = ex_twiml_2_1_0; - ex_unit_emacs_0_1_2 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "ex_unit_emacs"; - version = "0.1.2"; - src = fetchHex { - pkg = "ex_unit_emacs"; - version = "0.1.2"; - sha256 = - "f22a3c987b39b2ebedd9652a2fab07d7efd43baf376d9854398095bd220bd462"; - }; - - meta = { - description = ''Emacs integration for ExUnit''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/bruce/ex_unit_emacs"; - }; - } - ) {}; - - ex_unit_emacs = ex_unit_emacs_0_1_2; - ex_unit_fixtures_0_3_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ex_unit_fixtures"; version = "0.3.1"; src = fetchHex { @@ -15835,15 +9478,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ex_unit_notifier"; version = "0.1.0"; src = fetchHex { @@ -15854,19 +9497,25 @@ let }; meta = { - description = ''Desktop notifications for ExUnit''; + 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, fetchHex, poison_2_1_0, httpotion_2_2_2 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_2_1_0, + httpotion_2_2_2 + }: + buildMix ({ name = "ex_victor_ops"; version = "0.2.1"; src = fetchHex { @@ -15882,15 +9531,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ex_vmstats"; version = "0.0.1"; src = fetchHex { @@ -15906,15 +9555,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exactor"; version = "2.2.0"; src = fetchHex { @@ -15930,15 +9579,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/sasa1977/exactor"; }; - } + } // packageOverrides) ) {}; exactor = exactor_2_2_0; exalgebra_0_0_4 = callPackage ( - { buildMix, fetchHex, eye_drops_1_0_1 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, eye_drops_1_0_1 }: + buildMix ({ name = "exalgebra"; version = "0.0.4"; src = fetchHex { @@ -15950,51 +9599,21 @@ let beamDeps = [ eye_drops_1_0_1 ]; meta = { - longDescription = ''This library collects a host of common - functions that can be used in linear algebraic - computations.''; + 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; - exalice_0_0_5_alpha = callPackage - ( - { - buildMix, - fetchHex, - tirexs_0_8_0_beta5, - poison_2_1_0, - httpoison_0_8_2 - }: - buildMix { - name = "exalice"; - version = "0.0.5-alpha"; - src = fetchHex { - pkg = "exalice"; - version = "0.0.5-alpha"; - sha256 = - "205bc2a86dce72fbcfb8cd30ecb4efebcdcff3d5f0c22c176db5bf4530b2820a"; - }; - beamDeps = [ tirexs_0_8_0_beta5 poison_2_1_0 httpoison_0_8_2 ]; - - meta = { - description = ''ExAlice, a geocoder with swappable storage''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/kpanic/exalice"; - }; - } - ) {}; - - exalice = exalice_0_0_5_alpha; - example_files_0_2_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "example_files"; version = "0.2.0"; src = fetchHex { @@ -16016,38 +9635,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/njonsson/example_files"; }; - } + } // packageOverrides) ) {}; example_files = example_files_0_2_0; - exauth_0_0_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "exauth"; - version = "0.0.1"; - src = fetchHex { - pkg = "exauth"; - version = "0.0.1"; - sha256 = - "40a6bbea6f6b2d524cc4a4107aa9a6a5dc725171968ce8b4aa43599f8835d3cc"; - }; - - meta = { - description = ''Wrapper for erlang-oauth''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/mschae/exauth"; - }; - } - ) {}; - - exauth = exauth_0_0_1; - exbackoff_0_0_3 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exbackoff"; version = "0.0.3"; src = fetchHex { @@ -16062,15 +9658,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/mingchuno/exbackoff"; }; - } + } // packageOverrides) ) {}; exbackoff = exbackoff_0_0_3; exbouncer_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exbouncer"; version = "0.0.1"; src = fetchHex { @@ -16088,15 +9684,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/vysakh0/exbouncer"; }; - } + } // packageOverrides) ) {}; exbouncer = exbouncer_0_0_1; excaliper_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "excaliper"; version = "0.0.1"; src = fetchHex { @@ -16112,15 +9708,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/mgartner/excaliper"; }; - } + } // packageOverrides) ) {}; excaliper = excaliper_0_0_1; excellent_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "excellent"; version = "0.0.1"; src = fetchHex { @@ -16136,39 +9732,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/leifg/excellent"; }; - } + } // packageOverrides) ) {}; excellent = excellent_0_0_1; - excheck_0_3_3 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "excheck"; - version = "0.3.3"; - src = fetchHex { - pkg = "excheck"; - version = "0.3.3"; - sha256 = - "3a3b9c163a1b0152df8f6b8fa019d4980d77e36dbe3c7ed3d508ef066ee9f870"; - }; - - meta = { - description = ''Property-based testing library for Elixir - (QuickCheck style).''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/parroty/excheck"; - }; - } - ) {}; - - excheck = excheck_0_3_3; - excoap_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "excoap"; version = "0.0.1"; src = fetchHex { @@ -16183,15 +9755,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/mbialon/excoap"; }; - } + } // packageOverrides) ) {}; excoap = excoap_0_0_1; exconstructor_1_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exconstructor"; version = "1.0.2"; src = fetchHex { @@ -16210,65 +9782,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/appcues/exconstructor"; }; - } + } // packageOverrides) ) {}; exconstructor = exconstructor_1_0_2; - excountries_0_0_3 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_7_5 }: - buildMix { - name = "excountries"; - version = "0.0.3"; - src = fetchHex { - pkg = "excountries"; - version = "0.0.3"; - sha256 = - "ec0bbb4147b54817e7d17a7ed91e1b88046769a26020c591ed5fde336b4fb8d3"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_7_5 ]; - - meta = { - description = ''Elixir wrapper for REST Countries API - (http://restcountries.eu/)''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/fteem/excountries"; - }; - } - ) {}; - - excountries = excountries_0_0_3; - - excoveralls_0_5_1 = callPackage - ( - { buildMix, fetchHex, hackney_1_6_0, exjsx_3_2_0 }: - buildMix { - name = "excoveralls"; - version = "0.5.1"; - src = fetchHex { - pkg = "excoveralls"; - version = "0.5.1"; - sha256 = - "26c8bb6dadc8436c1e0155f50327e90c91d6efab88468c09ac10f12be7070324"; - }; - beamDeps = [ hackney_1_6_0 exjsx_3_2_0 ]; - - meta = { - description = ''Coverage report tool for Elixir with coveralls.io - integration.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/parroty/excoveralls"; - }; - } - ) {}; - - excoveralls = excoveralls_0_5_1; - exdatauri_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exdatauri"; version = "0.1.0"; src = fetchHex { @@ -16283,64 +9805,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/flupke/exdatauri"; }; - } + } // packageOverrides) ) {}; exdatauri = exdatauri_0_1_0; - exddb_0_1_3 = callPackage - ( - { buildMix, fetchHex, erlcloud_0_9_2 }: - buildMix { - name = "exddb"; - version = "0.1.3"; - src = fetchHex { - pkg = "exddb"; - version = "0.1.3"; - sha256 = - "e57bd285110585476a457a843fdcff3cce6923c9472b6bec95ac9bf986dd27e4"; - }; - beamDeps = [ erlcloud_0_9_2 ]; - - meta = { - description = ''Simple library for working with data in - DynamoDB.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/muhmi/exddb"; - }; - } - ) {}; - - exddb = exddb_0_1_3; - - exdesk_0_2_0 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "exdesk"; - version = "0.2.0"; - src = fetchHex { - pkg = "exdesk"; - version = "0.2.0"; - sha256 = - "0c1e02bb4aef9075ff4affb3354c0e318dc3be1817faae8b450ef590c7d67688"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''Desk.com client library for elixir.''; - - homepage = "https://github.com/deadkarma/exdesk"; - }; - } - ) {}; - - exdesk = exdesk_0_2_0; - exdisque_0_0_1 = callPackage ( - { buildRebar3, fetchHex, eredis_1_0_8 }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex, eredis_1_0_8 }: + buildRebar3 ({ name = "exdisque"; version = "0.0.1"; src = fetchHex { @@ -16358,53 +9831,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/mosic/exdisque"; }; - } + } // packageOverrides) ) {}; exdisque = exdisque_0_0_1; - exdjango_0_3_1 = callPackage - ( - { - buildMix, - fetchHex, - redix_0_3_6, - poolboy_1_5_1, - poison_1_0_3, - plug_1_1_3, - comeonin_2_3_0 - }: - buildMix { - name = "exdjango"; - version = "0.3.1"; - src = fetchHex { - pkg = "exdjango"; - version = "0.3.1"; - sha256 = - "ae7bb57e696d7e4ca5d05cac85afd67ccce611594f33a98c06a4922bdd44d6d6"; - }; - beamDeps = [ - redix_0_3_6 - poolboy_1_5_1 - poison_1_0_3 - plug_1_1_3 - comeonin_2_3_0 - ]; - - meta = { - description = ''An elixir library for working with django''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/nicksanders/exdjango"; - }; - } - ) {}; - - exdjango = exdjango_0_3_1; - exdm_0_0_4 = callPackage ( - { buildMix, fetchHex, exrm_0_19_9 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, exrm_0_19_9 }: + buildMix ({ name = "exdm"; version = "0.0.4"; src = fetchHex { @@ -16420,65 +9855,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/joeyates/exdm"; }; - } + } // packageOverrides) ) {}; exdm = exdm_0_0_4; - exdn_2_1_2 = callPackage - ( - { buildMix, fetchHex, erldn_1_0_5, calendar_0_12_4 }: - buildMix { - name = "exdn"; - version = "2.1.2"; - src = fetchHex { - pkg = "exdn"; - version = "2.1.2"; - sha256 = - "a4414d397ccf0c86413ad18d307879f5c6c19183b430276cfb31a026dda1350c"; - }; - beamDeps = [ erldn_1_0_5 calendar_0_12_4 ]; - - meta = { - longDescription = ''a two-way translator between Elixir data - structures and strings of data following the edn - specification.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/psfblair/exdn"; - }; - } - ) {}; - - exdn = exdn_2_1_2; - - exdweet_0_0_1 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_7_5 }: - buildMix { - name = "exdweet"; - version = "0.0.1"; - src = fetchHex { - pkg = "exdweet"; - version = "0.0.1"; - sha256 = - "2b263d5d73c7af5bd824a02b56df671a609698a96ea78cb0660dbd753118f376"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_7_5 ]; - - meta = { - description = ''Elixir/Erlang Client for Dweet''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/amit-saxena/exdweet"; - }; - } - ) {}; - - exdweet = exdweet_0_0_1; - exec_1_0_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "exec"; version = "1.0.1"; src = fetchHex { @@ -16488,21 +9873,23 @@ let "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, fetchHex, poison_1_5_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }: + buildMix ({ name = "execjs"; version = "1.1.3"; src = fetchHex { @@ -16518,15 +9905,15 @@ let license = stdenv.lib.licenses.unlicense; homepage = "https://github.com/devinus/execjs"; }; - } + } // packageOverrides) ) {}; execjs = execjs_1_1_3; exelli_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exelli"; version = "0.1.0"; src = fetchHex { @@ -16543,40 +9930,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/pigmej/exelli"; }; - } + } // packageOverrides) ) {}; exelli = exelli_0_1_0; - exeque_0_1_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "exeque"; - version = "0.1.0"; - src = fetchHex { - pkg = "exeque"; - version = "0.1.0"; - sha256 = - "d860208c3a651c97cacd95e842e4dceffc84f518026c5737e93b46444f000dfa"; - }; - - meta = { - longDescription = ''Exeque allows you to queue up a list of - functions and specify how many workers should be - used to run those functions. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/duff/exeque"; - }; - } - ) {}; - - exeque = exeque_0_1_0; - exexif_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exexif"; version = "0.0.1"; src = fetchHex { @@ -16597,9 +9959,9 @@ let 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 + 72 iex> info.model \"DSC-RX100M2\" 3. The exif data is in there, too. iex> - info.exif.color_space "sRGB" iex> info.exif |> + info.exif.color_space \"sRGB\" iex> info.exif |> Dict.keys [:brightness_value, :color_space, :component_configuration, :compressed_bits_per_pixel, :contrast, @@ -16619,177 +9981,21 @@ let license = stdenv.lib.licenses.free; homepage = "https://github.com/pragdave/exexif"; }; - } + } // packageOverrides) ) {}; exexif = exexif_0_0_1; - exfavicon_0_3_2 = callPackage - ( - { buildMix, fetchHex, httpoison_0_8_2, floki_0_8_0 }: - buildMix { - name = "exfavicon"; - version = "0.3.2"; - src = fetchHex { - pkg = "exfavicon"; - version = "0.3.2"; - sha256 = - "95503035ea2b6768c7d3fb8af9769830b9933b2579c7fdcfdd6b775e830213c2"; - }; - beamDeps = [ httpoison_0_8_2 floki_0_8_0 ]; - - meta = { - description = ''A exfavicon to detect a site`s favicon.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/ikeikeikeike/exfavicon"; - }; - } - ) {}; - - exfavicon = exfavicon_0_3_2; - - exfile_0_1_5 = callPackage - ( - { - buildMix, - fetchHex, - plug_1_0_3, - phoenix_html_2_5_1, - ecto_2_0_0_beta_2 - }: - buildMix { - name = "exfile"; - version = "0.1.5"; - src = fetchHex { - pkg = "exfile"; - version = "0.1.5"; - sha256 = - "b2aee601b1db3ef5a8c5c638da287ec59153a21fb3b8bdbe0bd404d1e20696a1"; - }; - beamDeps = [ plug_1_0_3 phoenix_html_2_5_1 ecto_2_0_0_beta_2 ]; - - meta = { - longDescription = ''File upload handling in Elixir and Plug. - Supports pluggable processors and storage - backends.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/keichan34/exfile"; - }; - } - ) {}; - - exfile_0_2_0 = callPackage - ( - { - buildMix, - fetchHex, - plug_1_0_3, - phoenix_html_2_5_1, - ecto_2_0_0_beta_2 - }: - buildMix { - name = "exfile"; - version = "0.2.0"; - src = fetchHex { - pkg = "exfile"; - version = "0.2.0"; - sha256 = - "f5977fbb7037e17d93224abec4e46dde7b60a6ce8e37654167c9abfbeacaf274"; - }; - beamDeps = [ plug_1_0_3 phoenix_html_2_5_1 ecto_2_0_0_beta_2 ]; - - meta = { - longDescription = ''File upload handling in Elixir and Plug. - Supports pluggable processors and storage - backends.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/keichan34/exfile"; - }; - } - ) {}; - - exfile = exfile_0_2_0; - - exfile_b2_0_1_3 = callPackage - ( - { - buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2, exfile_0_2_0 - }: - buildMix { - name = "exfile_b2"; - version = "0.1.3"; - src = fetchHex { - pkg = "exfile_b2"; - version = "0.1.3"; - sha256 = - "f73e1d45279e9d279f2d8cb112a2d7e791ff0b129eea69252c22a6fc180a5106"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 exfile_0_2_0 ]; - - meta = { - description = ''A Backblaze B2 storage backend adapter for - Exfile.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/keichan34/exfile-b2"; - }; - } - ) {}; - - exfile_b2 = exfile_b2_0_1_3; - - exfile_imagemagick_0_1_1 = callPackage - ( - { buildMix, fetchHex, exfile_0_2_0 }: - buildMix { - name = "exfile_imagemagick"; - version = "0.1.1"; - src = fetchHex { - pkg = "exfile_imagemagick"; - version = "0.1.1"; - sha256 = - "be501b021d1d4a3603dbc6ed2223a81817ffb39bd51e0ee2a5314bd07f132695"; - }; - beamDeps = [ exfile_0_2_0 ]; - - meta = { - description = ''An ImageMagick file processor suite for - Exfile.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/keichan34/exfile-imagemagick"; - }; - } - ) {}; - - exfile_imagemagick = exfile_imagemagick_0_1_1; - - exfile_memory_0_1_0 = callPackage - ( - { buildMix, fetchHex, exfile_0_1_5 }: - buildMix { - name = "exfile_memory"; - version = "0.1.0"; - src = fetchHex { - pkg = "exfile_memory"; - version = "0.1.0"; - sha256 = - "66330c408a73094d115227d0e16b936229721e16703197559a828bfb7795f9d7"; - }; - beamDeps = [ exfile_0_1_5 ]; - - meta = { - description = ''In-memory (ets) storage backend for Exfile.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/keichan34/exfile-memory"; - }; - } - ) {}; - - exfile_memory = exfile_memory_0_1_0; - exfirebase_0_4_0 = callPackage ( - { buildMix, fetchHex, httpotion_2_2_2, exjsx_3_2_0 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + httpotion_2_2_2, + exjsx_3_2_0 + }: + buildMix ({ name = "exfirebase"; version = "0.4.0"; src = fetchHex { @@ -16806,39 +10012,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/parroty/exfirebase"; }; - } + } // packageOverrides) ) {}; exfirebase = exfirebase_0_4_0; - exfoaas_0_0_2 = callPackage - ( - { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: - buildMix { - name = "exfoaas"; - version = "0.0.2"; - src = fetchHex { - pkg = "exfoaas"; - version = "0.0.2"; - sha256 = - "521f355f8c38c056f66cd8ac236f561c2a3502e451c07a88761e05c22c8848aa"; - }; - beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; - - meta = { - description = ''brings the utility of FOAAS to elixir.''; - license = stdenv.lib.licenses.wtfpl; - homepage = "https://github.com/cryptobird/ExFOAAS.git"; - }; - } - ) {}; - - exfoaas = exfoaas_0_0_2; - exfsm_0_1_3 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exfsm"; version = "0.1.3"; src = fetchHex { @@ -16855,15 +10037,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/awetzel/exfsm"; }; - } + } // packageOverrides) ) {}; exfsm = exfsm_0_1_3; exfswatch_0_1_1 = callPackage ( - { buildMix, fetchHex, fs_0_9_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, fs_0_9_2 }: + buildMix ({ name = "exfswatch"; version = "0.1.1"; src = fetchHex { @@ -16880,15 +10062,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/falood/exfswatch"; }; - } + } // packageOverrides) ) {}; exfswatch = exfswatch_0_1_1; exfuck_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exfuck"; version = "0.1.0"; src = fetchHex { @@ -16903,61 +10085,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/shiroyasha/exfuck"; }; - } + } // packageOverrides) ) {}; exfuck = exfuck_0_1_0; - exgenius_0_0_5 = callPackage - ( - { buildMix, fetchHex, httpoison_0_8_2, exjsx_3_2_0 }: - buildMix { - name = "exgenius"; - version = "0.0.5"; - src = fetchHex { - pkg = "exgenius"; - version = "0.0.5"; - sha256 = - "f0f4463ac9ad79a102a1bf0ded91d77ed87ce262da6045990be51450ef240fd5"; - }; - beamDeps = [ httpoison_0_8_2 exjsx_3_2_0 ]; - - meta = { - longDescription = '' Elixir library for the (undocumented) Rap - Genius (and also Rock, Tech, Pop, Country, etc) - API ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/jeffweiss/exgenius"; - }; - } - ) {}; - - exgenius = exgenius_0_0_5; - - exgpg_0_0_3 = callPackage - ( - { buildMix, fetchHex, uuid_1_0_0, porcelain_2_0_1 }: - buildMix { - name = "exgpg"; - version = "0.0.3"; - src = fetchHex { - pkg = "exgpg"; - version = "0.0.3"; - sha256 = - "13499da2a59567f87f5293cc874ab1256e88089784645d997406d8f95978319a"; - }; - beamDeps = [ uuid_1_0_0 porcelain_2_0_1 ]; - - meta = { }; - } - ) {}; - - exgpg = exgpg_0_0_3; - exgravatar_2_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exgravatar"; version = "2.0.0"; src = fetchHex { @@ -16972,70 +10108,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/scrogson/exgravatar"; }; - } + } // packageOverrides) ) {}; exgravatar = exgravatar_2_0_0; - exgrid_0_3_0 = callPackage - ( - { - buildMix, fetchHex, timex_0_13_5, json_0_3_3, httpotion_2_2_2 - }: - buildMix { - name = "exgrid"; - version = "0.3.0"; - src = fetchHex { - pkg = "exgrid"; - version = "0.3.0"; - sha256 = - "96676dfc20b2e8c7caf5f68c202eada246f192d3246922be7214a0da0d219506"; - }; - beamDeps = [ timex_0_13_5 json_0_3_3 httpotion_2_2_2 ]; - - meta = { - description = ''Elixir bindings for SendGrid`s REST API''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/bradleyd/exgrid"; - }; - } - ) {}; - - exgrid = exgrid_0_3_0; - - exhal_4_2_1 = callPackage - ( - { - buildMix, - fetchHex, - uri_template_1_2_0, - poison_2_1_0, - httpoison_0_8_2 - }: - buildMix { - name = "exhal"; - version = "4.2.1"; - src = fetchHex { - pkg = "exhal"; - version = "4.2.1"; - sha256 = - "5696572795d659441412e55600a3593d5d57828e0a3efcdc2c7985f9cdbe81a0"; - }; - beamDeps = [ uri_template_1_2_0 poison_2_1_0 httpoison_0_8_2 ]; - - meta = { - description = ''Use HAL APIs with ease''; - license = stdenv.lib.licenses.free; - }; - } - ) {}; - - exhal = exhal_4_2_1; - exhcl_0_2_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exhcl"; version = "0.2.1"; src = fetchHex { @@ -17050,15 +10131,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/asakura/exhcl"; }; - } + } // packageOverrides) ) {}; exhcl = exhcl_0_2_1; exiban_0_0_4 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exiban"; version = "0.0.4"; src = fetchHex { @@ -17074,39 +10155,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/kkempin/exiban"; }; - } + } // packageOverrides) ) {}; exiban = exiban_0_0_4; - exintercom_0_1_6 = callPackage - ( - { buildMix, fetchHex, poison_1_0_3, httpoison_0_8_2 }: - buildMix { - name = "exintercom"; - version = "0.1.6"; - src = fetchHex { - pkg = "exintercom"; - version = "0.1.6"; - sha256 = - "3e4e112dc29a36244b490bb6fb40c861be12e70a7723323520430059c3ffeb51"; - }; - beamDeps = [ poison_1_0_3 httpoison_0_8_2 ]; - - meta = { - description = ''Intercom client library.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/versality/exintercom"; - }; - } - ) {}; - - exintercom = exintercom_0_1_6; - exirc_0_10_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exirc"; version = "0.10.0"; src = fetchHex { @@ -17121,70 +10178,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/bitwalker/exirc"; }; - } + } // packageOverrides) ) {}; exirc = exirc_0_10_0; - exjira_0_0_1 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, dotenv_0_0_4 }: - buildMix { - name = "exjira"; - version = "0.0.1"; - src = fetchHex { - pkg = "exjira"; - version = "0.0.1"; - sha256 = - "da992f593939629300ddf90c0aafbcafb05c4c7e5f817c3a76dd7c0ac43f8575"; - }; - beamDeps = [ poison_1_5_2 dotenv_0_0_4 ]; - - meta = { - description = ''JIRA client library for Elixir ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/mattweldon/exjira"; - }; - } - ) {}; - - exjira = exjira_0_0_1; - - exjprop_0_0_5 = callPackage - ( - { - buildMix, - fetchHex, - sweet_xml_0_6_1, - httpoison_0_8_2, - ex_aws_0_4_18 - }: - buildMix { - name = "exjprop"; - version = "0.0.5"; - src = fetchHex { - pkg = "exjprop"; - version = "0.0.5"; - sha256 = - "9fcc1e2e3e12f9f49b1b42cb97df917b5021933d962370dbe67557718a5adee0"; - }; - beamDeps = [ sweet_xml_0_6_1 httpoison_0_8_2 ex_aws_0_4_18 ]; - - meta = { - description = ''Elixir library for reading Java properties files - from various sources''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/stocks29/exjprop.git"; - }; - } - ) {}; - - exjprop = exjprop_0_0_5; - exjson_0_5_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exjson"; version = "0.5.0"; src = fetchHex { @@ -17200,15 +10202,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/guedes/exjson"; }; - } + } // packageOverrides) ) {}; exjson = exjson_0_5_0; exjsx_3_0_2 = callPackage ( - { buildMix, fetchHex, jsx_2_3_1 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, jsx_2_3_1 }: + buildMix ({ name = "exjsx"; version = "3.0.2"; src = fetchHex { @@ -17224,13 +10226,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/talentdeficit/exjsx"; }; - } + } // packageOverrides) ) {}; exjsx_3_1_0 = callPackage ( - { buildMix, fetchHex, jsx_2_4_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, jsx_2_4_0 }: + buildMix ({ name = "exjsx"; version = "3.1.0"; src = fetchHex { @@ -17246,13 +10248,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/talentdeficit/exjsx"; }; - } + } // packageOverrides) ) {}; exjsx_3_2_0 = callPackage ( - { buildMix, fetchHex, jsx_2_6_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, jsx_2_6_2 }: + buildMix ({ name = "exjsx"; version = "3.2.0"; src = fetchHex { @@ -17268,53 +10270,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/talentdeficit/exjsx"; }; - } + } // packageOverrides) ) {}; exjsx = exjsx_3_2_0; - exkad_0_0_2 = callPackage - ( - { - buildMix, - fetchHex, - socket_0_2_8, - poison_1_2_1, - plug_0_8_4, - httpotion_2_2_2, - cowboy_1_0_4 - }: - buildMix { - name = "exkad"; - version = "0.0.2"; - src = fetchHex { - pkg = "exkad"; - version = "0.0.2"; - sha256 = - "b12f4e48ed460521ae3b79895d1e8c43ed24df54260e5519e58708ff76468afb"; - }; - beamDeps = [ - socket_0_2_8 - poison_1_2_1 - plug_0_8_4 - httpotion_2_2_2 - cowboy_1_0_4 - ]; - - meta = { - description = ''A simple kademlia implementation''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/rozap/exkad"; - }; - } - ) {}; - - exkad = exkad_0_0_2; - exkanji_0_2_6 = callPackage ( - { buildMix, fetchHex, exromaji_0_3_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, exromaji_0_3_0 }: + buildMix ({ name = "exkanji"; version = "0.2.6"; src = fetchHex { @@ -17332,40 +10296,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/ikeikeikeike/exkanji"; }; - } + } // packageOverrides) ) {}; exkanji = exkanji_0_2_6; - exkismet_0_0_2 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "exkismet"; - version = "0.0.2"; - src = fetchHex { - pkg = "exkismet"; - version = "0.0.2"; - sha256 = - "3648f010eb80891b0195f9ced0e02a5a08860a9d96e8f7bbe328c68f27b85b64"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''A client (completely unofficial) for the - Akismet.com comment-spam detection API.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/cameronp/exkismet"; - }; - } - ) {}; - - exkismet = exkismet_0_0_2; - exldap_0_1_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exldap"; version = "0.1.1"; src = fetchHex { @@ -17380,15 +10319,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/jmerriweather/exldap"; }; - } + } // packageOverrides) ) {}; exldap = exldap_0_1_1; exleveldb_0_7_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exleveldb"; version = "0.7.0"; src = fetchHex { @@ -17419,15 +10358,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/skovsgaard/exleveldb.git"; }; - } + } // packageOverrides) ) {}; exleveldb = exleveldb_0_7_0; exlibris_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exlibris"; version = "0.0.1"; src = fetchHex { @@ -17449,15 +10388,15 @@ let license = stdenv.lib.licenses.free; homepage = "https://github.com/pragdave/exlibris"; }; - } + } // packageOverrides) ) {}; exlibris = exlibris_0_0_1; exlingr_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exlingr"; version = "0.0.1"; src = fetchHex { @@ -17472,15 +10411,15 @@ let license = stdenv.lib.licenses.wtfpl; homepage = "https://github.com/mtwtkman/exlingr"; }; - } + } // packageOverrides) ) {}; exlingr = exlingr_0_0_1; exmatrix_0_0_1 = callPackage ( - { buildMix, fetchHex, benchfella_0_3_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, benchfella_0_3_2 }: + buildMix ({ name = "exmatrix"; version = "0.0.1"; src = fetchHex { @@ -17498,15 +10437,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/a115/exmatrix"; }; - } + } // packageOverrides) ) {}; exmatrix = exmatrix_0_0_1; exmerl_0_1_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exmerl"; version = "0.1.1"; src = fetchHex { @@ -17522,15 +10461,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/pwoolcoc/exmerl"; }; - } + } // packageOverrides) ) {}; exmerl = exmerl_0_1_1; exmetrics_1_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exmetrics"; version = "1.1.0"; src = fetchHex { @@ -17546,15 +10485,15 @@ let application.''; license = stdenv.lib.licenses.mit; }; - } + } // packageOverrides) ) {}; exmetrics = exmetrics_1_1_0; exml_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exml"; version = "0.1.0"; src = fetchHex { @@ -17568,15 +10507,15 @@ let description = ''Most simple Elixir wrapper for xmerl xpath''; }; - } + } // packageOverrides) ) {}; exml = exml_0_1_0; exmoji_0_2_2 = callPackage ( - { buildMix, fetchHex, poison_1_5_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }: + buildMix ({ name = "exmoji"; version = "0.2.2"; src = fetchHex { @@ -17593,7 +10532,7 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/mroth/exmoji"; }; - } + } // packageOverrides) ) {}; exmoji = exmoji_0_2_2; @@ -17602,13 +10541,14 @@ let ( { buildMix, + packageOverrides ? {}, fetchHex, uuid_1_1_3, poolboy_1_5_1, poison_1_5_2, msgpax_0_8_2 }: - buildMix { + buildMix ({ name = "exns"; version = "0.3.2-beta"; src = fetchHex { @@ -17626,15 +10566,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/walkr/exns"; }; - } + } // packageOverrides) ) {}; exns = exns_0_3_2_beta; exnumerable_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exnumerable"; version = "0.0.1"; src = fetchHex { @@ -17650,15 +10590,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/KamilLelonek/exnumerable"; }; - } + } // packageOverrides) ) {}; exnumerable = exnumerable_0_0_1; exnumerator_1_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exnumerator"; version = "1.0.0"; src = fetchHex { @@ -17674,15 +10614,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/KamilLelonek/exnumerator"; }; - } + } // packageOverrides) ) {}; exnumerator = exnumerator_1_0_0; exnumterator_1_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exnumterator"; version = "1.0.0"; src = fetchHex { @@ -17698,15 +10638,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/KamilLelonek/exnumterator"; }; - } + } // packageOverrides) ) {}; exnumterator = exnumterator_1_0_0; exoddic_1_3_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exoddic"; version = "1.3.1"; src = fetchHex { @@ -17721,79 +10661,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/mwmiller/exoddic"; }; - } + } // packageOverrides) ) {}; exoddic = exoddic_1_3_1; - exometer_core_1_0_0 = callPackage - ( - { - buildRebar3, - fetchHex, - setup_1_7_0, - parse_trans_2_9_0, - lager_3_0_2, - folsom_0_8_3 - }: - buildRebar3 { - name = "exometer_core"; - version = "1.0.0"; - src = fetchHex { - pkg = "exometer_core"; - version = "1.0.0"; - sha256 = - "6fe43b22439dd89b7b307214cf18084d26fd82e024d8855bdecccf923f93d852"; - }; - - beamDeps = [ - setup_1_7_0 parse_trans_2_9_0 lager_3_0_2 folsom_0_8_3 - ]; - - meta = { - description = ''Code instrumentation and metrics collection - package.''; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/basho/exometer_core"; - }; - } - ) {}; - - exometer_core = exometer_core_1_0_0; - - exos_1_0_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "exos"; - version = "1.0.0"; - src = fetchHex { - pkg = "exos"; - version = "1.0.0"; - sha256 = - "3659fca730360d11d90db8ccb0206e978c838af48bc46ac096d47ea807b9d324"; - }; - - meta = { - longDescription = ''Create a GenServer in any language. Exos - contains a very simple GenServer which proxy - calls and casts to a given port command, - encoding and decoding the message to the port - using erlang external binary term format. (see - related projects : clojure|python|node_erlastic - on https://github.com/awetzel) ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/awetzel/exos"; - }; - } - ) {}; - - exos = exos_1_0_0; - expand_0_0_3 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "expand"; version = "0.0.3"; src = fetchHex { @@ -17808,71 +10684,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/joeyates/expand"; }; - } + } // packageOverrides) ) {}; expand = expand_0_0_3; - exparticle_0_0_2 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "exparticle"; - version = "0.0.2"; - src = fetchHex { - pkg = "exparticle"; - version = "0.0.2"; - sha256 = - "ce70b77da48e84307791af00143ad4b9677d39765459865976d459d3b1bdcaf2"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''ExParticle is an elixir client to communicate - with Particle Cloud API''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/mtanzi/exparticle"; - }; - } - ) {}; - - exparticle = exparticle_0_0_2; - - expcap_0_1_0 = callPackage - ( - { buildMix, fetchHex, timex_0_13_5 }: - buildMix { - name = "expcap"; - version = "0.1.0"; - src = fetchHex { - pkg = "expcap"; - version = "0.1.0"; - sha256 = - "d9d62f7cb7a3acfdb13668668c6cd4e317a125519a5b24830e4184474e8fe274"; - }; - beamDeps = [ timex_0_13_5 ]; - - meta = { - longDescription = ''A PCAP library written in Elixir. This does - not wrap a C or Erlang PCAP library, rather it - attempts to be an idiomatic Elixir library. This - library parses pcap files, however it does not - yet support most protocols that can be contained - within a pcap file. The only supported protocols - at the moment are: * Ethernet * IPv4 * UDP * DNS - ''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/cobenian/expcap"; - }; - } - ) {}; - - expcap = expcap_0_1_0; - experiment_0_0_3 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "experiment"; version = "0.0.3"; src = fetchHex { @@ -17888,7 +10708,7 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/andrewvy/experiment"; }; - } + } // packageOverrides) ) {}; experiment = experiment_0_0_3; @@ -17896,9 +10716,14 @@ let expinboard_0_0_1 = callPackage ( { - buildMix, fetchHex, ibrowse_4_2_2, httpotion_2_2_2, exjsx_3_2_0 + buildMix, + packageOverrides ? {}, + fetchHex, + ibrowse_4_2_2, + httpotion_2_2_2, + exjsx_3_2_0 }: - buildMix { + buildMix ({ name = "expinboard"; version = "0.0.1"; src = fetchHex { @@ -17914,15 +10739,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/thilko/expinboard"; }; - } + } // packageOverrides) ) {}; expinboard = expinboard_0_0_1; expletive_0_1_4 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "expletive"; version = "0.1.4"; src = fetchHex { @@ -17937,15 +10762,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/xavier/expletive"; }; - } + } // packageOverrides) ) {}; expletive = expletive_0_1_4; expool_0_2_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "expool"; version = "0.2.0"; src = fetchHex { @@ -17960,15 +10785,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/zackehh/expool"; }; - } + } // packageOverrides) ) {}; expool = expool_0_2_0; export_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "export"; version = "0.0.2"; src = fetchHex { @@ -17983,15 +10808,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/fazibear/export"; }; - } + } // packageOverrides) ) {}; export = export_0_0_2; expr_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "expr"; version = "0.1.0"; src = fetchHex { @@ -18007,15 +10832,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/Rob-bie/Expr"; }; - } + } // packageOverrides) ) {}; expr = expr_0_1_0; exprintf_0_1_6 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exprintf"; version = "0.1.6"; src = fetchHex { @@ -18031,15 +10856,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/parroty/exprintf"; }; - } + } // packageOverrides) ) {}; exprintf = exprintf_0_1_6; exprof_0_2_0 = callPackage ( - { buildMix, fetchHex, exprintf_0_1_6 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, exprintf_0_1_6 }: + buildMix ({ name = "exprof"; version = "0.2.0"; src = fetchHex { @@ -18056,96 +10881,23 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/parroty/exprof"; }; - } + } // packageOverrides) ) {}; exprof = exprof_0_2_0; - exprotobuf_0_10_2 = callPackage - ( - { buildMix, fetchHex, gpb_3_18_10 }: - buildMix { - name = "exprotobuf"; - version = "0.10.2"; - src = fetchHex { - pkg = "exprotobuf"; - version = "0.10.2"; - sha256 = - "dc71af3a83a51376de72de160123408cd38adfed2ad2f419465b4d1e3f87d244"; - }; - beamDeps = [ gpb_3_18_10 ]; - - meta = { - longDescription = ''exprotobuf provides native encoding/decoding - of protobuf messages via generated - modules/structs.''; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/bitwalker/exprotobuf"; - }; - } - ) {}; - - exprotobuf_0_13_0 = callPackage - ( - { buildMix, fetchHex, gpb_3_18_10 }: - buildMix { - name = "exprotobuf"; - version = "0.13.0"; - src = fetchHex { - pkg = "exprotobuf"; - version = "0.13.0"; - sha256 = - "25921ae192f22eca89d543134a7b12bd2db617bb77992f1d4957b8b28bccbc8e"; - }; - beamDeps = [ gpb_3_18_10 ]; - - meta = { - longDescription = ''exprotobuf provides native encoding/decoding - of protobuf messages via generated - modules/structs.''; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/bitwalker/exprotobuf"; - }; - } - ) {}; - - exprotobuf_1_0_0 = callPackage - ( - { buildMix, fetchHex, gpb_3_18_10 }: - buildMix { - name = "exprotobuf"; - version = "1.0.0"; - src = fetchHex { - pkg = "exprotobuf"; - version = "1.0.0"; - sha256 = - "042cc4b2b3e9c13e6fcfd08e49043fa2640aa718e4d743404e1006a372bc2564"; - }; - beamDeps = [ gpb_3_18_10 ]; - - meta = { - longDescription = ''exprotobuf provides native encoding/decoding - of protobuf messages via generated - modules/structs.''; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/bitwalker/exprotobuf"; - }; - } - ) {}; - - exprotobuf = exprotobuf_1_0_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 { + buildMix ({ name = "exq"; version = "0.6.5"; src = fetchHex { @@ -18163,15 +10915,22 @@ let license = stdenv.lib.licenses.free; homepage = "https://github.com/akira/exq"; }; - } + } // packageOverrides) ) {}; exq = exq_0_6_5; exq_ui_0_6_5 = callPackage ( - { buildMix, fetchHex, plug_1_1_3, exq_0_6_5, cowboy_1_0_4 }: - buildMix { + { + 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 { @@ -18189,15 +10948,15 @@ let homepage = "https://github.com/akira/exq"; }; - } + } // packageOverrides) ) {}; exq_ui = exq_ui_0_6_5; exql_0_0_3 = callPackage ( - { buildMix, fetchHex, tds_0_5_4 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, tds_0_5_4 }: + buildMix ({ name = "exql"; version = "0.0.3"; src = fetchHex { @@ -18213,15 +10972,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/mattweldon/exql"; }; - } + } // packageOverrides) ) {}; exql = exql_0_0_3; exquery_0_0_11 = callPackage ( - { buildRebar3, fetchHex, ex_doc_0_11_4, earmark_0_1_19 }: - buildRebar3 { + { + buildRebar3, + packageOverrides ? {}, + fetchHex, + ex_doc_0_11_4, + earmark_0_1_19 + }: + buildRebar3 ({ name = "exquery"; version = "0.0.11"; src = fetchHex { @@ -18240,15 +11005,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/rozap/exquery"; }; - } + } // packageOverrides) ) {}; exquery = exquery_0_0_11; exquisite_0_1_6 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exquisite"; version = "0.1.6"; src = fetchHex { @@ -18263,64 +11028,15 @@ let license = stdenv.lib.licenses.wtfpl; homepage = "https://github.com/meh/exquisite"; }; - } + } // packageOverrides) ) {}; exquisite = exquisite_0_1_6; - exrabbit_0_0_2 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "exrabbit"; - version = "0.0.2"; - src = fetchHex { - pkg = "exrabbit"; - version = "0.0.2"; - sha256 = - "8dda89e78a8918eddcf28200e4474127151a8e20a2b54447b817732344b4e55a"; - }; - - meta = { - description = ''RabbitMQ bindings and DSL for Elixir''; - - homepage = "https://github.com/d0rc/exrabbit"; - }; - } - ) {}; - - exrabbit = exrabbit_0_0_2; - - exrecaptcha_0_0_3 = callPackage - ( - { buildMix, fetchHex, httpotion_2_2_2 }: - buildMix { - name = "exrecaptcha"; - version = "0.0.3"; - src = fetchHex { - pkg = "exrecaptcha"; - version = "0.0.3"; - sha256 = - "2df1a9e868d3adc31a657755df04fabc9c9e7d12f56cbcc86b27f670dcd962b5"; - }; - beamDeps = [ httpotion_2_2_2 ]; - - meta = { - longDescription = ''Simple ReCaptcha display/verify code for - Elixir applications. Designed to be used with a - CMS such as Phoenix. ''; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/adanselm/exrecaptcha"; - }; - } - ) {}; - - exrecaptcha = exrecaptcha_0_0_3; - exredis_0_2_3 = callPackage ( - { buildMix, fetchHex, eredis_1_0_8 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, eredis_1_0_8 }: + buildMix ({ name = "exredis"; version = "0.2.3"; src = fetchHex { @@ -18336,15 +11052,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/artemeff/exredis"; }; - } + } // packageOverrides) ) {}; exredis = exredis_0_2_3; exref_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exref"; version = "0.1.0"; src = fetchHex { @@ -18358,15 +11074,21 @@ let description = ''Damn simple mix integration of xref.''; license = stdenv.lib.licenses.mit; }; - } + } // packageOverrides) ) {}; exref = exref_0_1_0; exrequester_0_5_2 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, httpotion_2_2_2 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_5_2, + httpotion_2_2_2 + }: + buildMix ({ name = "exrequester"; version = "0.5.2"; src = fetchHex { @@ -18383,15 +11105,15 @@ let homepage = "https://github.com/oarrabi/exrequester"; }; - } + } // packageOverrides) ) {}; exrequester = exrequester_0_5_2; exrethinkdb_0_0_3 = callPackage ( - { buildRebar3, fetchHex, poison_1_4_0 }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex, poison_1_4_0 }: + buildRebar3 ({ name = "exrethinkdb"; version = "0.0.3"; src = fetchHex { @@ -18408,87 +11130,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/hamiltop/exrethinkdb"; }; - } + } // packageOverrides) ) {}; exrethinkdb = exrethinkdb_0_0_3; - exrm_0_14_17 = callPackage - ( - { buildMix, fetchHex, conform_0_11_0 }: - buildMix { - name = "exrm"; - version = "0.14.17"; - src = fetchHex { - pkg = "exrm"; - version = "0.14.17"; - sha256 = - "c5b0c2bd4bad44d2f67f5ec720e5a4cff829dfac234aa79056970f83236bb976"; - }; - beamDeps = [ conform_0_11_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"; - }; - } - ) {}; - - exrm_0_14_2 = callPackage - ( - { buildMix, fetchHex, conform_0_10_5 }: - buildMix { - name = "exrm"; - version = "0.14.2"; - src = fetchHex { - pkg = "exrm"; - version = "0.14.2"; - sha256 = - "ff70905672059035bfa62a3bb0043809724c6a852050eac52faa06aeb65855c0"; - }; - beamDeps = [ conform_0_10_5 ]; - - 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"; - }; - } - ) {}; - - exrm_0_18_8 = callPackage - ( - { buildMix, fetchHex, relx_3_3_2, conform_0_16_0 }: - buildMix { - name = "exrm"; - version = "0.18.8"; - src = fetchHex { - pkg = "exrm"; - version = "0.18.8"; - sha256 = - "a8aa031d824f882a762404bc19b6fbe6c10703941097a6ef8bb93a62cc987e22"; - }; - beamDeps = [ relx_3_3_2 conform_0_16_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"; - }; - } - ) {}; - exrm_0_19_9 = callPackage ( - { buildMix, fetchHex, relx_3_5_0, conform_1_0_0_rc8 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + relx_3_5_0, + conform_1_0_0_rc8 + }: + buildMix ({ name = "exrm"; version = "0.19.9"; src = fetchHex { @@ -18506,13 +11162,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/bitwalker/exrm"; }; - } + } // packageOverrides) ) {}; exrm_1_0_3 = callPackage ( - { buildMix, fetchHex, relx_3_18_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, relx_3_18_0 }: + buildMix ({ name = "exrm"; version = "1.0.3"; src = fetchHex { @@ -18530,7 +11186,7 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/bitwalker/exrm"; }; - } + } // packageOverrides) ) {}; exrm = exrm_1_0_3; @@ -18539,6 +11195,7 @@ let ( { buildMix, + packageOverrides ? {}, fetchHex, vex_0_5_5, timex_1_0_2, @@ -18546,7 +11203,7 @@ let ex_doc_0_11_4, earmark_0_2_1 }: - buildMix { + buildMix ({ name = "exrm_deb"; version = "0.0.5"; src = fetchHex { @@ -18568,15 +11225,15 @@ let 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, fetchHex, exrm_1_0_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, exrm_1_0_3 }: + buildMix ({ name = "exrm_heroku"; version = "0.1.1"; src = fetchHex { @@ -18593,43 +11250,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/ride/exrm-heroku"; }; - } + } // packageOverrides) ) {}; exrm_heroku = exrm_heroku_0_1_1; - exrm_rpm_0_3_0 = callPackage - ( - { buildMix, fetchHex, exrm_0_14_2 }: - buildMix { - name = "exrm_rpm"; - version = "0.3.0"; - src = fetchHex { - pkg = "exrm_rpm"; - version = "0.3.0"; - sha256 = - "28c2339fac5073d615fb4a52816dd4fc56c9da2db9e71846b0affdf171643044"; - }; - beamDeps = [ exrm_0_14_2 ]; - - meta = { - longDescription = ''Adds simple Red Hat Package Manager (RPM) - generation to the exrm package manager. The - generated RPM file includes the Elixir release - and an init.d script to manage the project`s - service. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/smpallen99/exrm-rpm"; - }; - } - ) {}; - - exrm_rpm = exrm_rpm_0_3_0; - exromaji_0_3_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exromaji"; version = "0.3.0"; src = fetchHex { @@ -18645,15 +11274,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/ikeikeikeike/exromaji"; }; - } + } // packageOverrides) ) {}; exromaji = exromaji_0_3_0; exrun_0_1_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exrun"; version = "0.1.1"; src = fetchHex { @@ -18669,15 +11298,15 @@ let homepage = "https://github.com/liveforeverx/exrun"; }; - } + } // packageOverrides) ) {}; exrun = exrun_0_1_1; exsamples_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exsamples"; version = "0.1.0"; src = fetchHex { @@ -18693,15 +11322,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/msaraiva/exsamples"; }; - } + } // packageOverrides) ) {}; exsamples = exsamples_0_1_0; exscript_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exscript"; version = "0.0.1"; src = fetchHex { @@ -18716,83 +11345,15 @@ let homepage = "https://github.com/liveforeverx/exscript"; }; - } + } // packageOverrides) ) {}; exscript = exscript_0_0_1; - exseed_0_0_3 = callPackage - ( - { buildMix, fetchHex, ecto_2_0_0_beta_2 }: - buildMix { - name = "exseed"; - version = "0.0.3"; - src = fetchHex { - pkg = "exseed"; - version = "0.0.3"; - sha256 = - "d5f42ed419c9f1d5d179dc93fdf6a58344b07055764498f222f07f95cb82dd98"; - }; - beamDeps = [ ecto_2_0_0_beta_2 ]; - - meta = { - description = ''A library that provides a simple DSL for seeding - databases through Ecto.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/seaneshbaugh/exseed"; - }; - } - ) {}; - - exseed = exseed_0_0_3; - - exsentry_0_3_0 = callPackage - ( - { - buildMix, - fetchHex, - uuid_1_1_3, - timex_2_1_3, - poison_1_0_3, - plug_1_1_3, - ibrowse_4_2_2, - httpotion_2_2_2, - fuzzyurl_0_8_1 - }: - buildMix { - name = "exsentry"; - version = "0.3.0"; - src = fetchHex { - pkg = "exsentry"; - version = "0.3.0"; - sha256 = - "0cc5b035b58a95e3361de9417a3ab61bf055d02fc3273b048011dcba7f2a515c"; - }; - beamDeps = [ - uuid_1_1_3 - timex_2_1_3 - poison_1_0_3 - plug_1_1_3 - ibrowse_4_2_2 - httpotion_2_2_2 - fuzzyurl_0_8_1 - ]; - - meta = { - description = ''ExSentry is a client for the Sentry error - reporting platform.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/appcues/exsentry"; - }; - } - ) {}; - - exsentry = exsentry_0_3_0; - exstatic_0_1_0 = callPackage ( - { buildMix, fetchHex, plug_1_1_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ name = "exstatic"; version = "0.1.0"; src = fetchHex { @@ -18814,15 +11375,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/arjan/exstatic"; }; - } + } // packageOverrides) ) {}; exstatic = exstatic_0_1_0; exstatsd_0_1_5 = callPackage ( - { buildMix, fetchHex, exactor_2_2_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, exactor_2_2_0 }: + buildMix ({ name = "exstatsd"; version = "0.1.5"; src = fetchHex { @@ -18838,15 +11399,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/upbit/ExStatsD"; }; - } + } // packageOverrides) ) {}; exstatsd = exstatsd_0_1_5; exsync_0_1_2 = callPackage ( - { buildMix, fetchHex, exfswatch_0_1_1 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, exfswatch_0_1_1 }: + buildMix ({ name = "exsync"; version = "0.1.2"; src = fetchHex { @@ -18862,123 +11423,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/falood/exsync"; }; - } + } // packageOverrides) ) {}; exsync = exsync_0_1_2; - exsyslog_1_0_1 = callPackage - ( - { buildMix, fetchHex, syslog_1_0_2, poison_1_5_2 }: - buildMix { - name = "exsyslog"; - version = "1.0.1"; - src = fetchHex { - pkg = "exsyslog"; - version = "1.0.1"; - sha256 = - "a3972cf2c70bcf8fedcd702109ed6a2213d1905c6eabb0e42e600b34bc9f0fbe"; - }; - beamDeps = [ syslog_1_0_2 poison_1_5_2 ]; - - meta = { - description = ''ExSyslog is a Elixir Logger custom backend to - syslog.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/22cans/exsyslog"; - }; - } - ) {}; - - exsyslog = exsyslog_1_0_1; - - extreme_0_5_0 = callPackage - ( - { - buildMix, - fetchHex, - uuid_1_1_3, - poison_1_5_2, - httpoison_0_8_2, - exprotobuf_0_10_2 - }: - buildMix { - name = "extreme"; - version = "0.5.0"; - src = fetchHex { - pkg = "extreme"; - version = "0.5.0"; - sha256 = - "ddbc42891e2d16a5d204939809e35236968c6bc06d4adab7027f8635fec222ab"; - }; - beamDeps = [ - uuid_1_1_3 - poison_1_5_2 - httpoison_0_8_2 - exprotobuf_0_10_2 - ]; - - meta = { - description = ''Elixir TCP adapter for EventStore.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/exponentially/extreme"; - }; - } - ) {}; - - extreme = extreme_0_5_0; - - extripe_0_3_2 = callPackage - ( - { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: - buildMix { - name = "extripe"; - version = "0.3.2"; - src = fetchHex { - pkg = "extripe"; - version = "0.3.2"; - sha256 = - "4df5dd859ad780bdb4dc0d1c823a8df82cf7421037f1ed40adf20b426d6729a1"; - }; - beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; - - meta = { - description = ''Stripe API wrapper''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/princemaple/extripe"; - }; - } - ) {}; - - extripe = extripe_0_3_2; - - exts_0_2_2 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "exts"; - version = "0.2.2"; - src = fetchHex { - pkg = "exts"; - version = "0.2.2"; - sha256 = - "0c3fa7e429912a4af48dd94975535e6db0557297d675b9d9105645d05d3a3089"; - }; - - meta = { - description = ''ets wrapper for Elixir''; - license = stdenv.lib.licenses.wtfpl; - homepage = "https://github.com/meh/exts"; - }; - } - ) {}; - - exts = exts_0_2_2; - extwitter_0_7_0 = callPackage ( - { buildMix, fetchHex, poison_1_5_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }: + buildMix ({ name = "extwitter"; version = "0.7.0"; src = fetchHex { @@ -18994,141 +11447,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/parroty/extwitter"; }; - } + } // packageOverrides) ) {}; extwitter = extwitter_0_7_0; - exurban_0_0_1 = callPackage - ( - { buildMix, fetchHex, jazz_0_2_1, httpoison_0_7_5 }: - buildMix { - name = "exurban"; - version = "0.0.1"; - src = fetchHex { - pkg = "exurban"; - version = "0.0.1"; - sha256 = - "612b3136b144edfbad658acca6961a3c9a1afe5d343acacb5ce5b358a67bd797"; - }; - beamDeps = [ jazz_0_2_1 httpoison_0_7_5 ]; - - meta = { - description = ''Elixir wrapper for UrbanAirship API.''; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/tappsi/exurban"; - }; - } - ) {}; - - exurban = exurban_0_0_1; - - exvcr_0_3_9 = callPackage - ( - { - buildMix, - fetchHex, - meck_0_8_4, - httpotion_2_2_2, - httpoison_0_8_2, - exjsx_3_2_0, - exactor_2_2_0 - }: - buildMix { - name = "exvcr"; - version = "0.3.9"; - src = fetchHex { - pkg = "exvcr"; - version = "0.3.9"; - sha256 = - "25645f6598111ba76ed30b4a2079169ae1aed0795ef87bf74d70a3a7ca8f2112"; - }; - beamDeps = [ - meck_0_8_4 - httpotion_2_2_2 - httpoison_0_8_2 - exjsx_3_2_0 - exactor_2_2_0 - ]; - - meta = { - description = ''HTTP request/response recording library for - elixir, inspired by VCR.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/parroty/exvcr"; - }; - } - ) {}; - - exvcr_0_7_2 = callPackage - ( - { - buildMix, - fetchHex, - meck_0_8_4, - httpotion_2_2_2, - httpoison_0_8_2, - exjsx_3_2_0, - exactor_2_2_0 - }: - buildMix { - name = "exvcr"; - version = "0.7.2"; - src = fetchHex { - pkg = "exvcr"; - version = "0.7.2"; - sha256 = - "8e5feda0b2a9d2f2305bc68c76286cad73a1ecd9638038691cc17e378e321016"; - }; - beamDeps = [ - meck_0_8_4 - httpotion_2_2_2 - httpoison_0_8_2 - exjsx_3_2_0 - exactor_2_2_0 - ]; - - meta = { - description = ''HTTP request/response recording library for - elixir, inspired by VCR.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/parroty/exvcr"; - }; - } - ) {}; - - exvcr = exvcr_0_7_2; - - exyelp_0_0_2 = callPackage - ( - { - buildMix, fetchHex, poison_2_1_0, oauther_1_0_2, httpoison_0_8_2 - }: - buildMix { - name = "exyelp"; - version = "0.0.2"; - src = fetchHex { - pkg = "exyelp"; - version = "0.0.2"; - sha256 = - "1be8553ea0369a092eac1b6a0b47652b7c0570911483aa3ca454bef05ddd4d5d"; - }; - beamDeps = [ poison_2_1_0 oauther_1_0_2 httpoison_0_8_2 ]; - - meta = { - description = ''An Elixir Yelp API client''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/gaslight/exyelp"; - }; - } - ) {}; - - exyelp = exyelp_0_0_2; - exyz_1_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "exyz"; version = "1.0.0"; src = fetchHex { @@ -19144,15 +11471,15 @@ let license = stdenv.lib.licenses.free; homepage = "https://github.com/Dkendal/exyz"; }; - } + } // packageOverrides) ) {}; exyz = exyz_1_0_0; eye_drops_1_0_1 = callPackage ( - { buildMix, fetchHex, fs_0_9_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, fs_0_9_2 }: + buildMix ({ name = "eye_drops"; version = "1.0.1"; src = fetchHex { @@ -19170,13 +11497,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/rkotze/eye_drops"; }; - } + } // packageOverrides) ) {}; eye_drops_1_2_0 = callPackage ( - { buildMix, fetchHex, fs_0_9_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, fs_0_9_2 }: + buildMix ({ name = "eye_drops"; version = "1.2.0"; src = fetchHex { @@ -19194,15 +11521,15 @@ let 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, fetchHex, cryptex_0_0_1 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, cryptex_0_0_1 }: + buildMix ({ name = "ezcryptex"; version = "0.0.1"; src = fetchHex { @@ -19220,94 +11547,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/stocks29/ezcryptex"; }; - } + } // packageOverrides) ) {}; ezcryptex = ezcryptex_0_0_1; - ezlib_1_0_1 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "ezlib"; - version = "1.0.1"; - src = fetchHex { - pkg = "ezlib"; - version = "1.0.1"; - sha256 = - "fea58a6ab557888dbfc91a8d20c55755614c123277a57dea2e91711c630465e1"; - }; - compilePorts = true; - - meta = { - description = ''Native zlib driver for Erlang / Elixir''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/processone/ezlib"; - }; - } - ) {}; - - ezlib = ezlib_1_0_1; - - ezmq_0_2_0 = callPackage - ( - { - buildErlangMk, fetchHex, lager_2_1_1, gen_listener_tcp_0_3_2 - }: - buildErlangMk { - name = "ezmq"; - version = "0.2.0"; - src = fetchHex { - pkg = "ezmq"; - version = "0.2.0"; - sha256 = - "bc804ffded0b0d0f684d4313ad3fa676479df962c584daaf5aa14ada5b86a52b"; - }; - beamDeps = [ lager_2_1_1 gen_listener_tcp_0_3_2 ]; - - meta = { - description = ''Native Erlang 0MQ implementation''; - license = stdenv.lib.licenses.mpl20; - homepage = "https://github.com/zeromq/ezmq"; - }; - } - ) {}; - - ezmq = ezmq_0_2_0; - - facebook_0_4_2 = callPackage - ( - { - buildMix, fetchHex, libex_config_0_2_0, json_0_3_3, hackney_1_6_0 - }: - buildMix { - name = "facebook"; - version = "0.4.2"; - src = fetchHex { - pkg = "facebook"; - version = "0.4.2"; - sha256 = - "033147d8ae278172ea7fb6fd445bdd6288fb06a8479b9f0e0ae376acc1efdad6"; - }; - beamDeps = [ libex_config_0_2_0 json_0_3_3 hackney_1_6_0 ]; - - meta = { - longDescription = ''Facebook Graph API Wrapper written in Elixir. - Please note, this is very much a work in - progress. Feel free to contribute using pull - requests.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/mweibel/facebook.ex"; - }; - } - ) {}; - - facebook = facebook_0_4_2; - factory_girl_elixir_0_1_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "factory_girl_elixir"; version = "0.1.1"; src = fetchHex { @@ -19323,15 +11571,22 @@ let 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, fetchHex, plug_1_1_3, cowboy_1_0_4, bypass_0_5_1 }: - buildMix { + { + 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 { @@ -19347,15 +11602,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "faker"; version = "0.6.0"; src = fetchHex { @@ -19371,92 +11626,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/igas/faker"; }; - } + } // packageOverrides) ) {}; faker = faker_0_6_0; - fast_tls_1_0_1 = callPackage - ( - { buildRebar3, fetchHex, p1_utils_1_0_3 }: - buildRebar3 { - name = "fast_tls"; - version = "1.0.1"; - src = fetchHex { - pkg = "fast_tls"; - version = "1.0.1"; - sha256 = - "479d1e53a14b749b96581df7320440da1ff56df9dde91d327b3ecc1bc60fcb0d"; - }; - compilePorts = true; - beamDeps = [ p1_utils_1_0_3 ]; - - meta = { - description = ''TLS / SSL OpenSSL-based native driver for Erlang - / Elixir''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/processone/fast_tls"; - }; - } - ) {}; - - fast_tls = fast_tls_1_0_1; - - fast_xml_1_1_11 = callPackage - ( - { buildRebar3, fetchHex, p1_utils_1_0_3 }: - buildRebar3 { - name = "fast_xml"; - version = "1.1.11"; - src = fetchHex { - pkg = "fast_xml"; - version = "1.1.11"; - sha256 = - "58ad965b6e6913a7cc488552bb30a17d029a44c6b1a17f369870cd911ada46b8"; - }; - compilePorts = true; - beamDeps = [ p1_utils_1_0_3 ]; - - meta = { - description = ''Fast Expat-based Erlang / Elixir XML parsing - library''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/processone/fast_xml"; - }; - } - ) {}; - - fast_xml = fast_xml_1_1_11; - - fast_yaml_1_0_3 = callPackage - ( - { buildRebar3, fetchHex, p1_utils_1_0_3 }: - buildRebar3 { - name = "fast_yaml"; - version = "1.0.3"; - src = fetchHex { - pkg = "fast_yaml"; - version = "1.0.3"; - sha256 = - "f2b2258dfb98ba69c16005d3944582994f2b83f830b717858a5d6807497274ba"; - }; - compilePorts = true; - beamDeps = [ p1_utils_1_0_3 ]; - - meta = { - description = ''Fast YAML native library for Erlang / Elixir''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/processone/fast_yaml"; - }; - } - ) {}; - - fast_yaml = fast_yaml_1_0_3; - faust_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "faust"; version = "0.1.0"; src = fetchHex { @@ -19471,40 +11649,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/jquadrin/faust"; }; - } + } // packageOverrides) ) {}; faust = faust_0_1_0; - favicon_0_0_7 = callPackage - ( - { buildMix, fetchHex, httpoison_0_7_5, floki_0_8_0 }: - buildMix { - name = "favicon"; - version = "0.0.7"; - src = fetchHex { - pkg = "favicon"; - version = "0.0.7"; - sha256 = - "b9a577d3d22a6e51843eb334b87de512f48a548d7a7edf56e178e0dde420ba0e"; - }; - beamDeps = [ httpoison_0_7_5 floki_0_8_0 ]; - - meta = { - description = ''A library that fetches the favicon url for a - specified url''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/ricn/favicon"; - }; - } - ) {}; - - favicon = favicon_0_0_7; - fdg_0_0_4 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "fdg"; version = "0.0.4"; src = fetchHex { @@ -19522,15 +11675,15 @@ let 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, fetchHex, exredis_0_2_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, exredis_0_2_3 }: + buildMix ({ name = "feature_toggler"; version = "0.0.1"; src = fetchHex { @@ -19547,15 +11700,15 @@ let 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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "feeder"; version = "1.4.7"; src = fetchHex { @@ -19571,13 +11724,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/michaelnisi/feeder"; }; - } + } // packageOverrides) ) {}; feeder_2_0_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "feeder"; version = "2.0.0"; src = fetchHex { @@ -19593,15 +11746,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/michaelnisi/feeder"; }; - } + } // packageOverrides) ) {}; feeder = feeder_2_0_0; feeder_ex_0_0_2 = callPackage ( - { buildMix, fetchHex, feeder_1_4_7 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, feeder_1_4_7 }: + buildMix ({ name = "feeder_ex"; version = "0.0.2"; src = fetchHex { @@ -19617,15 +11770,15 @@ let 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, fetchHex, poolboy_1_5_1 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, poolboy_1_5_1 }: + buildMix ({ name = "feederer"; version = "0.5.6"; src = fetchHex { @@ -19643,104 +11796,15 @@ let license = stdenv.lib.licenses.free; homepage = "https://github.com/draftli/feederer"; }; - } + } // packageOverrides) ) {}; feederer = feederer_0_5_6; - feedistiller_2_0_2 = callPackage - ( - { - buildMix, - fetchHex, - timex_0_19_5, - httpoison_0_7_5, - feeder_2_0_0, - alambic_0_1_0 - }: - buildMix { - name = "feedistiller"; - version = "2.0.2"; - src = fetchHex { - pkg = "feedistiller"; - version = "2.0.2"; - sha256 = - "453244b3a41fbde7e13ccd675928f41f155799c218b47cbead9e67066efc8276"; - }; - beamDeps = [ - timex_0_19_5 - httpoison_0_7_5 - feeder_2_0_0 - alambic_0_1_0 - ]; - - meta = { - description = ''Download RSS/Atom feeds enclosures.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/sdanzan/feedistiller"; - }; - } - ) {}; - - feedistiller = feedistiller_2_0_2; - - feedlex_0_0_1 = callPackage - ( - { buildMix, fetchHex, poison_1_3_1, httpoison_0_8_2 }: - buildMix { - name = "feedlex"; - version = "0.0.1"; - src = fetchHex { - pkg = "feedlex"; - version = "0.0.1"; - sha256 = - "1f20033824f816d6904837601c14bdffcf1a56a53b8ed7d7916a67e48e53b4a5"; - }; - beamDeps = [ poison_1_3_1 httpoison_0_8_2 ]; - - meta = { - longDescription = ''Feedly RSS reader client for Elixir - (elixir-lang). Partial but functional - implementation. For now it covers the following - Feedly APIs: * authentication; * feed; * stream; - * subscription.''; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/essenciary/feedlex"; - }; - } - ) {}; - - feedlex = feedlex_0_0_1; - - feedme_0_0_1 = callPackage - ( - { buildMix, fetchHex, timex_0_19_5 }: - buildMix { - name = "feedme"; - version = "0.0.1"; - src = fetchHex { - pkg = "feedme"; - version = "0.0.1"; - sha256 = - "021621981bbb03b317e4a948a39d269ab1a2dc6d9ec6ee1c744e565000da680d"; - }; - beamDeps = [ timex_0_19_5 ]; - - meta = { - description = ''Elixir RSS/Atom parser built on erlang`s xmerl - xml parser''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/umurgdk/elixir-feedme"; - }; - } - ) {}; - - feedme = feedme_0_0_1; - feedparser_0_0_3 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "feedparser"; version = "0.0.3"; src = fetchHex { @@ -19755,15 +11819,21 @@ let 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, fetchHex, fernetex_0_0_2, ecto_1_1_5 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + fernetex_0_0_2, + ecto_1_1_5 + }: + buildMix ({ name = "fernet_ecto"; version = "0.0.5"; src = fetchHex { @@ -19779,15 +11849,15 @@ let 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, fetchHex, timex_1_0_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, timex_1_0_2 }: + buildMix ({ name = "fernetex"; version = "0.0.2"; src = fetchHex { @@ -19804,132 +11874,22 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/kennyp/fernetex"; }; - } + } // packageOverrides) ) {}; fernetex = fernetex_0_0_2; - fifo_db_0_2_1 = callPackage - ( - { - buildRebar3, - fetchHex, - lager_3_0_2, - erocksdb_0_4_1, - eleveldb_2_1_3 - }: - buildRebar3 { - name = "fifo_db"; - version = "0.2.1"; - src = fetchHex { - pkg = "fifo_db"; - version = "0.2.1"; - sha256 = - "c712ec4dba2b6c358f44196b7bddb2f93ce7a61db2ce1b28d45ebe872e8bc207"; - }; - - beamDeps = [ lager_3_0_2 erocksdb_0_4_1 eleveldb_2_1_3 ]; - - meta = { - description = ''Project-FiFo db wrapper''; - license = stdenv.lib.licenses.cddl; - homepage = "https://github.com/project-fifo/fifo_db"; - }; - } - ) {}; - - fifo_db = fifo_db_0_2_1; - - fifo_dt_0_1_66 = callPackage - ( - { - buildRebar3, - fetchHex, - riak_dt_2_1_1, - libsnarlmatch_0_1_7, - lager_2_1_1, - jsxd_0_1_10, - jsx_1_4_5, - fifo_utils_0_1_20 - }: - buildRebar3 { - name = "fifo_dt"; - version = "0.1.66"; - src = fetchHex { - pkg = "fifo_dt"; - version = "0.1.66"; - sha256 = - "a72df25753a0dad32b22b02356f2979b8e3556f0333449f476d581332f02da6b"; - }; - - beamDeps = [ - riak_dt_2_1_1 - libsnarlmatch_0_1_7 - lager_2_1_1 - jsxd_0_1_10 - jsx_1_4_5 - fifo_utils_0_1_20 - ]; - - meta = { - description = ''FiFo datatype collection''; - license = stdenv.lib.licenses.cddl; - homepage = "https://github.com/project-fifo/fifo_dt"; - }; - } - ) {}; - - fifo_dt_0_1_68 = callPackage - ( - { - buildRebar3, - fetchHex, - riak_dt_2_1_1, - libsnarlmatch_0_1_7, - lager_2_1_1, - jsxd_0_1_10, - jsx_1_4_5, - fifo_utils_0_1_20 - }: - buildRebar3 { - name = "fifo_dt"; - version = "0.1.68"; - src = fetchHex { - pkg = "fifo_dt"; - version = "0.1.68"; - sha256 = - "dc465553abac1e4a9db50930bbba5ee15f625a440b482311ceb0e428cc121894"; - }; - - beamDeps = [ - riak_dt_2_1_1 - libsnarlmatch_0_1_7 - lager_2_1_1 - jsxd_0_1_10 - jsx_1_4_5 - fifo_utils_0_1_20 - ]; - - meta = { - description = ''FiFo datatype collection''; - license = stdenv.lib.licenses.cddl; - homepage = "https://github.com/project-fifo/fifo_dt"; - }; - } - ) {}; - - fifo_dt = fifo_dt_0_1_68; - 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 { + buildRebar3 ({ name = "fifo_lager"; version = "0.1.3"; src = fetchHex { @@ -19949,7 +11909,7 @@ let description = ''Lager config and dependencies''; }; - } + } // packageOverrides) ) {}; fifo_lager = fifo_lager_0_1_3; @@ -19958,13 +11918,14 @@ let ( { buildRebar3, + packageOverrides ? {}, fetchHex, poolboy_1_5_1, lager_3_0_2, erlcloud_0_13_0, base16_1_0_0 }: - buildRebar3 { + buildRebar3 ({ name = "fifo_s3"; version = "0.1.16"; src = fetchHex { @@ -19982,88 +11943,15 @@ let description = ''S3 storange client library for erlang''; }; - } + } // packageOverrides) ) {}; fifo_s3 = fifo_s3_0_1_16; - fifo_spec_0_1_27 = callPackage - ( - { buildRebar3, fetchHex, fifo_dt_0_1_66 }: - buildRebar3 { - name = "fifo_spec"; - version = "0.1.27"; - src = fetchHex { - pkg = "fifo_spec"; - version = "0.1.27"; - sha256 = - "2ef9662a7423da74b7f4517e9470e44e03383c1116ee6da3944021ff3cd44ef6"; - }; - - beamDeps = [ fifo_dt_0_1_66 ]; - - meta = { - description = ''Specs for FiFo APIs''; - license = stdenv.lib.licenses.cddl; - homepage = "https://github.com/project-fifo/fifo_spec"; - }; - } - ) {}; - - fifo_spec = fifo_spec_0_1_27; - - fifo_utils_0_1_20 = callPackage - ( - { buildRebar3, fetchHex, uuid_erl_1_5_1, lager_2_1_1 }: - buildRebar3 { - name = "fifo_utils"; - version = "0.1.20"; - src = fetchHex { - pkg = "fifo_utils"; - version = "0.1.20"; - sha256 = - "01ec5ae5e8a8c3d8e9dc658de1c00818ac807195b4a5c47f98aa2c9af4d54663"; - }; - - beamDeps = [ uuid_erl_1_5_1 lager_2_1_1 ]; - - meta = { - description = ''FiFo utility library''; - license = stdenv.lib.licenses.cddl; - homepage = "https://github.com/project-fifo/fifo_utils"; - }; - } - ) {}; - - fifo_utils_0_1_22 = callPackage - ( - { buildRebar3, fetchHex, uuid_erl_1_5_1, lager_2_1_1 }: - buildRebar3 { - name = "fifo_utils"; - version = "0.1.22"; - src = fetchHex { - pkg = "fifo_utils"; - version = "0.1.22"; - sha256 = - "dd38d1418298600063354ebb84cbcbf6d49504416323368c8d590dd2a95e257e"; - }; - - beamDeps = [ uuid_erl_1_5_1 lager_2_1_1 ]; - - meta = { - description = ''FiFo utility library''; - license = stdenv.lib.licenses.cddl; - homepage = "https://github.com/project-fifo/fifo_utils"; - }; - } - ) {}; - - fifo_utils = fifo_utils_0_1_22; - fifocache_1_0_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "fifocache"; version = "1.0.1"; src = fetchHex { @@ -20078,38 +11966,15 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/mururu/fifocache"; }; - } + } // packageOverrides) ) {}; fifocache = fifocache_1_0_1; - figaro_0_1_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "figaro"; - version = "0.1.0"; - src = fetchHex { - pkg = "figaro"; - version = "0.1.0"; - sha256 = - "3342018ab0135211b85d00f34567ca3a2d6d66289840c9eb0096ec97fad8a201"; - }; - - meta = { - description = ''Simple Elixir project configuration''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/trestrantham/ex_figaro"; - }; - } - ) {}; - - figaro = figaro_0_1_0; - figaro_elixir_1_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "figaro_elixir"; version = "1.0.0"; src = fetchHex { @@ -20125,15 +11990,17 @@ let 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, fetchHex, mimetype_parser_0_1_2 }: - buildMix { + { + buildMix, packageOverrides ? {}, fetchHex, mimetype_parser_0_1_2 + }: + buildMix ({ name = "file_info"; version = "0.0.2"; src = fetchHex { @@ -20150,65 +12017,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/NobbZ/file_info"; }; - } + } // packageOverrides) ) {}; file_info = file_info_0_0_2; - filepreviews_1_0_1 = callPackage - ( - { buildMix, fetchHex, poison_1_4_0, httpoison_0_7_5 }: - buildMix { - name = "filepreviews"; - version = "1.0.1"; - src = fetchHex { - pkg = "filepreviews"; - version = "1.0.1"; - sha256 = - "bdb67cd960dd98a4a1d6d0d4944721bf98a506dbfb2b361ca473dbaf40cc9470"; - }; - beamDeps = [ poison_1_4_0 httpoison_0_7_5 ]; - - meta = { - description = ''FilePreviews.io API client library for Elixir.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/GetBlimp/filepreviews-elixir"; - }; - } - ) {}; - - filepreviews = filepreviews_1_0_1; - - filtrex_0_1_0 = callPackage - ( - { buildMix, fetchHex, timex_0_19_5 }: - buildMix { - name = "filtrex"; - version = "0.1.0"; - src = fetchHex { - pkg = "filtrex"; - version = "0.1.0"; - sha256 = - "475187169e70534b3ba2db6f47656538deb2ff447744e4112cc1008414162e9c"; - }; - beamDeps = [ timex_0_19_5 ]; - - meta = { - longDescription = ''A library for performing and validating - complex filters from a client (e.g. smart - filters)''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/rcdilorenzo/filtrex"; - }; - } - ) {}; - - filtrex = filtrex_0_1_0; - finance_0_0_1 = callPackage ( - { buildMix, fetchHex, timex_1_0_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, timex_1_0_2 }: + buildMix ({ name = "finance"; version = "0.0.1"; src = fetchHex { @@ -20224,55 +12041,22 @@ let bisection method using parallel processes.''; }; - } + } // packageOverrides) ) {}; finance = finance_0_0_1; - finch_0_0_3 = callPackage - ( - { - buildMix, - fetchHex, - postgrex_0_6_0, - phoenix_0_4_1, - ecto_0_2_4, - cowboy_1_0_4 - }: - buildMix { - name = "finch"; - version = "0.0.3"; - src = fetchHex { - pkg = "finch"; - version = "0.0.3"; - sha256 = - "48168045693af14b28263a5c121794dfcfb6da9eb33cc7a7eca93899668a2032"; - }; - beamDeps = [ - postgrex_0_6_0 phoenix_0_4_1 ecto_0_2_4 cowboy_1_0_4 - ]; - - meta = { - longDescription = '' Resource layer for Phoenix and Ecto projects - for auto-generated RESTful CRUD APIs. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/rozap/finch"; - }; - } - ) {}; - - finch = finch_0_0_3; - finicity_0_0_5 = callPackage ( { buildMix, + packageOverrides ? {}, fetchHex, xml_builder_0_0_8, httpotion_2_2_2, floki_0_8_0 }: - buildMix { + buildMix ({ name = "finicity"; version = "0.0.5"; src = fetchHex { @@ -20287,40 +12071,15 @@ let description = ''Client library for Finicity.''; }; - } + } // packageOverrides) ) {}; finicity = finicity_0_0_5; - fireworks_0_5_1 = callPackage - ( - { buildMix, fetchHex, poolboy_1_5_1, amqp_0_1_4 }: - buildMix { - name = "fireworks"; - version = "0.5.1"; - src = fetchHex { - pkg = "fireworks"; - version = "0.5.1"; - sha256 = - "33beceafc10537c975b571617dfc5c000a8232c112c1383f52b9e6a12437f9ca"; - }; - beamDeps = [ poolboy_1_5_1 amqp_0_1_4 ]; - - meta = { - description = ''Simple elixir work queue consumption for - RabbitMQ''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/mobileoverlord/fireworks"; - }; - } - ) {}; - - fireworks = fireworks_0_5_1; - firmata_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "firmata"; version = "0.0.1"; src = fetchHex { @@ -20337,65 +12096,15 @@ let license = stdenv.lib.licenses.isc; homepage = "https://github.com/kfatehi/firmata"; }; - } + } // packageOverrides) ) {}; firmata = firmata_0_0_1; - fitbit_0_0_1 = callPackage - ( - { - buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2, hackney_1_4_10 - }: - buildMix { - name = "fitbit"; - version = "0.0.1"; - src = fetchHex { - pkg = "fitbit"; - version = "0.0.1"; - sha256 = - "dc09d3b6d37ea67d21a52a704bd52357daa223e18afe4831515730452b3ada25"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 hackney_1_4_10 ]; - - meta = { - description = ''A Fitbit Library for Elixir''; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/trestrantham/fitbit"; - }; - } - ) {}; - - fitbit = fitbit_0_0_1; - - fitex_0_0_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "fitex"; - version = "0.0.1"; - src = fetchHex { - pkg = "fitex"; - version = "0.0.1"; - sha256 = - "5918d784a419fa1367606b6bc01b202febc3762b5b624e5829db636415041fcb"; - }; - - meta = { - description = ''FitEx is a Macro-Module which provides a bit of - sugar for function definitions.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/Puddah/FitEx"; - }; - } - ) {}; - - fitex = fitex_0_0_1; - fixby_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "fixby"; version = "0.0.1"; src = fetchHex { @@ -20411,15 +12120,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/CoderDennis/fixby-elixir"; }; - } + } // packageOverrides) ) {}; fixby = fixby_0_0_1; fixme_0_0_4 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "fixme"; version = "0.0.4"; src = fetchHex { @@ -20435,15 +12144,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/henrik/fixme-elixir"; }; - } + } // packageOverrides) ) {}; fixme = fixme_0_0_4; flasked_0_3_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "flasked"; version = "0.3.0"; src = fetchHex { @@ -20463,41 +12172,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/asaaki/flasked"; }; - } + } // packageOverrides) ) {}; flasked = flasked_0_3_0; - fleet_api_0_0_15 = callPackage - ( - { buildMix, fetchHex, poison_1_3_1, httpoison_0_7_1 }: - buildMix { - name = "fleet_api"; - version = "0.0.15"; - src = fetchHex { - pkg = "fleet_api"; - version = "0.0.15"; - sha256 = - "8aa8206a91129dab3b2a11ffd16b131ef1e37ceff633ed818616e96c8dca7957"; - }; - beamDeps = [ poison_1_3_1 httpoison_0_7_1 ]; - - meta = { - longDescription = ''A simple wrapper for the Fleet API. Can be - used with etcd tokens or via direct node - URLs.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/jordan0day/fleet-api.git"; - }; - } - ) {}; - - fleet_api = fleet_api_0_0_15; - flock_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "flock"; version = "0.0.1"; src = fetchHex { @@ -20512,15 +12195,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/chrismccord/flock"; }; - } + } // packageOverrides) ) {}; flock = flock_0_0_1; floki_0_0_5 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "floki"; version = "0.0.5"; src = fetchHex { @@ -20536,59 +12219,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/philss/floki"; }; - } - ) {}; - - floki_0_1_1 = callPackage - ( - { buildMix, fetchHex, mochiweb_2_12_2 }: - buildMix { - name = "floki"; - version = "0.1.1"; - src = fetchHex { - pkg = "floki"; - version = "0.1.1"; - sha256 = - "b608415520f6701acdbbffed86b62291b00ce695f7f3b067919594534c9858a9"; - }; - beamDeps = [ mochiweb_2_12_2 ]; - - 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"; - }; - } - ) {}; - - floki_0_7_2 = callPackage - ( - { buildMix, fetchHex, mochiweb_2_12_2 }: - buildMix { - name = "floki"; - version = "0.7.2"; - src = fetchHex { - pkg = "floki"; - version = "0.7.2"; - sha256 = - "c7078ac2a54501a16ff469c78292bac5013e457ffa8801b74bc293616aa5b0d0"; - }; - beamDeps = [ mochiweb_2_12_2 ]; - - 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, fetchHex, mochiweb_html_2_13_0 }: - buildMix { + { + buildMix, packageOverrides ? {}, fetchHex, mochiweb_html_2_13_0 + }: + buildMix ({ name = "floki"; version = "0.8.0"; src = fetchHex { @@ -20605,7 +12244,7 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/philss/floki"; }; - } + } // packageOverrides) ) {}; floki = floki_0_8_0; @@ -20614,6 +12253,7 @@ let ( { buildMix, + packageOverrides ? {}, fetchHex, xml_builder_0_0_8, tzdata_0_1_201603, @@ -20622,7 +12262,7 @@ let poison_1_5_2, httpotion_2_2_2 }: - buildMix { + buildMix ({ name = "floorplan"; version = "0.1.1"; src = fetchHex { @@ -20646,68 +12286,15 @@ let license = stdenv.lib.licenses.free; homepage = "https://github.com/househappy/floorplan"; }; - } + } // packageOverrides) ) {}; floorplan = floorplan_0_1_1; - flower_power_0_3_2 = callPackage - ( - { - buildMix, fetchHex, timex_1_0_2, poison_1_5_2, httpoison_0_7_5 - }: - buildMix { - name = "flower_power"; - version = "0.3.2"; - src = fetchHex { - pkg = "flower_power"; - version = "0.3.2"; - sha256 = - "f0b7d14fbe0ea78225f3b8424bc907ca6d977576d974b57dcd860afa8ed426a8"; - }; - beamDeps = [ timex_1_0_2 poison_1_5_2 httpoison_0_7_5 ]; - - meta = { - description = ''Api client for flower power cloud api''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/Korbin73/FlowerPower"; - }; - } - ) {}; - - flower_power = flower_power_0_3_2; - - fluent_client_0_1_0 = callPackage - ( - { - buildMix, fetchHex, socket_0_2_8, poison_1_3_1, msgpax_0_7_1 - }: - buildMix { - name = "fluent_client"; - version = "0.1.0"; - src = fetchHex { - pkg = "fluent_client"; - version = "0.1.0"; - sha256 = - "df1d05da9475938422a734cd311564eef44bfebea3c37b06ab167368875c2d15"; - }; - beamDeps = [ socket_0_2_8 poison_1_3_1 msgpax_0_7_1 ]; - - meta = { - description = ''fluentd client library''; - license = stdenv.lib.licenses.asl20; - homepage = - "https://github.com/trustatom-oss/elixir-fluent-client"; - }; - } - ) {}; - - fluent_client = fluent_client_0_1_0; - fluxter_0_2_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "fluxter"; version = "0.2.0"; src = fetchHex { @@ -20722,15 +12309,15 @@ let license = stdenv.lib.licenses.isc; homepage = "https://github.com/lexmag/fluxter"; }; - } + } // packageOverrides) ) {}; fluxter = fluxter_0_2_0; fn_1_0_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "fn"; version = "1.0.0"; src = fetchHex { @@ -20745,15 +12332,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/artemeff/fn"; }; - } + } // packageOverrides) ) {}; fn = fn_1_0_0; fnv_0_2_1 = callPackage ( - { buildMix, fetchHex, hexate_0_5_1 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, hexate_0_5_1 }: + buildMix ({ name = "fnv"; version = "0.2.1"; src = fetchHex { @@ -20770,15 +12357,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/asaaki/fnv.ex"; }; - } + } // packageOverrides) ) {}; fnv = fnv_0_2_1; folsom_0_8_3 = callPackage ( - { buildRebar3, fetchHex, bear_0_8_3 }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex, bear_0_8_3 }: + buildRebar3 ({ name = "folsom"; version = "0.8.3"; src = fetchHex { @@ -20794,40 +12381,15 @@ let description = ''Erlang based metrics system''; }; - } + } // packageOverrides) ) {}; folsom = folsom_0_8_3; - folsom_ddb_0_1_22 = callPackage - ( - { buildRebar3, fetchHex, ddb_client_0_1_17 }: - buildRebar3 { - name = "folsom_ddb"; - version = "0.1.22"; - src = fetchHex { - pkg = "folsom_ddb"; - version = "0.1.22"; - sha256 = - "8b2c5b674b993738f22ff265159e6d71d6640632ed98e9c1cd3daef15b586e46"; - }; - - beamDeps = [ ddb_client_0_1_17 ]; - - meta = { - description = ''DalmatinerDB backend to store folsom metrics''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/dalmatinerdb/folsom_ddb"; - }; - } - ) {}; - - folsom_ddb = folsom_ddb_0_1_22; - folsomite_1_2_8 = callPackage ( - { buildRebar3, fetchHex, folsom_0_8_3 }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex, folsom_0_8_3 }: + buildRebar3 ({ name = "folsomite"; version = "1.2.8"; src = fetchHex { @@ -20844,115 +12406,15 @@ let metrics''; }; - } + } // packageOverrides) ) {}; folsomite = folsomite_1_2_8; - font_awesome_phoenix_0_3_2 = callPackage - ( - { buildMix, fetchHex, phoenix_html_2_5_1 }: - buildMix { - name = "font_awesome_phoenix"; - version = "0.3.2"; - src = fetchHex { - pkg = "font_awesome_phoenix"; - version = "0.3.2"; - sha256 = - "826dd9e0400351cb539ccced605455d8da25490fd37a75085eb68fa133e65f34"; - }; - beamDeps = [ phoenix_html_2_5_1 ]; - - meta = { - description = ''HTML helper functions to build Font Awesome icon - tags.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/code-lever/font-awesome-phoenix"; - }; - } - ) {}; - - font_awesome_phoenix = font_awesome_phoenix_0_3_2; - - forcex_0_2_0 = callPackage - ( - { - buildMix, fetchHex, timex_1_0_2, httpoison_0_8_2, exjsx_3_2_0 - }: - buildMix { - name = "forcex"; - version = "0.2.0"; - src = fetchHex { - pkg = "forcex"; - version = "0.2.0"; - sha256 = - "31c6bd2d550193983812a5e8c4ed53d5d6be0fe30ce6628d62828f00544a7a4b"; - }; - beamDeps = [ timex_1_0_2 httpoison_0_8_2 exjsx_3_2_0 ]; - - meta = { - description = ''Elixir library for the Force.com / SalesForce / - SFDC REST API''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/jeffweiss/forcex"; - }; - } - ) {}; - - forcex = forcex_0_2_0; - - forecast_io_0_2_1 = callPackage - ( - { buildMix, fetchHex, json_0_3_3, httpotion_2_2_2 }: - buildMix { - name = "forecast_io"; - version = "0.2.1"; - src = fetchHex { - pkg = "forecast_io"; - version = "0.2.1"; - sha256 = - "e109212dcd55c7d94bf9d85c1d6ee6687d35eb065335df13fc105fc242506c09"; - }; - beamDeps = [ json_0_3_3 httpotion_2_2_2 ]; - - meta = { - description = ''Simple wrapper for Forecast.IO API ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/r-icarus/forecast_io"; - }; - } - ) {}; - - forecast_io = forecast_io_0_2_1; - - form_data_0_1_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "form_data"; - version = "0.1.1"; - src = fetchHex { - pkg = "form_data"; - version = "0.1.1"; - sha256 = - "0fdc822ba56e8bb9cd945c79105572a50144f16d096a95ca4ac9fe2d754862dc"; - }; - - meta = { - description = ''Build a multipart/form-data form struct in - Elixir.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/jinze/form_data"; - }; - } - ) {}; - - form_data = form_data_0_1_1; - forms_0_0_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "forms"; version = "0.0.1"; src = fetchHex { @@ -20962,122 +12424,24 @@ let "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; - fox_0_1_12 = callPackage - ( - { buildMix, fetchHex, timex_2_1_3, ecto_2_0_0_beta_2 }: - buildMix { - name = "fox"; - version = "0.1.12"; - src = fetchHex { - pkg = "fox"; - version = "0.1.12"; - sha256 = - "3b4fe9b49422d99e0c888ca839e828b70b4334637f443a14afc941be5e6a847e"; - }; - beamDeps = [ timex_2_1_3 ecto_2_0_0_beta_2 ]; - - meta = { - longDescription = ''Collection of support utility functions and - extensions for day-to-day web development with - Elixir. Includes utility extension to strings, - uri, dicts, integers, functions, parallel, - records, random, and time''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/foxnewsnetwork/fox"; - }; - } - ) {}; - - fox = fox_0_1_12; - - fqc_0_1_7 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "fqc"; - version = "0.1.7"; - src = fetchHex { - pkg = "fqc"; - version = "0.1.7"; - sha256 = - "b6873982bad60a34553b00435848521f5178b5508eeded8dfa0d8b2e00846e8e"; - }; - - meta = { - description = ''FiFo EQC helper''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/project-fifo/fqc"; - }; - } - ) {}; - - fqc = fqc_0_1_7; - - frank_0_0_3 = callPackage - ( - { buildMix, fetchHex, amqp_0_1_4 }: - buildMix { - name = "frank"; - version = "0.0.3"; - src = fetchHex { - pkg = "frank"; - version = "0.0.3"; - sha256 = - "f5f19c57aa763b483af80329f54e2de55b1fcb1dde5c304eed97fbde9ca2ce7d"; - }; - beamDeps = [ amqp_0_1_4 ]; - - meta = { - description = ''Simple Elixir client for RabbitMQ built on top of - AMQP.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/triptec/frank"; - }; - } - ) {}; - - frank = frank_0_0_3; - - freegeoip_0_0_4 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "freegeoip"; - version = "0.0.4"; - src = fetchHex { - pkg = "freegeoip"; - version = "0.0.4"; - sha256 = - "6776938ddc1318ee8a34ef6e3a5dcb85013bbb27feeae3c7d65487ff17e2b558"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''Simple Elixir wrapper for freegeoip.net HTTP - API.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/juljimm/freegeoip-elixir"; - }; - } - ) {}; - - freegeoip = freegeoip_0_0_4; - friendly_1_0_1 = callPackage ( - { buildMix, fetchHex, floki_0_8_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, floki_0_8_0 }: + buildMix ({ name = "friendly"; version = "1.0.1"; src = fetchHex { @@ -21095,15 +12459,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/qertoip/friendly/"; }; - } + } // packageOverrides) ) {}; friendly = friendly_1_0_1; fs_0_9_2 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "fs"; version = "0.9.2"; src = fetchHex { @@ -21118,15 +12482,15 @@ let description = ''FS VXZ Listener''; }; - } + } // packageOverrides) ) {}; fs = fs_0_9_2; fsm_0_2_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "fsm"; version = "0.2.0"; src = fetchHex { @@ -21142,44 +12506,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/sasa1977/fsm"; }; - } + } // packageOverrides) ) {}; fsm = fsm_0_2_0; - fulcrum_0_0_6 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "fulcrum"; - version = "0.0.6"; - src = fetchHex { - pkg = "fulcrum"; - version = "0.0.6"; - sha256 = - "9cddd3906bad693cad791841d19b2be089e064a5f2dd35d340f46e6cd15d7930"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - longDescription = ''Fulcrum library for Elixir. The aim is to - present the Fulcrum API as a replacement for an - Ecto Repo. So, instead of Repo.all(Form), you - can write Fulcrum.all(Form). In this way, you - only have to make minor changes to your - controllers, to work with Fulcrum.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/pinx/fulcrum"; - }; - } - ) {}; - - fulcrum = fulcrum_0_0_6; - fumanchu_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "fumanchu"; version = "0.0.1"; src = fetchHex { @@ -21194,15 +12529,15 @@ let written in Elixir''; }; - } + } // packageOverrides) ) {}; fumanchu = fumanchu_0_0_1; function_decorating_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "function_decorating"; version = "0.0.1"; src = fetchHex { @@ -21220,49 +12555,15 @@ let homepage = "https://github.com/elpddev/elixir-function-decorating"; }; - } + } // packageOverrides) ) {}; function_decorating = function_decorating_0_0_1; - funnel_0_4_1 = callPackage - ( - { - buildMix, - fetchHex, - poolboy_1_5_1, - httpoison_0_8_2, - uuid_1_0_0, - poison_1_5_2 - }: - buildMix { - name = "funnel"; - version = "0.4.1"; - src = fetchHex { - pkg = "funnel"; - version = "0.4.1"; - sha256 = - "84b937146c9464afc2a92e53aa0109de60caef599f82613fdcd4dc3e864025d7"; - }; - beamDeps = [ - poolboy_1_5_1 httpoison_0_8_2 uuid_1_0_0 poison_1_5_2 - ]; - - meta = { - description = ''Streaming API built upon ElasticSearch`s - percolation. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/af83/funnel"; - }; - } - ) {}; - - funnel = funnel_0_4_1; - fuse_2_2_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "fuse"; version = "2.2.0"; src = fetchHex { @@ -21277,15 +12578,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/jlouis/fuse"; }; - } + } // packageOverrides) ) {}; fuse = fuse_2_2_0; fuzzyurl_0_8_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "fuzzyurl"; version = "0.8.1"; src = fetchHex { @@ -21301,15 +12602,21 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/gamache/fuzzyurl.ex"; }; - } + } // packageOverrides) ) {}; fuzzyurl = fuzzyurl_0_8_1; fwatch_0_5_0 = callPackage ( - { buildMix, fetchHex, fs_0_9_2, earmark_0_2_1 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + fs_0_9_2, + earmark_0_2_1 + }: + buildMix ({ name = "fwatch"; version = "0.5.0"; src = fetchHex { @@ -21325,43 +12632,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/ryo33/fwatch-ex"; }; - } + } // packageOverrides) ) {}; fwatch = fwatch_0_5_0; - gateway_0_0_6 = callPackage - ( - { - buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2, fox_0_1_12 - }: - buildMix { - name = "gateway"; - version = "0.0.6"; - src = fetchHex { - pkg = "gateway"; - version = "0.0.6"; - sha256 = - "4d0de05b0168ee0cc41c9c38491a4b4641d446f38170ca170d0d7440b0c8f619"; - }; - beamDeps = [ poison_2_1_0 httpoison_0_8_2 fox_0_1_12 ]; - - meta = { - longDescription = ''A generic set of macros and conventions to - build clients to communicate with JSON REST - APIs''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/foxnewsnetwork/gateway"; - }; - } - ) {}; - - gateway = gateway_0_0_6; - gb2260_0_4_0 = callPackage ( - { buildMix, fetchHex, poison_2_1_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }: + buildMix ({ name = "gb2260"; version = "0.4.0"; src = fetchHex { @@ -21378,66 +12657,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/LcpMarvel/gb2260"; }; - } + } // packageOverrides) ) {}; gb2260 = gb2260_0_4_0; - gcm_1_2_0 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "gcm"; - version = "1.2.0"; - src = fetchHex { - pkg = "gcm"; - version = "1.2.0"; - sha256 = - "281d5c2dc94a24382292f6fbfe7348316e8afa0a40285978f03e7dcae068170a"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''GCM library to send pushes through GCM''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/carnivalmobile/gcm"; - }; - } - ) {}; - - gcm = gcm_1_2_0; - - gcmex_0_0_1 = callPackage - ( - { - buildMix, fetchHex, poison_1_5_2, httpoison_0_7_5, earmark_0_2_1 - }: - buildMix { - name = "gcmex"; - version = "0.0.1"; - src = fetchHex { - pkg = "gcmex"; - version = "0.0.1"; - sha256 = - "92f3bbafd7ad0718490d1bdc10d4a2aa5ee7167c144bfe6584cf4260ab6feeab"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_7_5 earmark_0_2_1 ]; - - meta = { - description = ''Google Cloud Messaging client library for - elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/dukex/gcmex"; - }; - } - ) {}; - - gcmex = gcmex_0_0_1; - gealts_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "gealts"; version = "0.0.1"; src = fetchHex { @@ -21452,15 +12680,15 @@ let 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, fetchHex, poison_2_1_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }: + buildMix ({ name = "gelf_logger"; version = "0.2.0"; src = fetchHex { @@ -21478,15 +12706,21 @@ let 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, fetchHex, poison_1_5_2, connection_1_0_2 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_5_2, + connection_1_0_2 + }: + buildMix ({ name = "gelfex"; version = "0.0.1"; src = fetchHex { @@ -21503,15 +12737,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/donpinkster/gelfex"; }; - } + } // packageOverrides) ) {}; gelfex = gelfex_0_0_1; gen_leader_0_1_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "gen_leader"; version = "0.1.0"; src = fetchHex { @@ -21521,20 +12755,23 @@ let "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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "gen_listener_tcp"; version = "0.3.2"; src = fetchHex { @@ -21549,41 +12786,15 @@ let homepage = "https://github.com/travelping/gen_listener_tcp"; }; - } + } // packageOverrides) ) {}; gen_listener_tcp = gen_listener_tcp_0_3_2; - gen_rpc_1_0_2 = callPackage - ( - { buildRebar3, fetchHex, lager_3_0_2 }: - buildRebar3 { - name = "gen_rpc"; - version = "1.0.2"; - src = fetchHex { - pkg = "gen_rpc"; - version = "1.0.2"; - sha256 = - "2e7669c865be0051d322c092f83c0eadefeb04698098ee4b80cc43f60d39f5dd"; - }; - - beamDeps = [ lager_3_0_2 ]; - - meta = { - description = ''A scalable RPC library for Erlang-VM based - languages''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/priestjim/gen_rpc"; - }; - } - ) {}; - - gen_rpc = gen_rpc_1_0_2; - gen_smtp_0_9_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "gen_smtp"; version = "0.9.0"; src = fetchHex { @@ -21600,15 +12811,15 @@ let homepage = "https://github.com/Vagabond/gen_smtp"; }; - } + } // packageOverrides) ) {}; gen_smtp = gen_smtp_0_9_0; gendex_0_5_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "gendex"; version = "0.5.1"; src = fetchHex { @@ -21624,46 +12835,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/dre1080/gendex"; }; - } + } // packageOverrides) ) {}; gendex = gendex_0_5_1; - geo_1_0_1 = callPackage - ( - { - buildMix, - fetchHex, - postgrex_0_11_1, - poison_1_0_3, - ecto_2_0_0_beta_2 - }: - buildMix { - name = "geo"; - version = "1.0.1"; - src = fetchHex { - pkg = "geo"; - version = "1.0.1"; - sha256 = - "c0ab2df75521a2f50ff339294ff914b3a71e4f3753c5a82851457e0d40bb2e9c"; - }; - beamDeps = [ postgrex_0_11_1 poison_1_0_3 ecto_2_0_0_beta_2 ]; - - meta = { - description = ''PostGIS extension for Postgrex. Also encodes and - decodes WKB, WKT, and GeoJSON.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/bryanjos/geo"; - }; - } - ) {}; - - geo = geo_1_0_1; - geocalc_0_4_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "geocalc"; version = "0.4.0"; src = fetchHex { @@ -21679,49 +12859,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/yltsrc/geocalc"; }; - } + } // packageOverrides) ) {}; geocalc = geocalc_0_4_0; - geocoder_0_4_0 = callPackage - ( - { - buildMix, - fetchHex, - towel_0_2_1, - poolboy_1_5_1, - poison_1_5_2, - httpoison_0_8_2 - }: - buildMix { - name = "geocoder"; - version = "0.4.0"; - src = fetchHex { - pkg = "geocoder"; - version = "0.4.0"; - sha256 = - "67c45859114f5b82949cb98b75cfc862d739a5212164e4147552c6b3701cc975"; - }; - beamDeps = [ - towel_0_2_1 poolboy_1_5_1 poison_1_5_2 httpoison_0_8_2 - ]; - - meta = { - description = ''A simple, efficient geocoder/reverse geocoder - with a built-in cache.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/knrz/geocoder"; - }; - } - ) {}; - - geocoder = geocoder_0_4_0; - geohash_0_1_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "geohash"; version = "0.1.1"; src = fetchHex { @@ -21737,15 +12883,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/polmuz/elixir-geohash"; }; - } + } // packageOverrides) ) {}; geohash = geohash_0_1_1; geolix_0_9_0 = callPackage ( - { buildMix, fetchHex, poolboy_1_5_1 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, poolboy_1_5_1 }: + buildMix ({ name = "geolix"; version = "0.9.0"; src = fetchHex { @@ -21761,15 +12907,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/mneudert/geolix"; }; - } + } // packageOverrides) ) {}; geolix = geolix_0_9_0; getopt_0_8_2 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "getopt"; version = "0.8.2"; src = fetchHex { @@ -21784,15 +12930,15 @@ let homepage = "https://github.com/jcomellas/getopt"; }; - } + } // packageOverrides) ) {}; getopt = getopt_0_8_2; gettext_0_10_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "gettext"; version = "0.10.0"; src = fetchHex { @@ -21808,15 +12954,15 @@ let 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, fetchHex, plug_1_1_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ name = "gh_webhook_plug"; version = "0.0.2"; src = fetchHex { @@ -21834,15 +12980,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "gibran"; version = "0.0.2"; src = fetchHex { @@ -21857,86 +13003,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/abitdodgy/gibran"; }; - } + } // packageOverrides) ) {}; gibran = gibran_0_0_2; - gil_0_0_3 = callPackage - ( - { buildMix, fetchHex, httpoison_0_7_5, floki_0_8_0 }: - buildMix { - name = "gil"; - version = "0.0.3"; - src = fetchHex { - pkg = "gil"; - version = "0.0.3"; - sha256 = - "5235fdfd30513bd5d75a93272fc952f3ae1c0746e400591c244383d8f0fe9403"; - }; - beamDeps = [ httpoison_0_7_5 floki_0_8_0 ]; - - meta = { - description = ''"Mix custome task for check exchange rate"''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/modalsoul/gil"; - }; - } - ) {}; - - gil = gil_0_0_3; - - gimei_0_0_2 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "gimei"; - version = "0.0.2"; - src = fetchHex { - pkg = "gimei"; - version = "0.0.2"; - sha256 = - "858aab561bc200358ee7098c80ea91d8c7e38b0058c55b1e4df28f5e5a27db7c"; - }; - - meta = { - description = ''Gimei is a pure Elixir library for genrating - Japanese fake data.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/KazuCocoa/elixir-gimei"; - }; - } - ) {}; - - gimei = gimei_0_0_2; - - gimei_ex_1_0_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "gimei_ex"; - version = "1.0.0"; - src = fetchHex { - pkg = "gimei_ex"; - version = "1.0.0"; - sha256 = - "21dd295d7beae218cc947d649d62d990aa2931d844c15e367528d68926a21987"; - }; - - meta = { - description = ''Elixir port of gimei library''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/ma2gedev/gimei_ex"; - }; - } - ) {}; - - gimei_ex = gimei_ex_1_0_0; - git_cli_0_2_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "git_cli"; version = "0.2.0"; src = fetchHex { @@ -21951,15 +13026,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "gitex"; version = "0.1.0"; src = fetchHex { @@ -21976,13 +13051,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/awetzel/gitex"; }; - } + } // packageOverrides) ) {}; gitex_0_2_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "gitex"; version = "0.2.0"; src = fetchHex { @@ -21999,89 +13074,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/awetzel/gitex"; }; - } + } // packageOverrides) ) {}; gitex = gitex_0_2_0; - github_oauth_0_1_1 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "github_oauth"; - version = "0.1.1"; - src = fetchHex { - pkg = "github_oauth"; - version = "0.1.1"; - sha256 = - "4e68983af9ed8146a2505ad759cb151c3202471285f07df6132a4acd47aa91f2"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''simple github oauth library''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/lidashuang/github_oauth"; - }; - } - ) {}; - - github_oauth = github_oauth_0_1_1; - - github_trend_ex_0_1_2 = callPackage - ( - { buildMix, fetchHex, httpoison_0_8_2, floki_0_8_0 }: - buildMix { - name = "github_trend_ex"; - version = "0.1.2"; - src = fetchHex { - pkg = "github_trend_ex"; - version = "0.1.2"; - sha256 = - "019565ad8efe6c25414dcddc6a7fc99e34f0ff457989ec7b5ad03b79b0c8ca8b"; - }; - beamDeps = [ httpoison_0_8_2 floki_0_8_0 ]; - - meta = { - description = ''Get trend repositories from Github.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/KazuCocoa/github_trend_ex"; - }; - } - ) {}; - - github_trend_ex = github_trend_ex_0_1_2; - - gizoogle_0_0_2 = callPackage - ( - { buildMix, fetchHex, httpoison_0_8_2 }: - buildMix { - name = "gizoogle"; - version = "0.0.2"; - src = fetchHex { - pkg = "gizoogle"; - version = "0.0.2"; - sha256 = - "c22d720fc60df8670a194c6ed1fb17fe272a7560b478037aef4a1437331f60e3"; - }; - beamDeps = [ httpoison_0_8_2 ]; - - meta = { - longDescription = ''Uses Gizoogle ta allow you ta drop a rhyme - like a thug n` retrieve links fo` translated - sitez''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/notdevinclark/gizoogle"; - }; - } - ) {}; - - gizoogle = gizoogle_0_0_2; - glitchylicious_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "glitchylicious"; version = "0.0.1"; src = fetchHex { @@ -22096,15 +13097,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/0010-IO/glitchylicious"; }; - } + } // packageOverrides) ) {}; glitchylicious = glitchylicious_0_0_1; global_1_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "global"; version = "1.0.0"; src = fetchHex { @@ -22120,15 +13121,15 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/mgwidmann/global"; }; - } + } // packageOverrides) ) {}; global = global_1_0_0; gm_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "gm"; version = "0.0.2"; src = fetchHex { @@ -22143,68 +13144,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/utkarshkukreti/gm.ex"; }; - } + } // packageOverrides) ) {}; gm = gm_0_0_2; - gmail_0_1_8 = callPackage - ( - { - buildMix, fetchHex, timex_2_1_3, poison_2_1_0, httpoison_0_8_2 - }: - buildMix { - name = "gmail"; - version = "0.1.8"; - src = fetchHex { - pkg = "gmail"; - version = "0.1.8"; - sha256 = - "d307c44c9241730fa96d5dbab796295f3d55980465faddf610bf962cd359cbcf"; - }; - beamDeps = [ timex_2_1_3 poison_2_1_0 httpoison_0_8_2 ]; - - meta = { - description = ''A simple Gmail REST API client for Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/craigp/elixir-gmail"; - }; - } - ) {}; - - gmail = gmail_0_1_8; - - gold_0_12_0 = callPackage - ( - { - buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2, decimal_1_1_1 - }: - buildMix { - name = "gold"; - version = "0.12.0"; - src = fetchHex { - pkg = "gold"; - version = "0.12.0"; - sha256 = - "fba43501f6c25116c29358c4b5494de5e078cc516572045ac73a7944b918105b"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 decimal_1_1_1 ]; - - meta = { - description = ''An Elixir library to interface with the Bitcoin - core JSON-RPC API.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/solatis/gold"; - }; - } - ) {}; - - gold = gold_0_12_0; - goldrush_0_1_7 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "goldrush"; version = "0.1.7"; src = fetchHex { @@ -22220,15 +13168,15 @@ let 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, fetchHex, csv_1_3_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, csv_1_3_3 }: + buildMix ({ name = "good_enough_geoid"; version = "0.0.2"; src = fetchHex { @@ -22246,15 +13194,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "good_times"; version = "1.1.1"; src = fetchHex { @@ -22269,7 +13217,7 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/DevL/good_times"; }; - } + } // packageOverrides) ) {}; good_times = good_times_1_1_1; @@ -22278,13 +13226,14 @@ let ( { buildMix, + packageOverrides ? {}, fetchHex, plug_1_1_3, module_mocker_0_2_0, cowboy_1_0_4, access_token_extractor_0_1_1 }: - buildMix { + buildMix ({ name = "google_auth"; version = "0.0.2"; src = fetchHex { @@ -22309,147 +13258,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/rohanpujaris/google_auth"; }; - } + } // packageOverrides) ) {}; google_auth = google_auth_0_0_2; - google_sheets_2_0_5 = callPackage - ( - { - buildMix, - fetchHex, - sweet_xml_0_6_1, - httpoison_0_8_2, - hackney_1_6_0 - }: - buildMix { - name = "google_sheets"; - version = "2.0.5"; - src = fetchHex { - pkg = "google_sheets"; - version = "2.0.5"; - sha256 = - "aeaaab3e2df75289cf14740a76b014652fb77a5ef95be3921fc36f4165812682"; - }; - beamDeps = [ sweet_xml_0_6_1 httpoison_0_8_2 hackney_1_6_0 ]; - - meta = { - description = ''OTP application for fetching and polling Google - spreadsheet data in CSV format.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/GrandCru/GoogleSheets"; - }; - } - ) {}; - - google_sheets = google_sheets_2_0_5; - - goth_0_0_3 = callPackage - ( - { - buildMix, - fetchHex, - poison_1_5_2, - json_web_token_0_2_4, - httpoison_0_8_2 - }: - buildMix { - name = "goth"; - version = "0.0.3"; - src = fetchHex { - pkg = "goth"; - version = "0.0.3"; - sha256 = - "0bbf59ae842dc4518cf42123b0fb0d0255bcb72ea37c8ec13bab2efe2339ccc3"; - }; - beamDeps = [ poison_1_5_2 json_web_token_0_2_4 httpoison_0_8_2 - ]; - - meta = { - longDescription = ''A simple library to generate and retrieve - Oauth2 tokens for use with Google Cloud Service - accounts.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/peburrows/goth"; - }; - } - ) {}; - - goth = goth_0_0_3; - - gpb_3_18_10 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "gpb"; - version = "3.18.10"; - src = fetchHex { - pkg = "gpb"; - version = "3.18.10"; - sha256 = - "caf6833ca216a08246efe660393f3bce291d46dc873ec3588f11e4c112030714"; - }; - - meta = { - description = ''A compiler for Google protocol buffer definitions - files for Erlang.''; - license = stdenv.lib.licenses.lpgl1; - homepage = "https://github.com/tomas-abrahamsson/gpb"; - }; - } - ) {}; - - gpb_3_18_8 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "gpb"; - version = "3.18.8"; - src = fetchHex { - pkg = "gpb"; - version = "3.18.8"; - sha256 = - "44af8eadd3edc030684d36ea6964926af6d95aa32e105a02fcc2cd2e1b436694"; - }; - - meta = { - description = ''A compiler for Google protocol buffer definitions - files for Erlang.''; - license = stdenv.lib.licenses.lpgl1; - homepage = "https://github.com/tomas-abrahamsson/gpb"; - }; - } - ) {}; - - gpb_3_20_0 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "gpb"; - version = "3.20.0"; - src = fetchHex { - pkg = "gpb"; - version = "3.20.0"; - sha256 = - "d83eb25783fdc3f10b4f8e00c8434453a260958c696efa85fee53ed3a9447e83"; - }; - - meta = { - description = ''A compiler for Google protocol buffer definitions - files for Erlang.''; - license = stdenv.lib.licenses.lpgl1; - homepage = "https://github.com/tomas-abrahamsson/gpb"; - }; - } - ) {}; - - gpb = gpb_3_20_0; - gproc_0_3_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "gproc"; version = "0.3.1"; src = fetchHex { @@ -22479,13 +13296,13 @@ let license = stdenv.lib.licenses.epl10; homepage = "https://github.com/uwiger/gproc"; }; - } + } // packageOverrides) ) {}; gproc_0_5_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "gproc"; version = "0.5.0"; src = fetchHex { @@ -22515,15 +13332,15 @@ let license = stdenv.lib.licenses.epl10; homepage = "https://github.com/uwiger/gproc"; }; - } + } // packageOverrides) ) {}; gproc = gproc_0_5_0; graphex_0_2_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "graphex"; version = "0.2.1"; src = fetchHex { @@ -22538,15 +13355,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/stocks29/graphex"; }; - } + } // packageOverrides) ) {}; graphex = graphex_0_2_1; graphmath_1_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "graphmath"; version = "1.0.2"; src = fetchHex { @@ -22562,15 +13379,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "graphql"; version = "0.2.0"; src = fetchHex { @@ -22585,15 +13402,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "graphql_ex"; version = "0.0.1"; src = fetchHex { @@ -22603,64 +13420,15 @@ let "51884d5275d354b915db03eb390e858ead88b3f3e4f699b2fa7dc8eb442bc343"; }; meta = { }; - } + } // packageOverrides) ) {}; graphql_ex = graphql_ex_0_0_1; - graphql_parser_0_0_3 = callPackage - ( - { buildErlangMk, fetchHex, poison_1_5_2 }: - buildErlangMk { - name = "graphql_parser"; - version = "0.0.3"; - src = fetchHex { - pkg = "graphql_parser"; - version = "0.0.3"; - sha256 = - "c54d6d3a4d5daba22559bc306e3e52cb8d78d3a93738f615c16e405ad56ac6a9"; - }; - beamDeps = [ poison_1_5_2 ]; - - meta = { - longDescription = ''An elixir interface for libgraphqlparser - implemented as a NIF for parsing GraphQL.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/aarvay/graphql_parser"; - }; - } - ) {}; - - graphql_parser = graphql_parser_0_0_3; - - graphql_relay_0_0_16 = callPackage - ( - { buildMix, fetchHex, poison_1_0_3, graphql_0_2_0, ecto_1_1_5 }: - buildMix { - name = "graphql_relay"; - version = "0.0.16"; - src = fetchHex { - pkg = "graphql_relay"; - version = "0.0.16"; - sha256 = - "70c84b22afba3dc47c0a68c4ba58f7f4319d1ef55c8a85364fc05e05bcaf97af"; - }; - beamDeps = [ poison_1_0_3 graphql_0_2_0 ecto_1_1_5 ]; - - meta = { - description = ''Elixir implementation of Relay for GraphQL''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/graphql-elixir/graphql_relay"; - }; - } - ) {}; - - graphql_relay = graphql_relay_0_0_16; - gravatarify_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "gravatarify"; version = "0.1.0"; src = fetchHex { @@ -22675,15 +13443,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/shiroyasha/gravatarify"; }; - } + } // packageOverrides) ) {}; gravatarify = gravatarify_0_1_0; gray_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "gray"; version = "0.0.2"; src = fetchHex { @@ -22699,43 +13467,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/hashd/gray"; }; - } + } // packageOverrides) ) {}; gray = gray_0_0_2; - group_manager_0_0_8 = callPackage - ( - { buildMix, fetchHex, chatter_0_0_14 }: - buildMix { - name = "group_manager"; - version = "0.0.8"; - src = fetchHex { - pkg = "group_manager"; - version = "0.0.8"; - sha256 = - "69d9de842663ed764a8f6792c6a0f5a378e717e302058b9050b4a58be0d14cdf"; - }; - beamDeps = [ chatter_0_0_14 ]; - - meta = { - longDescription = ''GroupManager is extracted from the ScaleSmall - project as a standalone piece. This can be used - independently to manage a set of nodes and - coordinate a common goal expressed as integer - ranges.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/dbeck/groupman_ex/"; - }; - } - ) {}; - - group_manager = group_manager_0_0_8; - growl_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "growl"; version = "0.0.2"; src = fetchHex { @@ -22750,19 +13490,20 @@ let interface for the [Growl OSX notification system](http://growl.info/). ## Setup ```Elixir defp deps do [ {:growl, github: - "zhallett/growl"} ] ``` ## Usage Within the + \"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 + ```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")) ## + \"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 @@ -22772,105 +13513,15 @@ let license = stdenv.lib.licenses.free; homepage = "https://github.com/zhallett/growl"; }; - } + } // packageOverrides) ) {}; growl = growl_0_0_2; - guardian_0_10_1 = callPackage - ( - { - buildMix, - fetchHex, - uuid_1_1_3, - poison_1_5_2, - plug_1_1_3, - jose_1_7_3 - }: - buildMix { - name = "guardian"; - version = "0.10.1"; - src = fetchHex { - pkg = "guardian"; - version = "0.10.1"; - sha256 = - "741aaa989ab656317a247d1db4dcd8e3efbd840b4d451bed7a37504ffdba6dc9"; - }; - beamDeps = [ uuid_1_1_3 poison_1_5_2 plug_1_1_3 jose_1_7_3 ]; - - meta = { - description = ''Elixir Authentication framework''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/ueberauth/guardian"; - }; - } - ) {}; - - guardian = guardian_0_10_1; - - guardian_0_9_1 = callPackage - ( - { - buildMix, - fetchHex, - uuid_1_1_3, - poison_1_5_2, - plug_1_1_3, - jose_1_7_3 - }: - buildMix { - name = "guardian"; - version = "0.9.1"; - src = fetchHex { - pkg = "guardian"; - version = "0.9.1"; - sha256 = - "9a79ae386f777774ab2910007cd30b20e2ea8da51c0712ec07f8cc8a13dfe293"; - }; - beamDeps = [ uuid_1_1_3 poison_1_5_2 plug_1_1_3 jose_1_7_3 ]; - - meta = { - description = ''Elixir Authentication framework''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/ueberauth/guardian"; - }; - } - ) {}; - - guardian_db_0_4_0 = callPackage - ( - { - buildMix, - fetchHex, - postgrex_0_11_1, - guardian_0_9_1, - ecto_2_0_0_beta_2 - }: - buildMix { - name = "guardian_db"; - version = "0.4.0"; - src = fetchHex { - pkg = "guardian_db"; - version = "0.4.0"; - sha256 = - "d8fc1d33885c42c9a35c1c370bfe676b68a9b4fb54ed33ff7075e32cadcd1279"; - }; - beamDeps = [ postgrex_0_11_1 guardian_0_9_1 ecto_2_0_0_beta_2 ]; - - meta = { - description = ''DB tracking for token validity''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/hassox/guardian_db"; - }; - } - ) {}; - - guardian_db = guardian_db_0_4_0; - guardsafe_0_5_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "guardsafe"; version = "0.5.0"; src = fetchHex { @@ -22886,15 +13537,21 @@ let 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, fetchHex, ranch_1_1_0, cowlib_1_3_0 }: - buildRebar3 { + { + buildRebar3, + packageOverrides ? {}, + fetchHex, + ranch_1_1_0, + cowlib_1_3_0 + }: + buildRebar3 ({ name = "gun"; version = "1.0.0-pre.1"; src = fetchHex { @@ -22910,47 +13567,15 @@ let description = ''Asynchronous SPDY, HTTP and Websocket client.''; }; - } + } // packageOverrides) ) {}; gun = gun_1_0_0_pre_1; - guri_0_2_1 = callPackage - ( - { - buildMix, - fetchHex, - websocket_client_1_1_0, - poison_1_5_2, - httpoison_0_8_2 - }: - buildMix { - name = "guri"; - version = "0.2.1"; - src = fetchHex { - pkg = "guri"; - version = "0.2.1"; - sha256 = - "7fa0f2ebff111c368895798041d982f00eec34589d93f10bb323bb5a09e1f888"; - }; - beamDeps = [ websocket_client_1_1_0 poison_1_5_2 httpoison_0_8_2 - ]; - - meta = { - description = ''Automate tasks and keep everyone in the loop with - Guri''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/elvio/guri"; - }; - } - ) {}; - - guri = guri_0_2_1; - gurka_0_1_7 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "gurka"; version = "0.1.7"; src = fetchHex { @@ -22964,292 +13589,15 @@ let description = ''Erlang implementation of Cucumber''; license = stdenv.lib.licenses.mit; }; - } + } // packageOverrides) ) {}; gurka = gurka_0_1_7; - gutenex_0_1_0 = callPackage - ( - { buildMix, fetchHex, imagineer_0_2_1, apex_0_3_7 }: - buildMix { - name = "gutenex"; - version = "0.1.0"; - src = fetchHex { - pkg = "gutenex"; - version = "0.1.0"; - sha256 = - "212861089f4707ae39e25c08c0d2bb33fca876f1cf71ce7d4546d192c3be03a5"; - }; - beamDeps = [ imagineer_0_2_1 apex_0_3_7 ]; - - meta = { - description = ''PDF Generation in Elixir ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/SenecaSystems/gutenex"; - }; - } - ) {}; - - gutenex = gutenex_0_1_0; - - hackney_1_1_0 = callPackage - ( - { - buildErlangMk, fetchHex, ssl_verify_hostname_1_0_6, idna_2_0_0 - }: - buildErlangMk { - name = "hackney"; - version = "1.1.0"; - src = fetchHex { - pkg = "hackney"; - version = "1.1.0"; - sha256 = - "c8551072fdc8d5d5faacc5a31050cb943c3a8eb533149798b3ff424ef2d68501"; - }; - beamDeps = [ ssl_verify_hostname_1_0_6 idna_2_0_0 ]; - - meta = { - description = ''simple HTTP client''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/benoitc/hackney"; - }; - } - ) {}; - - hackney_1_3_1 = callPackage - ( - { - buildErlangMk, fetchHex, ssl_verify_hostname_1_0_6, idna_2_0_0 - }: - buildErlangMk { - name = "hackney"; - version = "1.3.1"; - src = fetchHex { - pkg = "hackney"; - version = "1.3.1"; - sha256 = - "1a6316daceae744758fc88f2961e68c5a8b6cf1e1f49a28fc2caea6d27581add"; - }; - beamDeps = [ ssl_verify_hostname_1_0_6 idna_2_0_0 ]; - - meta = { - description = ''simple HTTP client''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/benoitc/hackney"; - }; - } - ) {}; - - hackney_1_3_2 = callPackage - ( - { - buildErlangMk, fetchHex, ssl_verify_hostname_1_0_6, idna_2_0_0 - }: - buildErlangMk { - name = "hackney"; - version = "1.3.2"; - src = fetchHex { - pkg = "hackney"; - version = "1.3.2"; - sha256 = - "9b811cff637b29f9c7e2c61abf01986c85cd4f64a9422315fd803993b4e82615"; - }; - beamDeps = [ ssl_verify_hostname_1_0_6 idna_2_0_0 ]; - - meta = { - description = ''simple HTTP client''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/benoitc/hackney"; - }; - } - ) {}; - - hackney_1_4_10 = callPackage - ( - { - buildRebar3, - fetchHex, - ssl_verify_hostname_1_0_5, - mimerl_1_0_2, - idna_1_1_0, - certifi_0_3_0 - }: - buildRebar3 { - name = "hackney"; - version = "1.4.10"; - src = fetchHex { - pkg = "hackney"; - version = "1.4.10"; - sha256 = - "dbdda6c342984ab0f35c5099dfab4b419a77771d096089a9173bf11ab6a0f7bf"; - }; - - beamDeps = [ - ssl_verify_hostname_1_0_5 - mimerl_1_0_2 - idna_1_1_0 - certifi_0_3_0 - ]; - - meta = { - description = ''simple HTTP client''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/benoitc/hackney"; - }; - } - ) {}; - - hackney_1_4_4 = callPackage - ( - { - buildRebar3, - fetchHex, - ssl_verify_hostname_1_0_5, - mimerl_1_0_0, - idna_1_0_2, - certifi_0_1_1 - }: - buildRebar3 { - name = "hackney"; - version = "1.4.4"; - src = fetchHex { - pkg = "hackney"; - version = "1.4.4"; - sha256 = - "c8ab2436556d6bce7e85a85adec67f6abeb8c7508668a3e29750be3c4bf4e3a8"; - }; - - beamDeps = [ - ssl_verify_hostname_1_0_5 - mimerl_1_0_0 - idna_1_0_2 - certifi_0_1_1 - ]; - - meta = { - description = ''simple HTTP client''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/benoitc/hackney"; - }; - } - ) {}; - - hackney_1_4_8 = callPackage - ( - { - buildRebar3, - fetchHex, - ssl_verify_hostname_1_0_5, - mimerl_1_0_2, - idna_1_0_3, - certifi_0_3_0 - }: - buildRebar3 { - name = "hackney"; - version = "1.4.8"; - src = fetchHex { - pkg = "hackney"; - version = "1.4.8"; - sha256 = - "7c212741163cec1cf38ad845bd71efafcbf81365cf754c978b354c6375dc4da2"; - }; - - beamDeps = [ - ssl_verify_hostname_1_0_5 - mimerl_1_0_2 - idna_1_0_3 - certifi_0_3_0 - ]; - - meta = { - description = ''simple HTTP client''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/benoitc/hackney"; - }; - } - ) {}; - - hackney_1_5_7 = callPackage - ( - { - buildRebar3, - fetchHex, - ssl_verify_fun_1_1_0, - mimerl_1_0_2, - metrics_1_0_1, - idna_1_2_0, - certifi_0_4_0 - }: - buildRebar3 { - name = "hackney"; - version = "1.5.7"; - src = fetchHex { - pkg = "hackney"; - version = "1.5.7"; - sha256 = - "627ed3f048b950d2dbbec918519f89f498a2136d74ca8180c15fad412b9bc869"; - }; - - beamDeps = [ - ssl_verify_fun_1_1_0 - mimerl_1_0_2 - metrics_1_0_1 - idna_1_2_0 - certifi_0_4_0 - ]; - - meta = { - description = ''simple HTTP client''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/benoitc/hackney"; - }; - } - ) {}; - - hackney_1_6_0 = callPackage - ( - { - buildRebar3, - fetchHex, - ssl_verify_fun_1_1_0, - mimerl_1_0_2, - metrics_1_0_1, - idna_1_2_0, - certifi_0_4_0 - }: - buildRebar3 { - name = "hackney"; - version = "1.6.0"; - src = fetchHex { - pkg = "hackney"; - version = "1.6.0"; - sha256 = - "8b517f17c794ab611815042d24e149daafbd898d63aac8baf6750b890261c716"; - }; - - beamDeps = [ - ssl_verify_fun_1_1_0 - mimerl_1_0_2 - metrics_1_0_1 - idna_1_2_0 - certifi_0_4_0 - ]; - - meta = { - description = ''simple HTTP client''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/benoitc/hackney"; - }; - } - ) {}; - - hackney = hackney_1_6_0; - haikunator_1_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "haikunator"; version = "1.0.1"; src = fetchHex { @@ -23265,38 +13613,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/knrz/Haikunator"; }; - } + } // packageOverrides) ) {}; haikunator = haikunator_1_0_1; - hamcrest_0_1_1 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "hamcrest"; - version = "0.1.1"; - src = fetchHex { - pkg = "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; - happy_1_1_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "happy"; version = "1.1.1"; src = fetchHex { @@ -23313,15 +13638,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/vic/happy"; }; - } + } // packageOverrides) ) {}; happy = happy_1_1_1; harakiri_0_6_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "harakiri"; version = "0.6.0"; src = fetchHex { @@ -23336,40 +13661,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/rubencaro/harakiri"; }; - } + } // packageOverrides) ) {}; harakiri = harakiri_0_6_0; - harvest_0_0_3 = callPackage - ( - { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: - buildMix { - name = "harvest"; - version = "0.0.3"; - src = fetchHex { - pkg = "harvest"; - version = "0.0.3"; - sha256 = - "a9b52f37959a97e876603da5a34a0683e9e4a8e534fb7c672175602768fc812a"; - }; - beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; - - meta = { - description = ''Harvest Time Tracking API wrapper written in - Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/luishurtado/harvest"; - }; - } - ) {}; - - harvest = harvest_0_0_3; - hash_ring_0_4_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "hash_ring"; version = "0.4.0"; src = fetchHex { @@ -23384,39 +13684,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/sile/hash_ring"; }; - } + } // packageOverrides) ) {}; hash_ring = hash_ring_0_4_0; - hash_ring_ex_1_1_2 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "hash_ring_ex"; - version = "1.1.2"; - src = fetchHex { - pkg = "hash_ring_ex"; - version = "1.1.2"; - sha256 = - "f33c2f7cc134d9ab1b91d961395b3a2b4d3d47b12b16c4e9d964bc3b57b7d573"; - }; - - meta = { - description = ''A consistent hash-ring implemention for Elixir. - ''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/reset/hash-ring-ex"; - }; - } - ) {}; - - hash_ring_ex = hash_ring_ex_1_1_2; - hashids_2_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "hashids"; version = "2.0.2"; src = fetchHex { @@ -23432,40 +13708,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/alco/hashids-elixir"; }; - } + } // packageOverrides) ) {}; hashids = hashids_2_0_2; - hdr_histogram_0_2_0 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "hdr_histogram"; - version = "0.2.0"; - src = fetchHex { - pkg = "hdr_histogram"; - version = "0.2.0"; - sha256 = - "42b6d038deeb6a6b695f5f18842afef240b2510e433bc08b21c9b3daa99a221e"; - }; - compilePorts = true; - - meta = { - description = ''High Dynamic Range Histogram Erlang/OTP - library''; - license = with stdenv.lib.licenses; [ cc0 bsd3 ]; - homepage = "https://github.com/HdrHistogram/hdr_histogram_erl"; - }; - } - ) {}; - - hdr_histogram = hdr_histogram_0_2_0; - heap_1_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "heap"; version = "1.0.0"; src = fetchHex { @@ -23479,15 +13730,15 @@ let description = ''Heap data structure and tools''; }; - } + } // packageOverrides) ) {}; heap = heap_1_0_0; heapq_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "heapq"; version = "0.0.1"; src = fetchHex { @@ -23503,15 +13754,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/takscape/elixir-heapq"; }; - } + } // packageOverrides) ) {}; heapq = heapq_0_0_1; hedwig_0_3_0 = callPackage ( - { buildMix, fetchHex, gproc_0_5_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, gproc_0_5_0 }: + buildMix ({ name = "hedwig"; version = "0.3.0"; src = fetchHex { @@ -23527,13 +13778,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/hedwig-im/hedwig"; }; - } + } // packageOverrides) ) {}; hedwig_1_0_0_rc3 = callPackage ( - { buildMix, fetchHex, gproc_0_5_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, gproc_0_5_0 }: + buildMix ({ name = "hedwig"; version = "1.0.0-rc3"; src = fetchHex { @@ -23549,159 +13800,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/hedwig-im/hedwig"; }; - } + } // packageOverrides) ) {}; hedwig = hedwig_1_0_0_rc3; - hedwig_hipchat_0_9_4 = callPackage - ( - { buildMix, fetchHex, romeo_0_4_0, hedwig_0_3_0 }: - buildMix { - name = "hedwig_hipchat"; - version = "0.9.4"; - src = fetchHex { - pkg = "hedwig_hipchat"; - version = "0.9.4"; - sha256 = - "4d42f307e1c9fd91a47808476a1c278997c6990a69db41f6ed081b61a69056f4"; - }; - beamDeps = [ romeo_0_4_0 hedwig_0_3_0 ]; - - meta = { - description = ''A HipChat adapter for Hedwig''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/jwarlander/hedwig_hipchat"; - }; - } - ) {}; - - hedwig_hipchat = hedwig_hipchat_0_9_4; - - hedwig_irc_0_1_1 = callPackage - ( - { buildMix, fetchHex, hedwig_0_3_0, exirc_0_10_0 }: - buildMix { - name = "hedwig_irc"; - version = "0.1.1"; - src = fetchHex { - pkg = "hedwig_irc"; - version = "0.1.1"; - sha256 = - "367d1a654069078fad1a5d27a1447c6aa6044517fbe46c9e10182faa418d6085"; - }; - beamDeps = [ hedwig_0_3_0 exirc_0_10_0 ]; - - meta = { - description = ''An IRC adapter for Hedwig''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/jeffweiss/hedwig_irc"; - }; - } - ) {}; - - hedwig_irc = hedwig_irc_0_1_1; - - hedwig_xmpp_1_0_0_rc2 = callPackage - ( - { buildMix, fetchHex, romeo_0_4_0, hedwig_0_3_0 }: - buildMix { - name = "hedwig_xmpp"; - version = "1.0.0-rc2"; - src = fetchHex { - pkg = "hedwig_xmpp"; - version = "1.0.0-rc2"; - sha256 = - "79d60e836763c9eb88798bb5921e8eda717fbbf3030ca401f2a3915f58bc59e0"; - }; - beamDeps = [ romeo_0_4_0 hedwig_0_3_0 ]; - - meta = { - description = ''An XMPP adapter for Hedwig''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/hedwig-im/hedwig"; - }; - } - ) {}; - - hedwig_xmpp = hedwig_xmpp_1_0_0_rc2; - - hello_0_0_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "hello"; - version = "0.0.0"; - src = fetchHex { - pkg = "hello"; - version = "0.0.0"; - sha256 = - "35378799d296eda76d236544085041c8d19cd9f6dd6d5f31b5914bee6e6128fc"; - }; - - meta = { - description = ''Reserving this name for an awesome project I am - building.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/thejamespinto"; - }; - } - ) {}; - - hello = hello_0_0_0; - - hello_world_0_0_0 = callPackage - ( - { buildMix, fetchHex, decimal_0_2_5 }: - buildMix { - name = "hello_world"; - version = "0.0.0"; - src = fetchHex { - pkg = "hello_world"; - version = "0.0.0"; - sha256 = - "ae8b9c09cd73bf5268bdd4095cb9d5efbb716cb841834a6edf111f45279b207d"; - }; - beamDeps = [ decimal_0_2_5 ]; - - meta = { - description = ''hello-world test''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/shanilevy/hello_world_hex"; - }; - } - ) {}; - - hello_world = hello_world_0_0_0; - - hello_world_header_0_0_1 = callPackage - ( - { buildMix, fetchHex, plug_0_5_2, cowboy_1_0_4 }: - buildMix { - name = "hello_world_header"; - version = "0.0.1"; - src = fetchHex { - pkg = "hello_world_header"; - version = "0.0.1"; - sha256 = - "caddb7712a66326face465231cf3bfe9210a62787cf5f499f9fbcc04e4695242"; - }; - beamDeps = [ plug_0_5_2 cowboy_1_0_4 ]; - - meta = { - description = ''Demo plug used for tutorial purposes.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/cultivatehq/hello_world_header"; - }; - } - ) {}; - - hello_world_header = hello_world_header_0_0_1; - hermes_0_1_0 = callPackage ( - { buildMix, fetchHex, chronos_1_5_1 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, chronos_1_5_1 }: + buildMix ({ name = "hermes"; version = "0.1.0"; src = fetchHex { @@ -23719,15 +13826,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/nurugger07/hemes"; }; - } + } // packageOverrides) ) {}; hermes = hermes_0_1_0; hex_math_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "hex_math"; version = "0.0.2"; src = fetchHex { @@ -23742,51 +13849,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/tjcelaya/hex_math"; }; - } + } // packageOverrides) ) {}; hex_math = hex_math_0_0_2; - hex_searcher_1_0_0 = callPackage - ( - { - buildMix, - fetchHex, - table_rex_0_4_0, - ibrowse_4_2_2, - httpotion_2_2_2, - floki_0_7_2 - }: - buildMix { - name = "hex_searcher"; - version = "1.0.0"; - src = fetchHex { - pkg = "hex_searcher"; - version = "1.0.0"; - sha256 = - "26d2097aa0f950c67ea55822e15cfec26976f76a60ec51d758af9d60126b3538"; - }; - beamDeps = [ - table_rex_0_4_0 - ibrowse_4_2_2 - httpotion_2_2_2 - floki_0_7_2 - ]; - - meta = { - description = ''Search hex packages from terminal''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/nguyenvinhlinh/HexSearcher"; - }; - } - ) {}; - - hex_searcher = hex_searcher_1_0_0; - hexate_0_5_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "hexate"; version = "0.5.1"; src = fetchHex { @@ -23802,15 +13873,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/rjsamson/hexate"; }; - } + } // packageOverrides) ) {}; hexate = hexate_0_5_1; hexbot_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "hexbot"; version = "0.0.1"; src = fetchHex { @@ -23825,15 +13896,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/tombell/hexbot"; }; - } + } // packageOverrides) ) {}; hexbot = hexbot_0_0_1; hexdocset_1_0_0 = callPackage ( - { buildMix, fetchHex, floki_0_0_5 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, floki_0_0_5 }: + buildMix ({ name = "hexdocset"; version = "1.0.0"; src = fetchHex { @@ -23849,40 +13920,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/yesmeck/hexdocset"; }; - } + } // packageOverrides) ) {}; hexdocset = hexdocset_1_0_0; - hexoku_0_1_0 = callPackage - ( - { buildMix, fetchHex, jsex_2_0_0, httpoison_0_8_2 }: - buildMix { - name = "hexoku"; - version = "0.1.0"; - src = fetchHex { - pkg = "hexoku"; - version = "0.1.0"; - sha256 = - "39c24660842061d71922df5f87ac4fa065b3f18f64a4f438d40495ffeb9d711b"; - }; - beamDeps = [ jsex_2_0_0 httpoison_0_8_2 ]; - - meta = { - description = ''Heroku API client and Heroku Mix tasks for Elixir - projects. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/JonGretar/Hexoku"; - }; - } - ) {}; - - hexoku = hexoku_0_1_0; - hlc_2_0_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "hlc"; version = "2.0.0"; src = fetchHex { @@ -23897,53 +13943,15 @@ let homepage = "https://github.com/barrel-db/hlc"; }; - } + } // packageOverrides) ) {}; hlc = hlc_2_0_0; - hmc5883l_0_5_0 = callPackage - ( - { - buildMix, - fetchHex, - multidef_0_2_1, - mon_handler_1_0_2, - elixir_ale_0_4_1, - dialyze_0_1_4 - }: - buildMix { - name = "hmc5883l"; - version = "0.5.0"; - src = fetchHex { - pkg = "hmc5883l"; - version = "0.5.0"; - sha256 = - "cbda55c14a5e1fc5accd49de948331c5dc264286c6ecd58c348cb54c66fe6fa4"; - }; - beamDeps = [ - multidef_0_2_1 - mon_handler_1_0_2 - elixir_ale_0_4_1 - dialyze_0_1_4 - ]; - - meta = { - longDescription = ''OTP application for reading the HMC5883L - 3-axis magnetometer. Magnetic heading is read at - approx. 13hz (every 75ms)''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/tattdcodemonkey/hmc5883l"; - }; - } - ) {}; - - hmc5883l = hmc5883l_0_5_0; - hoax_0_11_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "hoax"; version = "0.11.1"; src = fetchHex { @@ -23958,15 +13966,15 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/xenolinguist/hoax"; }; - } + } // packageOverrides) ) {}; hoax = hoax_0_11_1; holidays_0_1_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "holidays"; version = "0.1.1"; src = fetchHex { @@ -23982,68 +13990,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/CoderDennis/holidays"; }; - } + } // packageOverrides) ) {}; holidays = holidays_0_1_1; - honeybadger_0_4_0 = callPackage - ( - { - buildMix, fetchHex, poison_2_1_0, plug_1_1_3, httpoison_0_8_2 - }: - buildMix { - name = "honeybadger"; - version = "0.4.0"; - src = fetchHex { - pkg = "honeybadger"; - version = "0.4.0"; - sha256 = - "d2810f38e4a600476ac585c1980dffdf2f62eb2212fe27f76eb07e0ea2bc2dd8"; - }; - beamDeps = [ poison_2_1_0 plug_1_1_3 httpoison_0_8_2 ]; - - meta = { - longDescription = ''Elixir client, Plug and error_logger for - integrating with the Honeybadger.io exception - tracker''; - license = stdenv.lib.licenses.mit; - homepage = - "https://github.com/honeybadger-io/honeybadger-elixir"; - }; - } - ) {}; - - honeybadger = honeybadger_0_4_0; - - honeydew_0_0_8 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "honeydew"; - version = "0.0.8"; - src = fetchHex { - pkg = "honeydew"; - version = "0.0.8"; - sha256 = - "3bf8f7d9665f2897c43f6f3f5f31e598ecf41270bfb57fae11b994715f2665cc"; - }; - - meta = { - description = ''Job queue + worker pool with permanent - workers.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/koudelka/elixir-honeydew"; - }; - } - ) {}; - - honeydew = honeydew_0_0_8; - hooks_1_1_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "hooks"; version = "1.1.1"; src = fetchHex { @@ -24058,40 +14013,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/barrel-db/hooks"; }; - } + } // packageOverrides) ) {}; hooks = hooks_1_1_1; - hound_0_8_2 = callPackage - ( - { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: - buildMix { - name = "hound"; - version = "0.8.2"; - src = fetchHex { - pkg = "hound"; - version = "0.8.2"; - sha256 = - "3ecb4b7d20de76e6790d61e53555e3486ed5810bb6f0052321620b1d46ffb188"; - }; - beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; - - meta = { - description = ''Webdriver library for integration testing and - browser automation''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/HashNuke/hound"; - }; - } - ) {}; - - hound = hound_0_8_2; - hpack_1_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "hpack"; version = "1.0.0"; src = fetchHex { @@ -24109,87 +14039,15 @@ let HTTP/2.''; license = stdenv.lib.licenses.mit; }; - } + } // packageOverrides) ) {}; hpack = hpack_1_0_0; - hr_0_2_2 = callPackage - ( - { - buildMix, - fetchHex, - yyid_0_1_2, - plug_1_1_3, - phoenix_html_2_5_1, - phoenix_ecto_3_0_0_beta_2, - phoenix_1_1_4, - oauth2_0_3_0, - linguist_0_1_5, - joken_0_16_1, - comeonin_1_6_0 - }: - buildMix { - name = "hr"; - version = "0.2.2"; - src = fetchHex { - pkg = "hr"; - version = "0.2.2"; - sha256 = - "67d02f62bffda952dbaf80cfea85601f31c39e04d3bf90da7a08b89e1bce71df"; - }; - beamDeps = [ - yyid_0_1_2 - plug_1_1_3 - phoenix_html_2_5_1 - phoenix_ecto_3_0_0_beta_2 - phoenix_1_1_4 - oauth2_0_3_0 - linguist_0_1_5 - joken_0_16_1 - comeonin_1_6_0 - ]; - - meta = { - description = ''User accounts for Phoenix. Supports OAuth, JWT - and forms out of the box''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/zensavona/hr"; - }; - } - ) {}; - - hr = hr_0_2_2; - - hstore_0_0_2 = callPackage - ( - { buildMix, fetchHex, postgrex_0_8_4, apex_0_3_7 }: - buildMix { - name = "hstore"; - version = "0.0.2"; - src = fetchHex { - pkg = "hstore"; - version = "0.0.2"; - sha256 = - "bd5040285c29162685f4db37ef3ad30c2bb473f5c54fe03ef29b4383cf23504a"; - }; - beamDeps = [ postgrex_0_8_4 apex_0_3_7 ]; - - meta = { - longDescription = ''A collection of encoders and decoders for - hstore data type support for Postgrex. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/senecasystems/hstore"; - }; - } - ) {}; - - hstore = hstore_0_0_2; - html_builder_0_1_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "html_builder"; version = "0.1.1"; src = fetchHex { @@ -24205,15 +14063,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "html_entities"; version = "0.3.0"; src = fetchHex { @@ -24228,61 +14086,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/martinsvalin/html_entities"; }; - } + } // packageOverrides) ) {}; html_entities = html_entities_0_3_0; - html_sanitize_ex_0_1_2 = callPackage - ( - { buildMix, fetchHex, mochiweb_2_12_2 }: - buildMix { - name = "html_sanitize_ex"; - version = "0.1.2"; - src = fetchHex { - pkg = "html_sanitize_ex"; - version = "0.1.2"; - sha256 = - "e6937b25832bcdccb8b547632428de7fe034199c871f037311d4340c345348a7"; - }; - beamDeps = [ mochiweb_2_12_2 ]; - - meta = { - description = ''HTML sanitizer for Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/rrrene/html_sanitize_ex"; - }; - } - ) {}; - - html_sanitize_ex_0_3_1 = callPackage - ( - { buildMix, fetchHex, mochiweb_2_12_2 }: - buildMix { - name = "html_sanitize_ex"; - version = "0.3.1"; - src = fetchHex { - pkg = "html_sanitize_ex"; - version = "0.3.1"; - sha256 = - "cf99531194f621515cc7f62db14f899e404529782b94061b44931c3c4b78099d"; - }; - beamDeps = [ mochiweb_2_12_2 ]; - - meta = { - description = ''HTML sanitizer for Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/rrrene/html_sanitize_ex"; - }; - } - ) {}; - - html_sanitize_ex = html_sanitize_ex_0_3_1; - html_to_pdf_0_5_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "html_to_pdf"; version = "0.5.2"; src = fetchHex { @@ -24298,81 +14110,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/mattweldon/html_to_pdf"; }; - } + } // packageOverrides) ) {}; html_to_pdf = html_to_pdf_0_5_2; - htpasswd_1_0_2 = callPackage - ( - { buildMix, fetchHex, apache_passwd_md5_1_0_0 }: - buildMix { - name = "htpasswd"; - version = "1.0.2"; - src = fetchHex { - pkg = "htpasswd"; - version = "1.0.2"; - sha256 = - "0c9006a42eae68ac2f561e5876c0fd8083560c57da099ffa6c828eeb00246bba"; - }; - beamDeps = [ apache_passwd_md5_1_0_0 ]; - - meta = { - longDescription = ''Provides basic htpasswd(1) functions as a - library: encode and check passwords in MD5, SHA, - crypt, or plaintext format, add to and delete - from htaccess files. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/kevinmontuori/Apache.htpasswd"; - }; - } - ) {}; - - htpasswd = htpasswd_1_0_2; - - http_0_0_1 = callPackage - ( - { - buildMix, - fetchHex, - pool_0_0_2, - excoveralls_0_5_1, - ex_doc_0_7_3, - earmark_0_1_19, - dialyze_0_1_4 - }: - buildMix { - name = "http"; - version = "0.0.1"; - src = fetchHex { - pkg = "http"; - version = "0.0.1"; - sha256 = - "1ee497d4ec73290e5d9b9effab88786716185550bd65822e7a31c32d1a044a96"; - }; - beamDeps = [ - pool_0_0_2 - excoveralls_0_5_1 - ex_doc_0_7_3 - earmark_0_1_19 - dialyze_0_1_4 - ]; - - meta = { - description = ''HTTP server for Elixir Not currently working, but - close :) ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/slogsdon/http"; - }; - } - ) {}; - - http = http_0_0_1; - http2_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "http2"; version = "0.0.2"; src = fetchHex { @@ -24387,15 +14133,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "http_params_serializer"; version = "0.1.1"; src = fetchHex { @@ -24413,55 +14159,23 @@ let homepage = "https://github.com/ruby2elixir/http_params_serializer"; }; - } + } // packageOverrides) ) {}; http_params_serializer = http_params_serializer_0_1_1; - http_proxy_1_0_1 = callPackage - ( - { - buildMix, - fetchHex, - plug_1_0_3, - hackney_1_4_10, - exjsx_3_2_0, - cowboy_1_0_4 - }: - buildMix { - name = "http_proxy"; - version = "1.0.1"; - src = fetchHex { - pkg = "http_proxy"; - version = "1.0.1"; - sha256 = - "7ff5d10c8932b189844f9735742250e4fdbe9de5eba40c84e7447f54fc75fdd3"; - }; - beamDeps = [ plug_1_0_3 hackney_1_4_10 exjsx_3_2_0 cowboy_1_0_4 - ]; - - meta = { - description = ''Multi port HTTP Proxy and support record/play - request.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/KazuCocoa/http_proxy"; - }; - } - ) {}; - - http_proxy = http_proxy_1_0_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 { + buildMix ({ name = "http_router"; version = "0.0.8"; src = fetchHex { @@ -24482,15 +14196,15 @@ let homepage = "https://github.com/sugar-framework/elixir-http-router"; }; - } + } // packageOverrides) ) {}; http_router = http_router_0_0_8; http_signature_1_1_0 = callPackage ( - { buildErlangMk, fetchHex }: - buildErlangMk { + { buildErlangMk, packageOverrides ? {}, fetchHex }: + buildErlangMk ({ name = "http_signature"; version = "1.1.0"; src = fetchHex { @@ -24507,15 +14221,21 @@ let homepage = "https://github.com/potatosalad/erlang-http_signature"; }; - } + } // packageOverrides) ) {}; http_signature = http_signature_1_1_0; httparrot_0_3_4 = callPackage ( - { buildMix, fetchHex, exjsx_3_2_0, cowboy_1_0_4 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + exjsx_3_2_0, + cowboy_1_0_4 + }: + buildMix ({ name = "httparrot"; version = "0.3.4"; src = fetchHex { @@ -24532,134 +14252,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/edgurgel/httparrot"; }; - } + } // packageOverrides) ) {}; httparrot = httparrot_0_3_4; - httpehaviour_0_9_0 = callPackage - ( - { buildMix, fetchHex, hackney_1_6_0 }: - buildMix { - name = "httpehaviour"; - version = "0.9.0"; - src = fetchHex { - pkg = "httpehaviour"; - version = "0.9.0"; - sha256 = - "54e93dcf0e62d392781078cf029478194797fe67c98dffe99a91b5d5ec33e4e5"; - }; - beamDeps = [ hackney_1_6_0 ]; - - meta = { - description = ''Yet Yet Another HTTP client for Elixir powered by - hackney''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/edgurgel/httpehaviour"; - }; - } - ) {}; - - httpehaviour = httpehaviour_0_9_0; - - httpoison_0_7_1 = callPackage - ( - { buildMix, fetchHex, hackney_1_4_8 }: - buildMix { - name = "httpoison"; - version = "0.7.1"; - src = fetchHex { - pkg = "httpoison"; - version = "0.7.1"; - sha256 = - "ad146f8a1e8cb81d50337ca62bd83a80fc1e3df768b93a9ed4c497c3a554c9b0"; - }; - beamDeps = [ hackney_1_4_8 ]; - - meta = { - description = ''Yet Another HTTP client for Elixir powered by - hackney''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/edgurgel/httpoison"; - }; - } - ) {}; - - httpoison_0_7_5 = callPackage - ( - { buildMix, fetchHex, hackney_1_4_8 }: - buildMix { - name = "httpoison"; - version = "0.7.5"; - src = fetchHex { - pkg = "httpoison"; - version = "0.7.5"; - sha256 = - "a9b32452df3c4671c012953d6bb15e3a52bbb41b618f72cbd464e8c9320847c9"; - }; - beamDeps = [ hackney_1_4_8 ]; - - meta = { - description = ''Yet Another HTTP client for Elixir powered by - hackney''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/edgurgel/httpoison"; - }; - } - ) {}; - - httpoison_0_8_0 = callPackage - ( - { buildMix, fetchHex, hackney_1_4_10 }: - buildMix { - name = "httpoison"; - version = "0.8.0"; - src = fetchHex { - pkg = "httpoison"; - version = "0.8.0"; - sha256 = - "7a6455689233867da40f285e9e3bcce506cd0c60b1094e1c449de76a46b9e50b"; - }; - beamDeps = [ hackney_1_4_10 ]; - - meta = { - description = ''Yet Another HTTP client for Elixir powered by - hackney''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/edgurgel/httpoison"; - }; - } - ) {}; - - httpoison_0_8_2 = callPackage - ( - { buildMix, fetchHex, hackney_1_5_7 }: - buildMix { - name = "httpoison"; - version = "0.8.2"; - src = fetchHex { - pkg = "httpoison"; - version = "0.8.2"; - sha256 = - "00738e34fe2e254199c0324ef60b8150a7b2ced66c2296c4df8425c8e9b8d5c0"; - }; - beamDeps = [ hackney_1_5_7 ]; - - meta = { - description = ''Yet Another HTTP client for Elixir powered by - hackney''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/edgurgel/httpoison"; - }; - } - ) {}; - - httpoison = httpoison_0_8_2; - httpotion_2_2_2 = callPackage ( - { buildMix, fetchHex, ibrowse_4_2_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, ibrowse_4_2_2 }: + buildMix ({ name = "httpotion"; version = "2.2.2"; src = fetchHex { @@ -24676,39 +14277,15 @@ let license = stdenv.lib.licenses.unlicense; homepage = "https://github.com/myfreeweb/httpotion"; }; - } + } // packageOverrides) ) {}; httpotion = httpotion_2_2_2; - httprot_0_1_7 = callPackage - ( - { buildMix, fetchHex, socket_0_3_1 }: - buildMix { - name = "httprot"; - version = "0.1.7"; - src = fetchHex { - pkg = "httprot"; - version = "0.1.7"; - sha256 = - "3cf35411d7b16a9af13af4a569eeac09d3375f05ac86139f3448f87302719999"; - }; - beamDeps = [ socket_0_3_1 ]; - - meta = { - description = ''HTTP client library''; - license = stdenv.lib.licenses.wtfpl; - homepage = "https://github.com/meh/httprot"; - }; - } - ) {}; - - httprot = httprot_0_1_7; - huami_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "huami"; version = "0.0.1"; src = fetchHex { @@ -24724,40 +14301,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/yesmeck/huami.ex"; }; - } + } // packageOverrides) ) {}; huami = huami_0_0_1; - huex_0_5_0 = callPackage - ( - { buildMix, fetchHex, json_0_3_3, httpoison_0_8_2 }: - buildMix { - name = "huex"; - version = "0.5.0"; - src = fetchHex { - pkg = "huex"; - version = "0.5.0"; - sha256 = - "e5fe37fdc4299567922697516df8ade2f64d2c1573dc9a253e5037f66576858f"; - }; - beamDeps = [ json_0_3_3 httpoison_0_8_2 ]; - - meta = { - description = ''Elixir client for Philips Hue connected light - bulbs''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/xavier/huex"; - }; - } - ) {}; - - huex = huex_0_5_0; - hufflehoff_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "hufflehoff"; version = "0.0.1"; src = fetchHex { @@ -24772,15 +14324,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/sideshow/hufflehoff"; }; - } + } // packageOverrides) ) {}; hufflehoff = hufflehoff_0_0_1; huffman_1_1_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "huffman"; version = "1.1.1"; src = fetchHex { @@ -24795,15 +14347,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/SenecaSystems/huffman"; }; - } + } // packageOverrides) ) {}; huffman = huffman_1_1_1; hulaaki_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "hulaaki"; version = "0.0.2"; src = fetchHex { @@ -24819,54 +14371,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/suvash/hulaaki"; }; - } + } // packageOverrides) ) {}; hulaaki = hulaaki_0_0_2; - hydra_0_0_1 = callPackage - ( - { - buildMix, - fetchHex, - porcelain_2_0_1, - poison_1_5_2, - plug_1_1_3, - httpoison_0_8_2, - cowboy_1_0_4 - }: - buildMix { - name = "hydra"; - version = "0.0.1"; - src = fetchHex { - pkg = "hydra"; - version = "0.0.1"; - sha256 = - "ea35ec756dfaa0390ba53a0313bb50b924517f746922a98e3489bddf8e066b7d"; - }; - beamDeps = [ - porcelain_2_0_1 - poison_1_5_2 - plug_1_1_3 - httpoison_0_8_2 - cowboy_1_0_4 - ]; - - meta = { - description = ''A multi-headed beast: API gateway, request cache, - and data transformations''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/doomspork/hydra"; - }; - } - ) {}; - - hydra = hydra_0_0_1; - hypermedia_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "hypermedia"; version = "0.0.1"; src = fetchHex { @@ -24882,35 +14395,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/jurriaan/hypermedia"; }; - } + } // packageOverrides) ) {}; hypermedia = hypermedia_0_0_1; - hypermock_0_0_2 = callPackage - ( - { buildMix, fetchHex, meck_0_8_4 }: - buildMix { - name = "hypermock"; - version = "0.0.2"; - src = fetchHex { - pkg = "hypermock"; - version = "0.0.2"; - sha256 = - "dbb7ad24f651a3bb99475f39f9b0d6b7e9b3f959d8a80577ea6c803a5b548516"; - }; - beamDeps = [ meck_0_8_4 ]; - - meta = { }; - } - ) {}; - - hypermock = hypermock_0_0_2; - iam_role_1_0_0 = callPackage ( - { buildMix, fetchHex, jsone_1_2_1 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, jsone_1_2_1 }: + buildMix ({ name = "iam_role"; version = "1.0.0"; src = fetchHex { @@ -24927,15 +14420,15 @@ let 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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "ibrowse"; version = "4.2.2"; src = fetchHex { @@ -24950,40 +14443,15 @@ let license = with stdenv.lib.licenses; [ free bsd3 ]; homepage = "https://github.com/cmullaparthi/ibrowse"; }; - } + } // packageOverrides) ) {}; ibrowse = ibrowse_4_2_2; - iconv_1_0_0 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "iconv"; - version = "1.0.0"; - src = fetchHex { - pkg = "iconv"; - version = "1.0.0"; - sha256 = - "2ac0268bf0b392b86dca00b63d90595959ebc3dca6305284045592fa487e7204"; - }; - compilePorts = true; - - meta = { - description = ''Fast encoding conversion library for Erlang / - Elixir''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/processone/iconv"; - }; - } - ) {}; - - iconv = iconv_1_0_0; - identicon_0_2_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "identicon"; version = "0.2.0"; src = fetchHex { @@ -24999,15 +14467,15 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/rbishop/identicon"; }; - } + } // packageOverrides) ) {}; identicon = identicon_0_2_0; idna_1_0_2 = callPackage ( - { buildErlangMk, fetchHex }: - buildErlangMk { + { buildErlangMk, packageOverrides ? {}, fetchHex }: + buildErlangMk ({ name = "idna"; version = "1.0.2"; src = fetchHex { @@ -25022,13 +14490,13 @@ let homepage = "https://github.com/benoitc/erlang-idna"; }; - } + } // packageOverrides) ) {}; idna_1_0_3 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "idna"; version = "1.0.3"; src = fetchHex { @@ -25043,13 +14511,13 @@ let homepage = "https://github.com/benoitc/erlang-idna"; }; - } + } // packageOverrides) ) {}; idna_1_1_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "idna"; version = "1.1.0"; src = fetchHex { @@ -25064,13 +14532,13 @@ let homepage = "https://github.com/benoitc/erlang-idna"; }; - } + } // packageOverrides) ) {}; idna_1_2_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "idna"; version = "1.2.0"; src = fetchHex { @@ -25085,13 +14553,13 @@ let homepage = "https://github.com/benoitc/erlang-idna"; }; - } + } // packageOverrides) ) {}; idna_2_0_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "idna"; version = "2.0.0"; src = fetchHex { @@ -25106,15 +14574,15 @@ let homepage = "https://github.com/benoitc/erlang-idna"; }; - } + } // packageOverrides) ) {}; idna = idna_2_0_0; ieex_0_0_3 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ieex"; version = "0.0.3"; src = fetchHex { @@ -25130,66 +14598,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/edmaarcosta/IEEx"; }; - } + } // packageOverrides) ) {}; ieex = ieex_0_0_3; - ielixir_0_9_5 = callPackage - ( - { buildMix, fetchHex, sqlite_ecto_0_5_0, ecto_0_15_0 }: - buildMix { - name = "ielixir"; - version = "0.9.5"; - src = fetchHex { - pkg = "ielixir"; - version = "0.9.5"; - sha256 = - "77dae7b4b147da21161b6de0662d3bdeb13d15b12866b2e67add5ec3c550b7ce"; - }; - beamDeps = [ sqlite_ecto_0_5_0 ecto_0_15_0 ]; - - meta = { - description = ''Jupyter`s kernel for Elixir programming - language''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/pprzetacznik/ielixir"; - }; - } - ) {}; - - ielixir = ielixir_0_9_5; - - ifttt_oauth_0_0_1 = callPackage - ( - { buildMix, fetchHex, oauth2_0_6_0 }: - buildMix { - name = "ifttt_oauth"; - version = "0.0.1"; - src = fetchHex { - pkg = "ifttt_oauth"; - version = "0.0.1"; - sha256 = - "9029506687be770891b3fb54d9e39bab9dd0f65a9551c6b335a3b0a60dc3026c"; - }; - beamDeps = [ oauth2_0_6_0 ]; - - meta = { - longDescription = ''A simple Elixir wrapper around - scrogson/oauth2 to retrieve IFTTT Bearer tokens - from their mobile api.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/nickgal/ifttt_oauth"; - }; - } - ) {}; - - ifttt_oauth = ifttt_oauth_0_0_1; - imagineer_0_2_1 = callPackage ( - { buildMix, fetchHex, apex_0_3_7 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, apex_0_3_7 }: + buildMix ({ name = "imagineer"; version = "0.2.1"; src = fetchHex { @@ -25205,15 +14622,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/SenecaSystems/imagineer"; }; - } + } // packageOverrides) ) {}; imagineer = imagineer_0_2_1; imgex_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "imgex"; version = "0.1.0"; src = fetchHex { @@ -25229,15 +14646,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/ianwalter/imgex"; }; - } + } // packageOverrides) ) {}; imgex = imgex_0_1_0; immortal_0_2_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "immortal"; version = "0.2.0"; src = fetchHex { @@ -25252,108 +14669,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/danielberkompas/immortal"; }; - } + } // packageOverrides) ) {}; immortal = immortal_0_2_0; - inaka_aleppo_0_9_9 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "inaka_aleppo"; - version = "0.9.9"; - src = fetchHex { - pkg = "inaka_aleppo"; - version = "0.9.9"; - sha256 = - "11c09648e42b5755a437319a12826c17344a162db73dd2880457b0fa3a1ce1ff"; - }; - - meta = { - description = ''Aleppo: ALternative Erlang Pre-ProcessOr''; - - homepage = "https://github.com/inaka/aleppo"; - }; - } - ) {}; - - inaka_aleppo = inaka_aleppo_0_9_9; - - inaka_mixer_0_1_5 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "inaka_mixer"; - version = "0.1.5"; - src = fetchHex { - pkg = "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; - - inch_ex_0_5_1 = callPackage - ( - { buildMix, fetchHex, poison_1_0_3 }: - buildMix { - name = "inch_ex"; - version = "0.5.1"; - src = fetchHex { - pkg = "inch_ex"; - version = "0.5.1"; - sha256 = - "4d0aaefa4928fdc4758118a37dccb5b90805559ada3f652ca157f66ea268ea20"; - }; - beamDeps = [ poison_1_0_3 ]; - - meta = { - description = ''Provides a Mix task that gives you hints where to - improve your inline docs''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/rrrene/inch_ex"; - }; - } - ) {}; - - inch_ex = inch_ex_0_5_1; - - inch_test_0_0_1 = callPackage - ( - { - buildMix, fetchHex, inch_ex_0_5_1, ex_doc_0_11_4, earmark_0_2_1 - }: - buildMix { - name = "inch_test"; - version = "0.0.1"; - src = fetchHex { - pkg = "inch_test"; - version = "0.0.1"; - sha256 = - "41405c11b22fad3f3b49127f881c2c4c79b206c04b8cb77268828380779a374d"; - }; - beamDeps = [ inch_ex_0_5_1 ex_doc_0_11_4 earmark_0_2_1 ]; - - meta = { }; - } - ) {}; - - inch_test = inch_test_0_0_1; - indefinite_article_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "indefinite_article"; version = "0.0.1"; src = fetchHex { @@ -25369,15 +14693,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "inet_cidr"; version = "1.0.1"; src = fetchHex { @@ -25394,15 +14718,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "inflex"; version = "0.2.4"; src = fetchHex { @@ -25418,13 +14742,13 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/nurugger07/inflex"; }; - } + } // packageOverrides) ) {}; inflex_0_3_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "inflex"; version = "0.3.0"; src = fetchHex { @@ -25440,13 +14764,13 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/nurugger07/inflex"; }; - } + } // packageOverrides) ) {}; inflex_1_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "inflex"; version = "1.0.0"; src = fetchHex { @@ -25462,13 +14786,13 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/nurugger07/inflex"; }; - } + } // packageOverrides) ) {}; inflex_1_4_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "inflex"; version = "1.4.1"; src = fetchHex { @@ -25484,13 +14808,13 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/nurugger07/inflex"; }; - } + } // packageOverrides) ) {}; inflex_1_5_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "inflex"; version = "1.5.0"; src = fetchHex { @@ -25506,15 +14830,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/nurugger07/inflex"; }; - } + } // packageOverrides) ) {}; inflex = inflex_1_5_0; ini_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ini"; version = "0.0.1"; src = fetchHex { @@ -25529,40 +14853,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/nathanjohnson320/ini"; }; - } + } // packageOverrides) ) {}; ini = ini_0_0_1; - inquisitor_0_1_0 = callPackage - ( - { buildMix, fetchHex, ecto_2_0_0_beta_2 }: - buildMix { - name = "inquisitor"; - version = "0.1.0"; - src = fetchHex { - pkg = "inquisitor"; - version = "0.1.0"; - sha256 = - "06a2cbfba419cc1d81f9c6a62a7f501f3aabaf991b514aa2b012c582c50609bd"; - }; - beamDeps = [ ecto_2_0_0_beta_2 ]; - - meta = { - description = ''Easily build extendable and composable Ecto - queries.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/dockyard/inquisitor"; - }; - } - ) {}; - - inquisitor = inquisitor_0_1_0; - insert_ordered_set_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "insert_ordered_set"; version = "0.0.1"; src = fetchHex { @@ -25582,40 +14881,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/localshred/insert_ordered_set"; }; - } + } // packageOverrides) ) {}; insert_ordered_set = insert_ordered_set_0_0_1; - insight_0_1_3 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "insight"; - version = "0.1.3"; - src = fetchHex { - pkg = "insight"; - version = "0.1.3"; - sha256 = - "5d7519317e4235d56128bef37a5319308921eab748df3295f1fa2842763a6ea3"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''Elixir package for consuming any Insight-powered - Bitcoin explorer.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/stampery/elixir-insight"; - }; - } - ) {}; - - insight = insight_0_1_3; - insights_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "insights"; version = "0.0.2"; src = fetchHex { @@ -25631,41 +14905,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/gullitmiranda/insights"; }; - } + } // packageOverrides) ) {}; insights = insights_0_0_2; - instream_0_10_0 = callPackage - ( - { - buildMix, fetchHex, poolboy_1_5_1, poison_1_0_3, hackney_1_6_0 - }: - buildMix { - name = "instream"; - version = "0.10.0"; - src = fetchHex { - pkg = "instream"; - version = "0.10.0"; - sha256 = - "e43e1400c6c177cb3295585b2d29312571b1f8aaea643b4f605705db858283c4"; - }; - beamDeps = [ poolboy_1_5_1 poison_1_0_3 hackney_1_6_0 ]; - - meta = { - description = ''InfluxDB driver for Elixir''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/mneudert/instream"; - }; - } - ) {}; - - instream = instream_0_10_0; - instrumental_0_1_3 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "instrumental"; version = "0.1.3"; src = fetchHex { @@ -25681,66 +14929,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/undeadlabs/instrumental-ex"; }; - } + } // packageOverrides) ) {}; instrumental = instrumental_0_1_3; - intellij_elixir_0_1_2 = callPackage - ( - { buildMix, fetchHex, exrm_0_14_17 }: - buildMix { - name = "intellij_elixir"; - version = "0.1.2"; - src = fetchHex { - pkg = "intellij_elixir"; - version = "0.1.2"; - sha256 = - "023e970e20ef19dbd6e818708c687faf9b47b525b9771bc910a4e48adc101a46"; - }; - beamDeps = [ exrm_0_14_17 ]; - - meta = { - longDescription = ''IntellijElixir allows intellij-elixir to ask - Elixir for the native quoted form of code to - check that intellij-elixir`s quoted form - matches. ''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/KronicDeth/intellij_elixir"; - }; - } - ) {}; - - intellij_elixir = intellij_elixir_0_1_2; - - iona_0_2_1 = callPackage - ( - { buildMix, fetchHex, porcelain_2_0_1, briefly_0_3_0 }: - buildMix { - name = "iona"; - version = "0.2.1"; - src = fetchHex { - pkg = "iona"; - version = "0.2.1"; - sha256 = - "6c990a1a3dcf144f26d5ce773b4f4538c53ed259c775818991bd28f516317bd5"; - }; - beamDeps = [ porcelain_2_0_1 briefly_0_3_0 ]; - - meta = { - description = ''Document generation using LaTeX''; - license = stdenv.lib.licenses.apsl20; - homepage = "https://github.com/CargoSense/iona"; - }; - } - ) {}; - - iona = iona_0_2_1; - iplist_1_0_2 = callPackage ( - { buildMix, fetchHex, earmark_0_2_1, cidr_1_0_0 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + earmark_0_2_1, + cidr_1_0_0 + }: + buildMix ({ name = "iplist"; version = "1.0.2"; src = fetchHex { @@ -25757,15 +14960,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/digitalronin/iplist"; }; - } + } // packageOverrides) ) {}; iplist = iplist_1_0_2; iptools_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "iptools"; version = "0.0.1"; src = fetchHex { @@ -25781,15 +14984,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/blackfist/iptools"; }; - } + } // packageOverrides) ) {}; iptools = iptools_0_0_1; is_chinese_1_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "is_chinese"; version = "1.0.0"; src = fetchHex { @@ -25804,15 +15007,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "is_email"; version = "0.0.2"; src = fetchHex { @@ -25828,15 +15031,15 @@ let 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, fetchHex, httpotion_2_2_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, httpotion_2_2_2 }: + buildMix ({ name = "is_up"; version = "1.0.0"; src = fetchHex { @@ -25852,15 +15055,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "is_url"; version = "0.0.1"; src = fetchHex { @@ -25875,15 +15078,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "isaac"; version = "0.0.1"; src = fetchHex { @@ -25904,65 +15107,21 @@ let license = stdenv.lib.licenses.free; homepage = "https://github.com/arianvp/elixir-isaac"; }; - } + } // packageOverrides) ) {}; isaac = isaac_0_0_1; - isbndbex_0_0_1 = callPackage - ( - { - buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2, credo_0_3_2 - }: - buildMix { - name = "isbndbex"; - version = "0.0.1"; - src = fetchHex { - pkg = "isbndbex"; - version = "0.0.1"; - sha256 = - "565fe2ea413d0ec50d51c166ad1dd5dc840c3cdb01e70467484017aa6b14d1f9"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 credo_0_3_2 ]; - - meta = { - description = ''Elixir wrapper for isbndb.com json api.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/rcoedo/isbndbex"; - }; - } - ) {}; - - isbndbex = isbndbex_0_0_1; - - isn_1_0_0 = callPackage - ( - { buildMix, fetchHex, postgrex_0_11_1, ecto_2_0_0_beta_2 }: - buildMix { - name = "isn"; - version = "1.0.0"; - src = fetchHex { - pkg = "isn"; - version = "1.0.0"; - sha256 = - "08fe62a8fa20333f65e750d7e4abe8c2f215994e514e495178fa718b5a4e3673"; - }; - beamDeps = [ postgrex_0_11_1 ecto_2_0_0_beta_2 ]; - - meta = { - description = ''Ecto types for the postgreSQL isn extension.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/Frost/isn"; - }; - } - ) {}; - - isn = isn_1_0_0; - iso3166_0_0_3 = callPackage ( - { buildMix, fetchHex, poison_2_1_0, floki_0_8_0 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_2_1_0, + floki_0_8_0 + }: + buildMix ({ name = "iso3166"; version = "0.0.3"; src = fetchHex { @@ -25981,174 +15140,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/joelpm/iso3166ex"; }; - } + } // packageOverrides) ) {}; iso3166 = iso3166_0_0_3; - ja_serializer_0_8_1 = callPackage - ( - { - buildMix, - fetchHex, - scrivener_1_1_2, - poison_1_0_3, - plug_1_1_3, - inflex_1_5_0, - ecto_2_0_0_beta_2 - }: - buildMix { - name = "ja_serializer"; - version = "0.8.1"; - src = fetchHex { - pkg = "ja_serializer"; - version = "0.8.1"; - sha256 = - "5f68d075f32456e6de55297601c65a8b2a8144135c6adbb51d13c6d0db338b93"; - }; - beamDeps = [ - scrivener_1_1_2 - poison_1_0_3 - plug_1_1_3 - inflex_1_5_0 - ecto_2_0_0_beta_2 - ]; - - meta = { - longDescription = ''A serialization library implementing the - jsonapi.org 1.0 spec suitable for use building - JSON APIs in Pheonix, Relax, or any other plug - based framework/library.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/AgilionApps/ja_serializer"; - }; - } - ) {}; - - ja_serializer = ja_serializer_0_8_1; - - janrain_0_0_1 = callPackage - ( - { buildMix, fetchHex, httpoison_0_8_2 }: - buildMix { - name = "janrain"; - version = "0.0.1"; - src = fetchHex { - pkg = "janrain"; - version = "0.0.1"; - sha256 = - "35299ee088dfd5647e7a5cd129d5011f2d6319fe53045b2a8ce3ddf70792cc78"; - }; - beamDeps = [ httpoison_0_8_2 ]; - - meta = { - longDescription = ''A small library to help with Janrain logins. - Probably most useful when used in conjuction - with Phoenix and Guardian.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/rickr/janrain"; - }; - } - ) {}; - - janrain = janrain_0_0_1; - - japanese_holiday_0_0_2 = callPackage - ( - { buildMix, fetchHex, timex_0_12_9 }: - buildMix { - name = "japanese_holiday"; - version = "0.0.2"; - src = fetchHex { - pkg = "japanese_holiday"; - version = "0.0.2"; - sha256 = - "3363e2062dbdad48de88d092c549e8b55eecc2d86a61168578e54e6ba9065eaf"; - }; - beamDeps = [ timex_0_12_9 ]; - - meta = { - description = ''An elixir library for japanese holiday ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/Joe-noh/japanese_holiday"; - }; - } - ) {}; - - japanese_holiday = japanese_holiday_0_0_2; - - jazz_0_1_2 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "jazz"; - version = "0.1.2"; - src = fetchHex { - pkg = "jazz"; - version = "0.1.2"; - sha256 = - "db316e2334f3dc3745dc208eba1900471d52713e2c65b7b83cb913deffd5f4a7"; - }; - - meta = { - description = ''JSON handling library for Elixir.''; - license = stdenv.lib.licenses.wtfpl; - homepage = "https://github.com/meh/jazz"; - }; - } - ) {}; - - jazz_0_2_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "jazz"; - version = "0.2.1"; - src = fetchHex { - pkg = "jazz"; - version = "0.2.1"; - sha256 = - "1c239947305efba0f3e48786a815fd512d49af4acf61914c03ebb18cc79c0477"; - }; - - meta = { - description = ''JSON handling library for Elixir.''; - license = stdenv.lib.licenses.wtfpl; - homepage = "https://github.com/meh/jazz"; - }; - } - ) {}; - - jazz = jazz_0_2_1; - - jc_1_0_4 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "jc"; - version = "1.0.4"; - src = fetchHex { - pkg = "jc"; - version = "1.0.4"; - sha256 = - "8bcfe202084109fc80fcf521e630466fc53cbb909aff4283bed43252664023df"; - }; - - meta = { - description = ''A simple, distributed, in-memory caching - system''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/jr0senblum/jc"; - }; - } - ) {}; - - jc = jc_1_0_4; - jequalson_0_1_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "jequalson"; version = "0.1.1"; src = fetchHex { @@ -26163,15 +15163,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/dm1try/jequalson"; }; - } + } // packageOverrides) ) {}; jequalson = jequalson_0_1_1; jesse_0_1_3 = callPackage ( - { buildRebar3, fetchHex, jsx_2_8_0 }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex, jsx_2_8_0 }: + buildRebar3 ({ name = "jesse"; version = "0.1.3"; src = fetchHex { @@ -26188,15 +15188,15 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/for-GET/jesse"; }; - } + } // packageOverrides) ) {}; jesse = jesse_0_1_3; jiffy_0_14_7 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "jiffy"; version = "0.14.7"; src = fetchHex { @@ -26212,40 +15212,15 @@ let license = with stdenv.lib.licenses; [ mit bsd3 ]; homepage = "https://github.com/davisp/jiffy"; }; - } + } // packageOverrides) ) {}; jiffy = jiffy_0_14_7; - jira_0_0_8 = callPackage - ( - { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: - buildMix { - name = "jira"; - version = "0.0.8"; - src = fetchHex { - pkg = "jira"; - version = "0.0.8"; - sha256 = - "71c19ef23ea7351a2dc7b8f14d0c5794ff00382fa43a88a2235ec9c1741a73cb"; - }; - beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; - - meta = { - description = ''An Elixir client library for JIRA + JIRA Agile / - Greenhopper''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/jeffweiss/jira"; - }; - } - ) {}; - - jira = jira_0_0_8; - jobspool_0_1_0 = callPackage ( - { buildMix, fetchHex, uuid_1_1_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, uuid_1_1_3 }: + buildMix ({ name = "jobspool"; version = "0.1.0"; src = fetchHex { @@ -26261,15 +15236,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/flupke/exjobspool"; }; - } + } // packageOverrides) ) {}; jobspool = jobspool_0_1_0; joken_0_13_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "joken"; version = "0.13.1"; src = fetchHex { @@ -26284,13 +15259,20 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/bryanjos/joken"; }; - } + } // packageOverrides) ) {}; joken_0_16_1 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, plug_1_1_3, jose_1_7_3 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_5_2, + plug_1_1_3, + jose_1_7_3 + }: + buildMix ({ name = "joken"; version = "0.16.1"; src = fetchHex { @@ -26306,37 +15288,20 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/bryanjos/joken"; }; - } + } // packageOverrides) ) {}; - joken_1_1_0 = callPackage - ( - { buildMix, fetchHex, poison_1_0_3, plug_1_1_3, jose_1_7_3 }: - buildMix { - name = "joken"; - version = "1.1.0"; - src = fetchHex { - pkg = "joken"; - version = "1.1.0"; - sha256 = - "05e3ff0799b97b8513a5a17a8f57b1d7ee250f32561e559c997c0ecbea462287"; - }; - beamDeps = [ poison_1_0_3 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"; - }; - } - ) {}; - - joken = joken_1_1_0; - jolt_0_1_0 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, plug_1_1_3, cowboy_1_0_4 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_5_2, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ name = "jolt"; version = "0.1.0"; src = fetchHex { @@ -26355,15 +15320,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/clarkware/jolt"; }; - } + } // packageOverrides) ) {}; jolt = jolt_0_1_0; jorel_mix_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "jorel_mix"; version = "0.0.1"; src = fetchHex { @@ -26378,15 +15343,15 @@ let 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, fetchHex, base64url_0_0_1 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, base64url_0_0_1 }: + buildMix ({ name = "jose"; version = "1.4.2"; src = fetchHex { @@ -26403,13 +15368,13 @@ let license = stdenv.lib.licenses.mpl20; homepage = "https://github.com/potatosalad/erlang-jose"; }; - } + } // packageOverrides) ) {}; jose_1_7_3 = callPackage ( - { buildMix, fetchHex, base64url_0_0_1 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, base64url_0_0_1 }: + buildMix ({ name = "jose"; version = "1.7.3"; src = fetchHex { @@ -26426,15 +15391,15 @@ let license = stdenv.lib.licenses.mpl20; homepage = "https://github.com/potatosalad/erlang-jose"; }; - } + } // packageOverrides) ) {}; jose = jose_1_7_3; jsex_2_0_0 = callPackage ( - { buildMix, fetchHex, jsx_2_8_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, jsx_2_8_0 }: + buildMix ({ name = "jsex"; version = "2.0.0"; src = fetchHex { @@ -26450,15 +15415,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/talentdeficit/jsex"; }; - } + } // packageOverrides) ) {}; jsex = jsex_2_0_0; json_0_3_3 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "json"; version = "0.3.3"; src = fetchHex { @@ -26474,15 +15439,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "json_diff_ex"; version = "0.5.0"; src = fetchHex { @@ -26497,15 +15462,15 @@ let 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, fetchHex, json_0_3_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, json_0_3_3 }: + buildMix ({ name = "json_logger"; version = "0.5.1"; src = fetchHex { @@ -26522,15 +15487,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "json_pointer"; version = "0.0.2"; src = fetchHex { @@ -26547,15 +15512,15 @@ let 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, fetchHex, poison_1_5_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }: + buildMix ({ name = "json_web_token"; version = "0.2.4"; src = fetchHex { @@ -26572,15 +15537,15 @@ let 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, fetchHex, plug_1_1_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ name = "jsonapi"; version = "0.1.0"; src = fetchHex { @@ -26593,20 +15558,20 @@ let meta = { longDescription = ''Fully functional JSONAPI V1 Serializer as - well as a QueryParser for Plug bases projects + 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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "jsone"; version = "1.2.1"; src = fetchHex { @@ -26621,15 +15586,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/sile/jsone"; }; - } + } // packageOverrides) ) {}; jsone = jsone_1_2_1; jsx_1_4_5 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "jsx"; version = "1.4.5"; src = fetchHex { @@ -26646,13 +15611,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/talentdeficit/jsx"; }; - } + } // packageOverrides) ) {}; jsx_2_3_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "jsx"; version = "2.3.1"; src = fetchHex { @@ -26669,13 +15634,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/talentdeficit/jsx"; }; - } + } // packageOverrides) ) {}; jsx_2_4_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "jsx"; version = "2.4.0"; src = fetchHex { @@ -26692,13 +15657,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/talentdeficit/jsx"; }; - } + } // packageOverrides) ) {}; jsx_2_6_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "jsx"; version = "2.6.1"; src = fetchHex { @@ -26715,13 +15680,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/talentdeficit/jsx"; }; - } + } // packageOverrides) ) {}; jsx_2_6_2 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "jsx"; version = "2.6.2"; src = fetchHex { @@ -26738,13 +15703,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/talentdeficit/jsx"; }; - } + } // packageOverrides) ) {}; jsx_2_7_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "jsx"; version = "2.7.1"; src = fetchHex { @@ -26761,13 +15726,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/talentdeficit/jsx"; }; - } + } // packageOverrides) ) {}; jsx_2_8_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "jsx"; version = "2.8.0"; src = fetchHex { @@ -26784,15 +15749,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/talentdeficit/jsx"; }; - } + } // packageOverrides) ) {}; jsx = jsx_2_8_0; jsxd_0_1_10 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "jsxd"; version = "0.1.10"; src = fetchHex { @@ -26808,40 +15773,15 @@ let license = stdenv.lib.licenses.cddl; homepage = "https://github.com/Licenser/jsxd"; }; - } + } // packageOverrides) ) {}; jsxd = jsxd_0_1_10; - jsxn_0_2_1 = callPackage - ( - { buildRebar3, fetchHex, jsx_2_8_0 }: - buildRebar3 { - name = "jsxn"; - version = "0.2.1"; - src = fetchHex { - pkg = "jsxn"; - version = "0.2.1"; - sha256 = - "122a52538dc34ddf4a6efcaeb9744fc948d132f3608e96f109a0d1a054fd1f57"; - }; - - beamDeps = [ jsx_2_8_0 ]; - - meta = { - description = ''jsx but with maps''; - - homepage = "https://github.com/talentdeficit/jsxn"; - }; - } - ) {}; - - jsxn = jsxn_0_2_1; - junit_formatter_1_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "junit_formatter"; version = "1.0.0"; src = fetchHex { @@ -26859,15 +15799,15 @@ let 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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "jwalk"; version = "1.1.2"; src = fetchHex { @@ -26884,15 +15824,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/jr0senblum/jwalk"; }; - } + } // packageOverrides) ) {}; jwalk = jwalk_1_1_2; jwt_0_1_2 = callPackage ( - { buildRebar3, fetchHex, jsx_2_8_0, base64url_0_0_1 }: - buildRebar3 { + { + buildRebar3, + packageOverrides ? {}, + fetchHex, + jsx_2_8_0, + base64url_0_0_1 + }: + buildRebar3 ({ name = "jwt"; version = "0.1.2"; src = fetchHex { @@ -26909,15 +15855,17 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/artemeff/jwt"; }; - } + } // packageOverrides) ) {}; jwt = jwt_0_1_2; jwt_claims_0_0_3 = callPackage ( - { buildMix, fetchHex, json_web_token_0_2_4 }: - buildMix { + { + buildMix, packageOverrides ? {}, fetchHex, json_web_token_0_2_4 + }: + buildMix ({ name = "jwt_claims"; version = "0.0.3"; src = fetchHex { @@ -26934,15 +15882,15 @@ let 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, fetchHex, poison_1_3_1 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, poison_1_3_1 }: + buildMix ({ name = "jwtex"; version = "0.0.1"; src = fetchHex { @@ -26958,15 +15906,15 @@ let license = stdenv.lib.licenses.mit; homepage = "http://github.com/mschae/jwtex"; }; - } + } // packageOverrides) ) {}; jwtex = jwtex_0_0_1; k6_bytea_1_1_5 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "k6_bytea"; version = "1.1.5"; src = fetchHex { @@ -26976,20 +15924,22 @@ let "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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "kafka_ex"; version = "0.5.0"; src = fetchHex { @@ -27004,15 +15954,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "kaguya"; version = "0.4.1"; src = fetchHex { @@ -27030,15 +15980,21 @@ let license = stdenv.lib.licenses.isc; homepage = "https://github.com/Luminarys/Kaguya"; }; - } + } // packageOverrides) ) {}; kaguya = kaguya_0_4_1; kalecto_0_3_3 = callPackage ( - { buildRebar3, fetchHex, kalends_0_6_5, ecto_0_16_0 }: - buildRebar3 { + { + buildRebar3, + packageOverrides ? {}, + fetchHex, + kalends_0_6_5, + ecto_0_16_0 + }: + buildRebar3 ({ name = "kalecto"; version = "0.3.3"; src = fetchHex { @@ -27057,15 +16013,17 @@ let homepage = "https://github.com/lau/kalecto"; }; - } + } // packageOverrides) ) {}; kalecto = kalecto_0_3_3; kalends_0_6_5 = callPackage ( - { buildRebar3, fetchHex, tzdata_0_1_201603 }: - buildRebar3 { + { + buildRebar3, packageOverrides ? {}, fetchHex, tzdata_0_1_201603 + }: + buildRebar3 ({ name = "kalends"; version = "0.6.5"; src = fetchHex { @@ -27084,76 +16042,22 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/lau/kalends"; }; - } + } // packageOverrides) ) {}; kalends = kalends_0_6_5; - kane_0_0_5 = callPackage - ( - { - buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2, goth_0_0_3 - }: - buildMix { - name = "kane"; - version = "0.0.5"; - src = fetchHex { - pkg = "kane"; - version = "0.0.5"; - sha256 = - "e4865178b16793d4f947dee2f21448b3639fad2b1edeb515df67707cf30dc2c3"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 goth_0_0_3 ]; - - meta = { - longDescription = ''A library for interacting with Google Cloud - Pub/Sub (PubSub). Supports both publication and - pull subscription''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/peburrows/kane"; - }; - } - ) {}; - - kane = kane_0_0_5; - - katipo_0_3_2 = callPackage - ( - { - buildRebar3, fetchHex, quintana_0_2_0, gproc_0_5_0, cowlib_1_0_0 - }: - buildRebar3 { - name = "katipo"; - version = "0.3.2"; - src = fetchHex { - pkg = "katipo"; - version = "0.3.2"; - sha256 = - "b940c01fcffd5609bf325eb15b7e6bfbbf19f57b9fa39d7117cf16b8d0df0890"; - }; - compilePorts = true; - beamDeps = [ quintana_0_2_0 gproc_0_5_0 cowlib_1_0_0 ]; - - meta = { - description = ''HTTP client based on libcurl''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/puzza007/katipo"; - }; - } - ) {}; - - katipo = katipo_0_3_2; - kcl_0_4_1 = callPackage ( { buildMix, + packageOverrides ? {}, fetchHex, salsa20_0_3_0, poly1305_0_4_0, curve25519_0_1_0 }: - buildMix { + buildMix ({ name = "kcl"; version = "0.4.1"; src = fetchHex { @@ -27169,65 +16073,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/mwmiller/kcl"; }; - } + } // packageOverrides) ) {}; kcl = kcl_0_4_1; - keccakf1600_2_0_0 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "keccakf1600"; - version = "2.0.0"; - src = fetchHex { - pkg = "keccakf1600"; - version = "2.0.0"; - sha256 = - "bf381475f5d1daf1df2f46bf24d1d4b91debb638b5a6b014cdce40e32eee8f07"; - }; - compilePorts = true; - - meta = { - description = ''Keccak-f[1600] asynchronous port driver''; - license = stdenv.lib.licenses.mpl20; - homepage = "https://github.com/potatosalad/erlang-keccakf1600"; - }; - } - ) {}; - - keccakf1600 = keccakf1600_2_0_0; - - keelless_0_1_0 = callPackage - ( - { - buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2, hackney_1_4_4 - }: - buildMix { - name = "keelless"; - version = "0.1.0"; - src = fetchHex { - pkg = "keelless"; - version = "0.1.0"; - sha256 = - "b038600bb0520975a052fe6852a2dcd0dbd1069309134c617519079037d6927e"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 hackney_1_4_4 ]; - - meta = { - description = ''Keen IO API for Elixir.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/hpyhacking/keelless"; - }; - } - ) {}; - - keelless = keelless_0_1_0; - keenex_0_2_0 = callPackage ( - { buildMix, fetchHex, poison_1_3_1, httpotion_2_2_2 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_3_1, + httpotion_2_2_2 + }: + buildMix ({ name = "keenex"; version = "0.2.0"; src = fetchHex { @@ -27243,41 +16103,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/bryanjos/keenex"; }; - } + } // packageOverrides) ) {}; keenex = keenex_0_2_0; - kerosene_0_0_1 = callPackage - ( - { - buildMix, fetchHex, phoenix_html_2_0_0_dev, ecto_2_0_0_beta_2 - }: - buildMix { - name = "kerosene"; - version = "0.0.1"; - src = fetchHex { - pkg = "kerosene"; - version = "0.0.1"; - sha256 = - "a4a54d2ac3179a4b14b2c115740294003cae23cf30adaad203310d79451d5ddd"; - }; - beamDeps = [ phoenix_html_2_0_0_dev ecto_2_0_0_beta_2 ]; - - meta = { - description = ''Pagination for Ecto and Phoenix.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/elixirdrops/kerosene"; - }; - } - ) {}; - - kerosene = kerosene_0_0_1; - key2value_1_5_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "key2value"; version = "1.5.1"; src = fetchHex { @@ -27292,15 +16126,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/okeuday/key2value"; }; - } + } // packageOverrides) ) {}; key2value = key2value_1_5_1; keys1value_1_5_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "keys1value"; version = "1.5.1"; src = fetchHex { @@ -27315,41 +16149,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/okeuday/keys1value"; }; - } + } // packageOverrides) ) {}; keys1value = keys1value_1_5_1; - kindred_0_0_1 = callPackage - ( - { - buildMix, fetchHex, poison_2_0_1, httpoison_0_8_2, ex_rated_1_2_2 - }: - buildMix { - name = "kindred"; - version = "0.0.1"; - src = fetchHex { - pkg = "kindred"; - version = "0.0.1"; - sha256 = - "48b229e007f3d6d06e38f49c85598c20fb6e76d92afd441a86fdee931c2f5fc2"; - }; - beamDeps = [ poison_2_0_1 httpoison_0_8_2 ex_rated_1_2_2 ]; - - meta = { - description = ''League of Legends API client written in Elixir''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/matthewferderber/kindred"; - }; - } - ) {}; - - kindred = kindred_0_0_1; - kitsune_0_5_2 = callPackage ( - { buildMix, fetchHex, poison_1_5_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }: + buildMix ({ name = "kitsune"; version = "0.5.2"; src = fetchHex { @@ -27367,87 +16175,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/edubkendo/kitsune"; }; - } + } // packageOverrides) ) {}; kitsune = kitsune_0_5_2; - kovacs_0_9_2 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "kovacs"; - version = "0.9.2"; - src = fetchHex { - pkg = "kovacs"; - version = "0.9.2"; - sha256 = - "0d6fc6830f0d22e793b2472d8808e86384596e26b7bdd17becba3af7f0a8495e"; - }; - - meta = { - longDescription = ''Kovacs - A simple ExUnit test runner It will - monitor the file system and run test files when - it detects changes. ''; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/antp/kovacs"; - }; - } - ) {}; - - kovacs = kovacs_0_9_2; - - kubex_0_1_1 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "kubex"; - version = "0.1.1"; - src = fetchHex { - pkg = "kubex"; - version = "0.1.1"; - sha256 = - "b0bd22246731b1c4d4d7f832cd0015fd6586022c779fb6672f45a648da7dcf79"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''Kubernetes integration for and in pure Elixir.''; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/ingerslevio/kubex"; - }; - } - ) {}; - - kubex = kubex_0_1_1; - - kvs_2_1_0 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "kvs"; - version = "2.1.0"; - src = fetchHex { - pkg = "kvs"; - version = "2.1.0"; - sha256 = - "c06382e4dbe8a7dc58201187ddd303e5b1e546713da3a3813863fe62e63dc4c7"; - }; - - meta = { - description = ''Erlang Abstract Database''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/synrc/kvs"; - }; - } - ) {}; - - kvs = kvs_2_1_0; - kwfuns_0_0_4 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "kwfuns"; version = "0.0.4"; src = fetchHex { @@ -27462,42 +16198,22 @@ let 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''; + 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_2_1_1 = callPackage - ( - { buildErlangMk, fetchHex, goldrush_0_1_7 }: - buildErlangMk { - name = "lager"; - version = "2.1.1"; - src = fetchHex { - pkg = "lager"; - version = "2.1.1"; - sha256 = - "5eb1c17ff0f8692285b7648ef5d827d492b8d7554da782afc300ebb4861d5aba"; - }; - beamDeps = [ goldrush_0_1_7 ]; - - meta = { - description = ''Erlang logging framework''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/basho/lager"; - }; - } - ) {}; - lager_3_0_1 = callPackage ( - { buildRebar3, fetchHex, goldrush_0_1_7 }: - buildRebar3 { + { + buildRebar3, packageOverrides ? {}, fetchHex, goldrush_0_1_7 + }: + buildRebar3 ({ name = "lager"; version = "3.0.1"; src = fetchHex { @@ -27514,13 +16230,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/basho/lager"; }; - } + } // packageOverrides) ) {}; lager_3_0_2 = callPackage ( - { buildRebar3, fetchHex, goldrush_0_1_7 }: - buildRebar3 { + { + buildRebar3, packageOverrides ? {}, fetchHex, goldrush_0_1_7 + }: + buildRebar3 ({ name = "lager"; version = "3.0.2"; src = fetchHex { @@ -27537,15 +16255,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/basho/lager"; }; - } + } // packageOverrides) ) {}; lager = lager_3_0_2; lager_graylog_0_1_0 = callPackage ( - { buildRebar3, fetchHex, lager_3_0_2 }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex, lager_3_0_2 }: + buildRebar3 ({ name = "lager_graylog"; version = "0.1.0"; src = fetchHex { @@ -27562,15 +16280,15 @@ let 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, fetchHex, lager_3_0_2 }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex, lager_3_0_2 }: + buildRebar3 ({ name = "lager_hipchat"; version = "0.2.0"; src = fetchHex { @@ -27587,15 +16305,15 @@ let 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, fetchHex, lager_3_0_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, lager_3_0_2 }: + buildMix ({ name = "lager_logger"; version = "1.0.2"; src = fetchHex { @@ -27612,15 +16330,21 @@ let 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, fetchHex, lager_3_0_2, jsx_2_6_1 }: - buildRebar3 { + { + buildRebar3, + packageOverrides ? {}, + fetchHex, + lager_3_0_2, + jsx_2_6_1 + }: + buildRebar3 ({ name = "lager_logstash_backend"; version = "0.1.0"; src = fetchHex { @@ -27637,64 +16361,15 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/inaka/lager_logstash_backend.git"; }; - } + } // packageOverrides) ) {}; lager_logstash_backend = lager_logstash_backend_0_1_0; - lager_watchdog_0_1_10 = callPackage - ( - { buildRebar3, fetchHex, lager_2_1_1 }: - buildRebar3 { - name = "lager_watchdog"; - version = "0.1.10"; - src = fetchHex { - pkg = "lager_watchdog"; - version = "0.1.10"; - sha256 = - "ac2a5f7d519fa69fff3d41c5c19419552085346f98de4378ca38efa81c322a94"; - }; - - beamDeps = [ lager_2_1_1 ]; - - meta = { - description = ''lager provider to send data to watchdog.''; - license = stdenv.lib.licenses.cddl; - homepage = "https://github.com/project-fifo/lager_watchdog"; - }; - } - ) {}; - - lager_watchdog = lager_watchdog_0_1_10; - - lasp_0_0_5 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "lasp"; - version = "0.0.5"; - src = fetchHex { - pkg = "lasp"; - version = "0.0.5"; - sha256 = - "0298ef6ad4a35a3ac93ad64c722adc852d45b2d9f8fb76b47edf257481150349"; - }; - - meta = { - description = ''Declarative, distributed, eventually consistent - compuations.''; - license = stdenv.lib.licenses.apsl20; - homepage = "https://github.com/lasp-lang/lasp"; - }; - } - ) {}; - - lasp = lasp_0_0_5; - lasse_1_1_0 = callPackage ( - { buildErlangMk, fetchHex }: - buildErlangMk { + { buildErlangMk, packageOverrides ? {}, fetchHex }: + buildErlangMk ({ name = "lasse"; version = "1.1.0"; src = fetchHex { @@ -27709,65 +16384,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/inaka/lasse"; }; - } + } // packageOverrides) ) {}; lasse = lasse_1_1_0; - lazymaru_0_2_5 = callPackage - ( - { buildMix, fetchHex, poison_1_3_1, plug_0_9_0, cowboy_1_0_4 }: - buildMix { - name = "lazymaru"; - version = "0.2.5"; - src = fetchHex { - pkg = "lazymaru"; - version = "0.2.5"; - sha256 = - "aeb7d963ddcd48791014922dc93030b182ee1fb13b7efbe041190c92cf1e939e"; - }; - beamDeps = [ poison_1_3_1 plug_0_9_0 cowboy_1_0_4 ]; - - meta = { - description = ''Elixir copy of grape for creating REST-like - APIs.''; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/falood/lazymaru"; - }; - } - ) {}; - - lazymaru = lazymaru_0_2_5; - - ledx_0_0_1 = callPackage - ( - { buildMix, fetchHex, elixir_ale_0_4_1 }: - buildMix { - name = "ledx"; - version = "0.0.1"; - src = fetchHex { - pkg = "ledx"; - version = "0.0.1"; - sha256 = - "f468e65572b7c9dcb6c906678c873194818bb1dd78ce35b7dddd9397df4f81a6"; - }; - beamDeps = [ elixir_ale_0_4_1 ]; - - meta = { - description = ''Ledx is a simple library for interfacing with - LEDs on embedded platforms.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/danmarcab/ledx"; - }; - } - ) {}; - - ledx = ledx_0_0_1; - left_pad_0_0_3 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "left_pad"; version = "0.0.3"; src = fetchHex { @@ -27783,15 +16408,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "leftpad"; version = "1.0.1"; src = fetchHex { @@ -27803,19 +16428,19 @@ let 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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "level"; version = "1.0.0"; src = fetchHex { @@ -27832,15 +16457,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/gausby/level"; }; - } + } // packageOverrides) ) {}; level = level_1_0_0; lex_luthor_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "lex_luthor"; version = "0.1.0"; src = fetchHex { @@ -27857,15 +16482,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "lfsr"; version = "0.0.2"; src = fetchHex { @@ -27881,15 +16506,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/pma/lfsr"; }; - } + } // packageOverrides) ) {}; lfsr = lfsr_0_0_2; lhttpc_1_3_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "lhttpc"; version = "1.3.0"; src = fetchHex { @@ -27904,13 +16529,13 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/talko/lhttpc"; }; - } + } // packageOverrides) ) {}; lhttpc_1_4_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "lhttpc"; version = "1.4.0"; src = fetchHex { @@ -27925,147 +16550,17 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/talko/lhttpc"; }; - } + } // packageOverrides) ) {}; lhttpc = lhttpc_1_4_0; - libchunter_0_1_46 = callPackage - ( - { buildRebar3, fetchHex, lager_2_1_1, fifo_spec_0_1_27 }: - buildRebar3 { - name = "libchunter"; - version = "0.1.46"; - src = fetchHex { - pkg = "libchunter"; - version = "0.1.46"; - sha256 = - "39f117de7cd71e65c793380266595b5b8fdd29edb8ca28b114efbaa2866eba90"; - }; - - beamDeps = [ lager_2_1_1 fifo_spec_0_1_27 ]; - - meta = { - description = ''Chunter interface library.''; - license = stdenv.lib.licenses.cddl; - homepage = "https://github.com/project-fifo/libchunter"; - }; - } - ) {}; - - libchunter = libchunter_0_1_46; - - libdecaf_0_0_2 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "libdecaf"; - version = "0.0.2"; - src = fetchHex { - pkg = "libdecaf"; - version = "0.0.2"; - sha256 = - "1e4ab8b542388941118927ae45021c4fb8097f9cce5c2d875624c330adc92b0a"; - }; - compilePorts = true; - - meta = { - longDescription = ''libdecaf NIF for ECDH (X25519, X448), EdDSA - (Ed25519, Ed25519ph, Ed448, Ed448ph), - curve25519, curve448''; - license = stdenv.lib.licenses.mpl20; - homepage = "https://github.com/potatosalad/erlang-libdecaf"; - }; - } - ) {}; - - libdecaf = libdecaf_0_0_2; - - libex_config_0_2_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "libex_config"; - version = "0.2.0"; - src = fetchHex { - pkg = "libex_config"; - version = "0.2.0"; - sha256 = - "27534209d8661d597017426922d64267f2452baac36866ba0bb470792f55292d"; - }; - - meta = { - description = ''LibEx.Config exposes helpers around accessing OTP - application configuration. ''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/reset/libex-config"; - }; - } - ) {}; - - libex_config = libex_config_0_2_0; - - libhowl_0_1_34 = callPackage - ( - { - buildRebar3, - fetchHex, - mdns_client_lib_0_1_38, - lager_2_1_1, - fifo_spec_0_1_27 - }: - buildRebar3 { - name = "libhowl"; - version = "0.1.34"; - src = fetchHex { - pkg = "libhowl"; - version = "0.1.34"; - sha256 = - "d358c609db2f09d05d51fc73e78b0fbddedbe4cbbc298711e664bfbf0662e10d"; - }; - - beamDeps = [ mdns_client_lib_0_1_38 lager_2_1_1 fifo_spec_0_1_27 - ]; - - meta = { - description = ''howl client library''; - license = stdenv.lib.licenses.cddl; - homepage = "https://github.com/project-fifo/libhowl"; - }; - } - ) {}; - - libhowl = libhowl_0_1_34; - - libleofs_0_1_2 = callPackage - ( - { buildRebar3, fetchHex, jsx_1_4_5 }: - buildRebar3 { - name = "libleofs"; - version = "0.1.2"; - src = fetchHex { - pkg = "libleofs"; - version = "0.1.2"; - sha256 = - "62c39168e30a94e6bf0c3b3677995f5735ca03358465a6756db01a75c4e5c04b"; - }; - - beamDeps = [ jsx_1_4_5 ]; - - meta = { - description = ''LeoFS management library.''; - license = stdenv.lib.licenses.cddl; - homepage = "https://github.com/project-fifo/libleofs"; - }; - } - ) {}; - - libleofs = libleofs_0_1_2; - librex_1_0_0 = callPackage ( - { buildMix, fetchHex, secure_random_0_2_0 }: - buildMix { + { + buildMix, packageOverrides ? {}, fetchHex, secure_random_0_2_0 + }: + buildMix ({ name = "librex"; version = "1.0.0"; src = fetchHex { @@ -28082,89 +16577,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/ricn/librex"; }; - } + } // packageOverrides) ) {}; librex = librex_1_0_0; - libsnarl_0_3_40 = callPackage - ( - { - buildRebar3, - fetchHex, - oauth2_erlang_0_6_1, - mdns_client_lib_0_1_33, - libsnarlmatch_0_1_7, - lager_3_0_2, - fifo_spec_0_1_27 - }: - buildRebar3 { - name = "libsnarl"; - version = "0.3.40"; - src = fetchHex { - pkg = "libsnarl"; - version = "0.3.40"; - sha256 = - "fd574da4318b2732dd275fed371d13cd6ed4d0424e7acc3e0429ea97859fabbf"; - }; - - beamDeps = [ - oauth2_erlang_0_6_1 - mdns_client_lib_0_1_33 - libsnarlmatch_0_1_7 - lager_3_0_2 - fifo_spec_0_1_27 - ]; - - meta = { - description = ''snarl interface library''; - - }; - } - ) {}; - - libsnarl_0_3_44 = callPackage - ( - { - buildRebar3, - fetchHex, - oauth2_erlang_0_6_1, - mdns_client_lib_0_1_38, - libsnarlmatch_0_1_7, - lager_2_1_1, - fifo_spec_0_1_27 - }: - buildRebar3 { - name = "libsnarl"; - version = "0.3.44"; - src = fetchHex { - pkg = "libsnarl"; - version = "0.3.44"; - sha256 = - "a77b2f532758a7016c375ddf16e316d5a4a727c65418bf7255ed158c8b1e243c"; - }; - - beamDeps = [ - oauth2_erlang_0_6_1 - mdns_client_lib_0_1_38 - libsnarlmatch_0_1_7 - lager_2_1_1 - fifo_spec_0_1_27 - ]; - - meta = { - description = ''snarl interface library''; - - }; - } - ) {}; - - libsnarl = libsnarl_0_3_44; - libsnarlmatch_0_1_7 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "libsnarlmatch"; version = "0.1.7"; src = fetchHex { @@ -28179,71 +16600,15 @@ let license = stdenv.lib.licenses.cddl; homepage = "https://github.com/project-fifo/libsnarlmatch"; }; - } + } // packageOverrides) ) {}; libsnarlmatch = libsnarlmatch_0_1_7; - libsniffle_0_3_45 = callPackage - ( - { - buildRebar3, - fetchHex, - mdns_client_lib_0_1_38, - lager_2_1_1, - fifo_spec_0_1_27 - }: - buildRebar3 { - name = "libsniffle"; - version = "0.3.45"; - src = fetchHex { - pkg = "libsniffle"; - version = "0.3.45"; - sha256 = - "906329c2a54689f74a53a3cd3fa1fc96ad88be326860227e4a2c731ab40738ed"; - }; - - beamDeps = [ mdns_client_lib_0_1_38 lager_2_1_1 fifo_spec_0_1_27 - ]; - - meta = { - description = ''Sniffle API''; - license = stdenv.lib.licenses.cddl; - homepage = "https://github.com/project-fifo/libsniffle"; - }; - } - ) {}; - - libsniffle = libsniffle_0_3_45; - - libsodium_0_0_4 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "libsodium"; - version = "0.0.4"; - src = fetchHex { - pkg = "libsodium"; - version = "0.0.4"; - sha256 = - "0ace378dd062546571e0607bddf96fe1dcf62a871fab42b4542328e3bca4b38a"; - }; - compilePorts = true; - - meta = { - description = ''libsodium port driver''; - license = stdenv.lib.licenses.mpl20; - homepage = "https://github.com/potatosalad/erlang-libsodium"; - }; - } - ) {}; - - libsodium = libsodium_0_0_4; - lineo_0_1_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "lineo"; version = "0.1.0"; src = fetchHex { @@ -28257,15 +16622,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/camshaft/lineo"; }; - } + } // packageOverrides) ) {}; lineo = lineo_0_1_0; linguist_0_1_5 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "linguist"; version = "0.1.5"; src = fetchHex { @@ -28280,38 +16645,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/chrismccord/linguist"; }; - } + } // packageOverrides) ) {}; linguist = linguist_0_1_5; - link_shrinkex_1_0_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "link_shrinkex"; - version = "1.0.0"; - src = fetchHex { - pkg = "link_shrinkex"; - version = "1.0.0"; - sha256 = - "2c7d99b23849f90d9aec8cd4f9960c6c198351735eda754288b778fe0e5f7e82"; - }; - - meta = { - description = ''Google`s URL Shortener API for Elixir. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/jonahoffline/link_shrinkex"; - }; - } - ) {}; - - link_shrinkex = link_shrinkex_1_0_0; - liquid_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "liquid"; version = "0.1.0"; src = fetchHex { @@ -28326,15 +16668,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/nulian/liquid-elixir"; }; - } + } // packageOverrides) ) {}; liquid = liquid_0_1_0; lob_0_1_0 = callPackage ( - { buildMix, fetchHex, poison_2_1_0, chacha20_0_3_2 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_2_1_0, + chacha20_0_3_2 + }: + buildMix ({ name = "lob"; version = "0.1.0"; src = fetchHex { @@ -28350,41 +16698,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/mwmiller/lob_ex"; }; - } + } // packageOverrides) ) {}; lob = lob_0_1_0; - locker_1_0_8 = callPackage - ( - { buildRebar3, fetchHex, proper_1_1_1_beta }: - buildRebar3 { - name = "locker"; - version = "1.0.8"; - src = fetchHex { - pkg = "locker"; - version = "1.0.8"; - sha256 = - "9cf9890e6b12dab7b8d1997c455348742db6caf2eaac3b64c514cd4e8dca2b56"; - }; - - beamDeps = [ proper_1_1_1_beta ]; - - meta = { - longDescription = ''Distributed de-centralized consistent - in-memory key-value store written in Erlang.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/wooga/locker"; - }; - } - ) {}; - - locker = locker_1_0_8; - logfmt_3_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "logfmt"; version = "3.0.2"; src = fetchHex { @@ -28400,15 +16722,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "logger_file_backend"; version = "0.0.7"; src = fetchHex { @@ -28423,91 +16745,21 @@ let 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_json_file_backend_0_1_2 = callPackage - ( - { buildMix, fetchHex, poison_1_0_3 }: - buildMix { - name = "logger_json_file_backend"; - version = "0.1.2"; - src = fetchHex { - pkg = "logger_json_file_backend"; - version = "0.1.2"; - sha256 = - "5734a14534ec57f7b1603c53d091facd4e47d7e5b83cf99d1c73439527d995d9"; - }; - beamDeps = [ poison_1_0_3 ]; - - meta = { - description = ''Logger backend that write a json map per line to - a file''; - license = stdenv.lib.licenses.isc; - homepage = - "https://github.com/xflagstudio/elixir_logger_json_file_backend"; - }; - } - ) {}; - - logger_json_file_backend = logger_json_file_backend_0_1_2; - - logger_logentries_backend_0_0_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "logger_logentries_backend"; - version = "0.0.1"; - src = fetchHex { - pkg = "logger_logentries_backend"; - version = "0.0.1"; - sha256 = - "f3db38f7ab4dc40cd8078bf4cad79ce2a1e759f0f7f2b2dee4fbc3abb8fe3d7e"; - }; - - meta = { - longDescription = ''A Logger backend to support the Logentries - service (logentries.com) TCP input log - mechanism''; - license = stdenv.lib.licenses.mit; - homepage = - "https://github.com/sysdia-solutions/logger_logentries_backend"; - }; - } - ) {}; - - logger_logentries_backend = logger_logentries_backend_0_0_1; - - logger_loggly_backend_0_2_0 = callPackage - ( - { buildMix, fetchHex, httpoison_0_8_2 }: - buildMix { - name = "logger_loggly_backend"; - version = "0.2.0"; - src = fetchHex { - pkg = "logger_loggly_backend"; - version = "0.2.0"; - sha256 = - "111d0e256ace86e2af366b1afc7152b4aadd3cd6c093d5d2b119c08a84395fd6"; - }; - beamDeps = [ httpoison_0_8_2 ]; - - meta = { - description = ''Loggly logger backend''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/joeyfeldberg/loggly_backend"; - }; - } - ) {}; - - logger_loggly_backend = logger_loggly_backend_0_2_0; - logger_logstash_backend_2_0_0 = callPackage ( - { buildMix, fetchHex, timex_2_1_3, exjsx_3_1_0 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + timex_2_1_3, + exjsx_3_1_0 + }: + buildMix ({ name = "logger_logstash_backend"; version = "2.0.0"; src = fetchHex { @@ -28523,15 +16775,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "logger_papertrail_backend"; version = "0.0.2"; src = fetchHex { @@ -28547,15 +16799,21 @@ let homepage = "https://github.com/larskrantz/logger_papertrail_backend"; }; - } + } // packageOverrides) ) {}; logger_papertrail_backend = logger_papertrail_backend_0_0_2; lolcat_0_0_1 = callPackage ( - { buildRebar3, fetchHex, quickrand_1_5_1, colorful_0_6_0 }: - buildRebar3 { + { + buildRebar3, + packageOverrides ? {}, + fetchHex, + quickrand_1_5_1, + colorful_0_6_0 + }: + buildRebar3 ({ name = "lolcat"; version = "0.0.1"; src = fetchHex { @@ -28572,15 +16830,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/restartr/ex-lolcat"; }; - } + } // packageOverrides) ) {}; lolcat = lolcat_0_0_1; loom_0_0_10 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "loom"; version = "0.0.10"; src = fetchHex { @@ -28596,15 +16854,15 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/asonge/loom"; }; - } + } // packageOverrides) ) {}; loom = loom_0_0_10; lru_1_3_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "lru"; version = "1.3.1"; src = fetchHex { @@ -28619,15 +16877,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "lru_cache"; version = "0.1.0"; src = fetchHex { @@ -28642,15 +16900,15 @@ let homepage = "https://github.com/arago/lru_cache"; }; - } + } // packageOverrides) ) {}; lru_cache = lru_cache_0_1_0; ltsv_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ltsv"; version = "0.1.0"; src = fetchHex { @@ -28665,15 +16923,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/ma2gedev/ltsvex"; }; - } + } // packageOverrides) ) {}; ltsv = ltsv_0_1_0; luhn_0_3_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "luhn"; version = "0.3.1"; src = fetchHex { @@ -28688,15 +16946,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/ma2gedev/luhn_ex"; }; - } + } // packageOverrides) ) {}; luhn = luhn_0_3_1; luhnatex_0_5_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "luhnatex"; version = "0.5.0"; src = fetchHex { @@ -28711,93 +16969,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/my-flow/luhnatex"; }; - } + } // packageOverrides) ) {}; luhnatex = luhnatex_0_5_0; - lyn_0_0_16 = callPackage - ( - { - buildMix, - fetchHex, - ueberauth_twitter_0_2_2, - ueberauth_slack_0_2_0, - ueberauth_identity_0_2_3, - ueberauth_google_0_2_0, - ueberauth_github_0_2_0, - ueberauth_facebook_0_3_2, - ueberauth_0_2_0, - scrivener_1_1_2, - postgrex_0_11_1, - poolboy_1_5_1, - poison_1_5_2, - phoenix_html_2_5_1, - phoenix_ecto_3_0_0_beta_2, - phoenix_1_1_4, - json_0_3_3, - inflex_1_5_0, - guardian_db_0_4_0, - guardian_0_9_1, - gettext_0_10_0, - exos_1_0_0, - cowboy_1_0_4, - comeonin_2_1_1, - absinthe_plug_1_0_0 - }: - buildMix { - name = "lyn"; - version = "0.0.16"; - src = fetchHex { - pkg = "lyn"; - version = "0.0.16"; - sha256 = - "63eeabb42336605c1fd79addbdf6a3300bb3101e019be9279f69a98c86345660"; - }; - beamDeps = [ - ueberauth_twitter_0_2_2 - ueberauth_slack_0_2_0 - ueberauth_identity_0_2_3 - ueberauth_google_0_2_0 - ueberauth_github_0_2_0 - ueberauth_facebook_0_3_2 - ueberauth_0_2_0 - scrivener_1_1_2 - postgrex_0_11_1 - poolboy_1_5_1 - poison_1_5_2 - phoenix_html_2_5_1 - phoenix_ecto_3_0_0_beta_2 - phoenix_1_1_4 - json_0_3_3 - inflex_1_5_0 - guardian_db_0_4_0 - guardian_0_9_1 - gettext_0_10_0 - exos_1_0_0 - cowboy_1_0_4 - comeonin_2_1_1 - absinthe_plug_1_0_0 - ]; - - meta = { - longDescription = ''This is a CMS written in Elixir. Aims to be - the great open-source ecommerce and/or startup - solution for those who are searching for a - performance and stability on top of modern - technologies like React and Elixir.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/viatsko/lyn"; - }; - } - ) {}; - - lyn = lyn_0_0_16; - lz4_0_2_2 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "lz4"; version = "0.2.2"; src = fetchHex { @@ -28813,15 +16993,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "lz_string"; version = "0.0.3"; src = fetchHex { @@ -28837,96 +17017,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/koudelka/elixir-lz-string"; }; - } + } // packageOverrides) ) {}; lz_string = lz_string_0_0_3; - m2x_2_0_0 = callPackage - ( - { buildMix, fetchHex, json_0_3_3, hackney_1_6_0 }: - buildMix { - name = "m2x"; - version = "2.0.0"; - src = fetchHex { - pkg = "m2x"; - version = "2.0.0"; - sha256 = - "e125cf588d48d9b04fb4a003bb62ab1a8e8df359866dba0cde6444e9fd7ce939"; - }; - beamDeps = [ json_0_3_3 hackney_1_6_0 ]; - - meta = { - longDescription = ''Elixir client library for the AT&T M2X - (http://m2x.att.com) API. AT&T M2X is a - cloud-based fully managed time-series data - storage service for network connected - machine-to-machine (M2M) devices and the - Internet of Things (IoT).''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/attm2x/m2x-elixir"; - }; - } - ) {}; - - m2x = m2x_2_0_0; - - m2x_erlang_1_3_1 = callPackage - ( - { buildMix, fetchHex, jsx_2_8_0, hackney_1_6_0 }: - buildMix { - name = "m2x_erlang"; - version = "1.3.1"; - src = fetchHex { - pkg = "m2x_erlang"; - version = "1.3.1"; - sha256 = - "873db746f4428490670b54aabcc93fda8d94c3c4e25c94a9aef7275858a8b809"; - }; - beamDeps = [ jsx_2_8_0 hackney_1_6_0 ]; - - meta = { - longDescription = ''Erlang client library for the AT&T M2X - (http://m2x.att.com) API. AT&T M2X is a - cloud-based fully managed time-series data - storage service for network connected - machine-to-machine (M2M) devices and the - Internet of Things (IoT).''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/attm2x/m2x-erlang"; - }; - } - ) {}; - - m2x_erlang = m2x_erlang_1_3_1; - - mad_0_9_0 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "mad"; - version = "0.9.0"; - src = fetchHex { - pkg = "mad"; - version = "0.9.0"; - sha256 = - "5eeb635094586b517f08000b059b680981c7da5527bab83e7bfa3f54176c0f1e"; - }; - - meta = { - description = ''Small and fast rebar replacement''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/synrc/mad"; - }; - } - ) {}; - - mad = mad_0_9_0; - magic_number_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "magic_number"; version = "0.0.1"; src = fetchHex { @@ -28942,15 +17041,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "mail"; version = "0.0.4"; src = fetchHex { @@ -28965,40 +17064,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/DockYard/elixir-mail"; }; - } + } // packageOverrides) ) {}; mail = mail_0_0_4; - mailchimp_0_0_5 = callPackage - ( - { buildMix, fetchHex, poison_2_1_0, httpoison_0_7_5 }: - buildMix { - name = "mailchimp"; - version = "0.0.5"; - src = fetchHex { - pkg = "mailchimp"; - version = "0.0.5"; - sha256 = - "e2681ec4a99a3ba59a523e1e6369ca276399733fb34d08fd823a1e0658613de9"; - }; - beamDeps = [ poison_2_1_0 httpoison_0_7_5 ]; - - meta = { - description = ''A basic Elixir wrapper for version 3 of the - MailChimp API.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/duartejc/mailchimp"; - }; - } - ) {}; - - mailchimp = mailchimp_0_0_5; - mailer_1_0_1 = callPackage ( - { buildMix, fetchHex, timex_2_1_3, gen_smtp_0_9_0 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + timex_2_1_3, + gen_smtp_0_9_0 + }: + buildMix ({ name = "mailer"; version = "1.0.1"; src = fetchHex { @@ -29014,15 +17094,15 @@ let license = stdenv.lib.licenses.free; homepage = "https://github.com/antp/mailer"; }; - } + } // packageOverrides) ) {}; mailer = mailer_1_0_1; mailgun_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "mailgun"; version = "0.0.2"; src = fetchHex { @@ -29037,13 +17117,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/chrismccord/mailgun"; }; - } + } // packageOverrides) ) {}; mailgun_0_1_2 = callPackage ( - { buildMix, fetchHex, poison_1_5_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }: + buildMix ({ name = "mailgun"; version = "0.1.2"; src = fetchHex { @@ -29059,73 +17139,22 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/chrismccord/mailgun"; }; - } + } // packageOverrides) ) {}; mailgun = mailgun_0_1_2; - mailgun_webhook_auth_1_0_0 = callPackage - ( - { buildMix, fetchHex, plug_0_5_2, cowboy_1_0_4 }: - buildMix { - name = "mailgun_webhook_auth"; - version = "1.0.0"; - src = fetchHex { - pkg = "mailgun_webhook_auth"; - version = "1.0.0"; - sha256 = - "0e6c93d8fd37fc948db0f92ee545ecbed99787dc04ceb8981e588b06ad3108eb"; - }; - beamDeps = [ plug_0_5_2 cowboy_1_0_4 ]; - - meta = { - description = ''A Plug for validating Mailgun Webhook requests in - Elixir applications.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/typesend/mailgun_webhook_auth"; - }; - } - ) {}; - - mailgun_webhook_auth = mailgun_webhook_auth_1_0_0; - - mailibex_0_1_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "mailibex"; - version = "0.1.0"; - src = fetchHex { - pkg = "mailibex"; - version = "0.1.0"; - sha256 = - "01f207ee181a58d629c5329d378ee319f9dbab9259e28367751d8860ffe63a36"; - }; - - meta = { - longDescription = ''Mailibex is an email library in Elixir : - currently implements DKIM, SPF, DMARC, MimeMail - (using iconv nif for encoding), MimeType (and - file type detection), a simplified api to modify - or create mimemail as a keyword list. Next step - is a full implementation of SMTP client and - server, to make it possible to use emails as a - routable API for events and messages between - your applications.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/awetzel/mailibex"; - }; - } - ) {}; - - mailibex = mailibex_0_1_0; - mailman_0_2_2 = callPackage ( { - buildMix, fetchHex, gen_smtp_0_9_0, ex_doc_0_11_4, earmark_0_2_1 + buildMix, + packageOverrides ? {}, + fetchHex, + gen_smtp_0_9_0, + ex_doc_0_11_4, + earmark_0_2_1 }: - buildMix { + buildMix ({ name = "mailman"; version = "0.2.2"; src = fetchHex { @@ -29142,15 +17171,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/kamilc/mailman"; }; - } + } // packageOverrides) ) {}; mailman = mailman_0_2_2; majremind_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "majremind"; version = "0.0.1"; src = fetchHex { @@ -29168,15 +17197,15 @@ let $HOME/.config/majremind/ ''; license = stdenv.lib.licenses.mit; }; - } + } // packageOverrides) ) {}; majremind = majremind_0_0_1; mandrag_0_1_1 = callPackage ( - { buildMix, fetchHex, exrm_1_0_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, exrm_1_0_3 }: + buildMix ({ name = "mandrag"; version = "0.1.1"; src = fetchHex { @@ -29193,15 +17222,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/cschiewek/mandrag"; }; - } + } // packageOverrides) ) {}; mandrag = mandrag_0_1_1; mandrake_0_0_4 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "mandrake"; version = "0.0.4"; src = fetchHex { @@ -29217,69 +17246,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/mbasso/mandrake"; }; - } + } // packageOverrides) ) {}; mandrake = mandrake_0_0_4; - mandrill_0_4_1 = callPackage - ( - { buildMix, fetchHex, httpoison_0_8_2, exjsx_3_1_0 }: - buildMix { - name = "mandrill"; - version = "0.4.1"; - src = fetchHex { - pkg = "mandrill"; - version = "0.4.1"; - sha256 = - "2d554149c425c511a006d978427acc1d384c8f6d4f3699fdce04e42e24268400"; - }; - beamDeps = [ httpoison_0_8_2 exjsx_3_1_0 ]; - - meta = { - longDescription = ''A Mandrill wrapper for Elixir Requires an - active account with Mandrill - (http://mandrill.com).''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/slogsdon/mandrill-elixir"; - }; - } - ) {}; - - mandrill = mandrill_0_4_1; - - mandrillex_0_2_0 = callPackage - ( - { - buildMix, fetchHex, jsex_2_0_0, httpoison_0_8_2, hackney_1_4_8 - }: - buildMix { - name = "mandrillex"; - version = "0.2.0"; - src = fetchHex { - pkg = "mandrillex"; - version = "0.2.0"; - sha256 = - "840bf36e545cde376797603df4109aae49d2c17b2b06f84a058fff4448d362eb"; - }; - beamDeps = [ jsex_2_0_0 httpoison_0_8_2 hackney_1_4_8 ]; - - meta = { - longDescription = ''A Mandrill wrapper for Elixir Requires an - active account with Mandrill - (http://mandrill.com). ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/slogsdon/mandrillex"; - }; - } - ) {}; - - mandrillex = mandrillex_0_2_0; - maptu_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "maptu"; version = "0.1.0"; src = fetchHex { @@ -29290,20 +17265,26 @@ let }; meta = { - description = ''Tiny library to convert from "encoded" maps to + 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, fetchHex, decimal_1_1_1, connection_1_0_0_rc_1 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + decimal_1_1_1, + connection_1_0_0_rc_1 + }: + buildMix ({ name = "marco_polo"; version = "0.2.1"; src = fetchHex { @@ -29319,15 +17300,15 @@ let 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, fetchHex, decimal_1_1_1 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, decimal_1_1_1 }: + buildMix ({ name = "mariaex"; version = "0.1.7"; src = fetchHex { @@ -29341,16 +17322,16 @@ let 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, fetchHex, decimal_1_1_1 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, decimal_1_1_1 }: + buildMix ({ name = "mariaex"; version = "0.4.3"; src = fetchHex { @@ -29364,16 +17345,22 @@ let 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, fetchHex, decimal_1_1_1, db_connection_0_2_4 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + decimal_1_1_1, + db_connection_0_2_4 + }: + buildMix ({ name = "mariaex"; version = "0.7.0"; src = fetchHex { @@ -29387,18 +17374,18 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "marked"; version = "0.0.1"; src = fetchHex { @@ -29412,91 +17399,15 @@ let description = ''CommonMark compatible Markdown parser''; }; - } + } // packageOverrides) ) {}; marked = marked_0_0_1; - markit_0_1_2 = callPackage - ( - { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: - buildMix { - name = "markit"; - version = "0.1.2"; - src = fetchHex { - pkg = "markit"; - version = "0.1.2"; - sha256 = - "6304ceb1e7a5787555bc7d048bf3c9c0b432fe5378c6d630fb02d0bb871e57b5"; - }; - beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; - - meta = { - description = ''Access stock market data from markit.com''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/col/markit"; - }; - } - ) {}; - - markit = markit_0_1_2; - - markit_skill_0_0_2 = callPackage - ( - { - buildMix, fetchHex, markit_0_1_2, inflex_1_5_0, alexa_0_1_12 - }: - buildMix { - name = "markit_skill"; - version = "0.0.2"; - src = fetchHex { - pkg = "markit_skill"; - version = "0.0.2"; - sha256 = - "166d8ef88c08c21821dda379a053af761db4de5dff50226bfcb0e3a18fc855db"; - }; - beamDeps = [ markit_0_1_2 inflex_1_5_0 alexa_0_1_12 ]; - - meta = { - description = ''Amazon Alexa skill that uses data from - Markit.com''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/col/markit_skill"; - }; - } - ) {}; - - markit_skill = markit_skill_0_0_2; - - maru_0_9_5 = callPackage - ( - { buildMix, fetchHex, poison_1_0_3, plug_1_1_3, cowboy_1_0_4 }: - buildMix { - name = "maru"; - version = "0.9.5"; - src = fetchHex { - pkg = "maru"; - version = "0.9.5"; - sha256 = - "36456f36fea5b2fc5cacd280535347f11d949799bfb8506e772e30b062056d3d"; - }; - beamDeps = [ poison_1_0_3 plug_1_1_3 cowboy_1_0_4 ]; - - meta = { - description = ''REST-like API micro-framework for elixir inspired - by grape.''; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/falood/maru"; - }; - } - ) {}; - - maru = maru_0_9_5; - maru_entity_0_1_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "maru_entity"; version = "0.1.2"; src = fetchHex { @@ -29510,104 +17421,15 @@ let description = ''Elixir copy of grape-entity''; }; - } + } // packageOverrides) ) {}; maru_entity = maru_entity_0_1_2; - maru_swagger_0_7_3 = callPackage - ( - { buildMix, fetchHex, maru_0_9_5 }: - buildMix { - name = "maru_swagger"; - version = "0.7.3"; - src = fetchHex { - pkg = "maru_swagger"; - version = "0.7.3"; - sha256 = - "919148f80e76bd4dba89021cbffcf359cfe05028250d05a3eacf2bae5e24ec46"; - }; - beamDeps = [ maru_0_9_5 ]; - - meta = { - description = ''Add swagger compliant documentation to your maru - API''; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/falood/maru_swagger"; - }; - } - ) {}; - - maru_swagger = maru_swagger_0_7_3; - - marvel_1_0_0 = callPackage - ( - { - buildRebar3, - fetchHex, - timex_0_13_5, - poison_1_5_2, - httpoison_0_8_2 - }: - buildRebar3 { - name = "marvel"; - version = "1.0.0"; - src = fetchHex { - pkg = "marvel"; - version = "1.0.0"; - sha256 = - "7b5e99ccfa84954c2e46295aa72ab57b7511e1ec8e0bd13d1c5948efe1a0d23d"; - }; - - beamDeps = [ timex_0_13_5 poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''Marvel API and CLI Client ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/bryanjos/marvel"; - }; - } - ) {}; - - marvel = marvel_1_0_0; - - marvin_0_3_0 = callPackage - ( - { - buildMix, - fetchHex, - slack_0_3_0, - poison_2_1_0, - ibrowse_4_2_2, - httpotion_2_2_2 - }: - buildMix { - name = "marvin"; - version = "0.3.0"; - src = fetchHex { - pkg = "marvin"; - version = "0.3.0"; - sha256 = - "722a97aef1d0f7fb783948002897ea1ec67ac77cb471016386bf485bb8bd86c7"; - }; - beamDeps = [ - slack_0_3_0 poison_2_1_0 ibrowse_4_2_2 httpotion_2_2_2 - ]; - - meta = { - description = ''A Slack bot framework.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/willrax/marvin"; - }; - } - ) {}; - - marvin = marvin_0_3_0; - math_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "math"; version = "0.0.1"; src = fetchHex { @@ -29618,19 +17440,77 @@ let }; meta = { - description = ''The missing Math module for Elixir.''; + 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, fetchHex, exprintf_0_1_6, earmark_0_2_1 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + exprintf_0_1_6, + earmark_0_2_1 + }: + buildMix ({ name = "matrix"; version = "0.3.1"; src = fetchHex { @@ -29648,15 +17528,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "maybe"; version = "0.0.1"; src = fetchHex { @@ -29671,7 +17551,7 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/zweifisch/maybe"; }; - } + } // packageOverrides) ) {}; maybe = maybe_0_0_1; @@ -29680,6 +17560,7 @@ let ( { buildMix, + packageOverrides ? {}, fetchHex, xml_builder_0_0_8, poison_2_1_0, @@ -29690,7 +17571,7 @@ let etude_0_3_7, ecto_1_0_7 }: - buildMix { + buildMix ({ name = "mazurka"; version = "0.3.34"; src = fetchHex { @@ -29715,15 +17596,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/mazurka/mazurka"; }; - } + } // packageOverrides) ) {}; mazurka = mazurka_0_3_34; mazurka_dsl_0_1_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "mazurka_dsl"; version = "0.1.1"; src = fetchHex { @@ -29738,15 +17619,17 @@ let 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, fetchHex, etude_1_0_0_beta_0 }: - buildMix { + { + buildMix, packageOverrides ? {}, fetchHex, etude_1_0_0_beta_0 + }: + buildMix ({ name = "mazurka_mediatype"; version = "0.2.0"; src = fetchHex { @@ -29762,7 +17645,7 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/mazurka/mazurka_mediatype"; }; - } + } // packageOverrides) ) {}; mazurka_mediatype = mazurka_mediatype_0_2_0; @@ -29771,12 +17654,13 @@ let ( { buildMix, + packageOverrides ? {}, fetchHex, poison_1_3_1, mazurka_mediatype_0_2_0, etude_1_0_0_beta_0 }: - buildMix { + buildMix ({ name = "mazurka_mediatype_hyperjson"; version = "0.2.3"; src = fetchHex { @@ -29797,15 +17681,15 @@ let 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, fetchHex, poison_2_1_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }: + buildMix ({ name = "mc_data"; version = "0.0.2"; src = fetchHex { @@ -29820,17 +17704,17 @@ let description = ''Provides access to data from the game Minecraft.''; license = stdenv.lib.licenses.mit; - homepage = "https://github.com/hansihe/elixir_mc_data"; + homepage = "https://github.com/McEx/McData"; }; - } + } // packageOverrides) ) {}; mc_data = mc_data_0_0_2; mc_protocol_0_0_1 = callPackage ( - { buildMix, fetchHex, uuid_1_1_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, uuid_1_1_3 }: + buildMix ({ name = "mc_protocol"; version = "0.0.1"; src = fetchHex { @@ -29851,38 +17735,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/hansihe/elixir_mc_protocol"; }; - } + } // packageOverrides) ) {}; mc_protocol = mc_protocol_0_0_1; - mcrypt_0_1_0 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "mcrypt"; - version = "0.1.0"; - src = fetchHex { - pkg = "mcrypt"; - version = "0.1.0"; - sha256 = - "508a35ba255190f80309dcabf9c81c88b86b9ec13af180627ad51b8e5cf2a4cd"; - }; - - meta = { - description = ''NIF wrapper around libmcrypt.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/system76/elixir-mcrypt"; - }; - } - ) {}; - - mcrypt = mcrypt_0_1_0; - mcup_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "mcup"; version = "0.0.2"; src = fetchHex { @@ -29897,100 +17758,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/Joe-noh/mcup"; }; - } + } // packageOverrides) ) {}; mcup = mcup_0_0_2; - mdns_client_0_1_7 = callPackage - ( - { buildRebar3, fetchHex, lager_2_1_1 }: - buildRebar3 { - name = "mdns_client"; - version = "0.1.7"; - src = fetchHex { - pkg = "mdns_client"; - version = "0.1.7"; - sha256 = - "c707532d693bd19bed8ccd167574b6b0337f07e38b87bd7f9111d9cb9799fac2"; - }; - - beamDeps = [ lager_2_1_1 ]; - - meta = { - description = ''mDNS service discovery client''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/Licenser/erlang-mdns-client"; - }; - } - ) {}; - - mdns_client = mdns_client_0_1_7; - - mdns_client_lib_0_1_33 = callPackage - ( - { - buildRebar3, - fetchHex, - pooler_1_4_0, - mdns_client_0_1_7, - lager_2_1_1 - }: - buildRebar3 { - name = "mdns_client_lib"; - version = "0.1.33"; - src = fetchHex { - pkg = "mdns_client_lib"; - version = "0.1.33"; - sha256 = - "9ad3723c929acbdfec70021ceb6606e59c7e6189af97652409bfc9624052e0fe"; - }; - - beamDeps = [ pooler_1_4_0 mdns_client_0_1_7 lager_2_1_1 ]; - - meta = { - description = ''client lib for mdns aware tcp servers''; - license = stdenv.lib.licenses.cddl; - homepage = "https://github.com/Licenser/mdns_client_lib"; - }; - } - ) {}; - - mdns_client_lib_0_1_38 = callPackage - ( - { - buildRebar3, - fetchHex, - pooler_1_5_0, - mdns_client_0_1_7, - lager_2_1_1 - }: - buildRebar3 { - name = "mdns_client_lib"; - version = "0.1.38"; - src = fetchHex { - pkg = "mdns_client_lib"; - version = "0.1.38"; - sha256 = - "46b990c883ca02c780a2295ffe75b51888c028ca42cd86b8ad517eca80cbd765"; - }; - - beamDeps = [ pooler_1_5_0 mdns_client_0_1_7 lager_2_1_1 ]; - - meta = { - description = ''client lib for mdns aware tcp servers''; - license = stdenv.lib.licenses.cddl; - homepage = "https://github.com/Licenser/mdns_client_lib"; - }; - } - ) {}; - - mdns_client_lib = mdns_client_lib_0_1_38; - mdns_server_0_2_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "mdns_server"; version = "0.2.0"; src = fetchHex { @@ -30005,7 +17781,7 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/Licenser/erlang-mdns-server"; }; - } + } // packageOverrides) ) {}; mdns_server = mdns_server_0_2_0; @@ -30014,12 +17790,13 @@ let ( { buildRebar3, + packageOverrides ? {}, fetchHex, ranch_1_1_0, mdns_server_0_2_0, lager_3_0_2 }: - buildRebar3 { + buildRebar3 ({ name = "mdns_server_lib"; version = "0.2.3"; src = fetchHex { @@ -30037,64 +17814,15 @@ let license = stdenv.lib.licenses.cddl; homepage = "https://github.com/Licenser/mdns_server_lib"; }; - } + } // packageOverrides) ) {}; mdns_server_lib = mdns_server_lib_0_2_3; - meck_0_8_4 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "meck"; - version = "0.8.4"; - src = fetchHex { - pkg = "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; - - medex_0_1_2 = callPackage - ( - { buildMix, fetchHex, plug_1_1_3, cowboy_1_0_4, consul_1_0_3 }: - buildMix { - name = "medex"; - version = "0.1.2"; - src = fetchHex { - pkg = "medex"; - version = "0.1.2"; - sha256 = - "dd8dd07892a4aedbe7680fa8637b1c17b7615b2aaea0b25b84acad4ed50700d2"; - }; - beamDeps = [ plug_1_1_3 cowboy_1_0_4 consul_1_0_3 ]; - - meta = { - longDescription = ''Medical Examination - application for - register health check callbacks and represent - their state via HTTP.''; - - homepage = "https://github.com/xerions/medex"; - }; - } - ) {}; - - medex = medex_0_1_2; - meld_0_1_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "meld"; version = "0.1.2"; src = fetchHex { @@ -30109,15 +17837,21 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/conflate/meld"; }; - } + } // packageOverrides) ) {}; meld = meld_0_1_2; mellon_0_1_1 = callPackage ( - { buildMix, fetchHex, poison_2_1_0, plug_1_1_3 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_2_1_0, + plug_1_1_3 + }: + buildMix ({ name = "mellon"; version = "0.1.1"; src = fetchHex { @@ -30135,15 +17869,15 @@ let homepage = "https://github.com/sajmoon/mellon"; }; - } + } // packageOverrides) ) {}; mellon = mellon_0_1_1; mem_0_1_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "mem"; version = "0.1.2"; src = fetchHex { @@ -30154,11 +17888,11 @@ let }; meta = { - description = ''ETS based KV cache with TTL and LRU support''; + 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; @@ -30166,9 +17900,14 @@ let memcache_client_1_1_0 = callPackage ( { - buildMix, fetchHex, poolboy_1_5_1, poison_2_1_0, connection_1_0_2 + buildMix, + packageOverrides ? {}, + fetchHex, + poolboy_1_5_1, + poison_2_1_0, + connection_1_0_2 }: - buildMix { + buildMix ({ name = "memcache_client"; version = "1.1.0"; src = fetchHex { @@ -30185,38 +17924,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/tsharju/memcache_client"; }; - } + } // packageOverrides) ) {}; memcache_client = memcache_client_1_1_0; - message_pack_0_2_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "message_pack"; - version = "0.2.0"; - src = fetchHex { - pkg = "message_pack"; - version = "0.2.0"; - sha256 = - "94f31aa2734989e97562fcd1ad0b159e8571f4b97f591995bfdcbbbcfcaadd83"; - }; - - meta = { - description = ''MessagePack Implementation for Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/mururu/msgpack-elixir"; - }; - } - ) {}; - - message_pack = message_pack_0_2_0; - meta_0_0_1 = callPackage ( - { buildRebar3, fetchHex, forms_0_0_1 }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex, forms_0_0_1 }: + buildRebar3 ({ name = "meta"; version = "0.0.1"; src = fetchHex { @@ -30226,6 +17942,8 @@ let "9aa1be58e265a16eafb9092d9675427672721ca9d3c924664e561b0857c6dcb8"; }; + buildPlugins = [ rebar3_hex ]; + beamDeps = [ forms_0_0_1 ]; meta = { @@ -30233,15 +17951,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/efcasado/forms"; }; - } + } // packageOverrides) ) {}; meta = meta_0_0_1; metainvestigator_0_0_3 = callPackage ( - { buildMix, fetchHex, floki_0_8_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, floki_0_8_0 }: + buildMix ({ name = "metainvestigator"; version = "0.0.3"; src = fetchHex { @@ -30258,15 +17976,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/nekova/metainvestigator"; }; - } + } // packageOverrides) ) {}; metainvestigator = metainvestigator_0_0_3; metrics_1_0_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "metrics"; version = "1.0.1"; src = fetchHex { @@ -30282,13 +18000,13 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/benoitc/erlang-metrics"; }; - } + } // packageOverrides) ) {}; metrics_1_1_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "metrics"; version = "1.1.0"; src = fetchHex { @@ -30304,15 +18022,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/benoitc/erlang-metrics"; }; - } + } // packageOverrides) ) {}; metrics = metrics_1_1_0; metrix_0_2_0 = callPackage ( - { buildMix, fetchHex, logfmt_3_0_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, logfmt_3_0_2 }: + buildMix ({ name = "metrix"; version = "0.2.0"; src = fetchHex { @@ -30332,15 +18050,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/rwdaigle/metrix"; }; - } + } // packageOverrides) ) {}; metrix = metrix_0_2_0; mex_0_0_5 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "mex"; version = "0.0.5"; src = fetchHex { @@ -30355,41 +18073,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/mrluc/mex"; }; - } + } // packageOverrides) ) {}; mex = mex_0_0_5; - microformats2_0_0_5 = callPackage - ( - { buildMix, fetchHex, httpotion_2_2_2, floki_0_7_2 }: - buildMix { - name = "microformats2"; - version = "0.0.5"; - src = fetchHex { - pkg = "microformats2"; - version = "0.0.5"; - sha256 = - "890ca1812738869aa65865339a730c5542949cac4b017b25fc276e81b37157b2"; - }; - beamDeps = [ httpotion_2_2_2 floki_0_7_2 ]; - - meta = { - description = ''A microformats2 parser - (http://microformats.org/wiki/microformats-2) for - Elixir''; - license = stdenv.lib.licenses.agpl3; - homepage = "https://github.com/ckruse/microformats2-elixir"; - }; - } - ) {}; - - microformats2 = microformats2_0_0_5; - milliseconds_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "milliseconds"; version = "0.0.1"; src = fetchHex { @@ -30401,21 +18093,21 @@ let meta = { longDescription = '' Simple library to work with milliseconds. - Convert text to milliseconds: convert("2d") + Convert text to milliseconds: convert(\"2d\") Convert milliseconds to text: convert(8640000) - Calculate future time: future_time("6hrs") ''; + 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "mime"; version = "0.0.1"; src = fetchHex { @@ -30430,15 +18122,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/elixirdrops/mime"; }; - } + } // packageOverrides) ) {}; mime = mime_0_0_1; mimerl_1_0_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "mimerl"; version = "1.0.0"; src = fetchHex { @@ -30448,18 +18140,21 @@ let "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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "mimerl"; version = "1.0.2"; src = fetchHex { @@ -30474,13 +18169,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/benoitc/mimerl"; }; - } + } // packageOverrides) ) {}; mimerl_1_1_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "mimerl"; version = "1.1.0"; src = fetchHex { @@ -30495,15 +18190,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/benoitc/mimerl"; }; - } + } // packageOverrides) ) {}; mimerl = mimerl_1_1_0; mimetype_parser_0_1_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "mimetype_parser"; version = "0.1.2"; src = fetchHex { @@ -30518,15 +18213,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "mimex"; version = "0.1.0"; src = fetchHex { @@ -30541,15 +18236,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/hex-sh/mimex"; }; - } + } // packageOverrides) ) {}; mimex = mimex_0_1_0; minmaxlist_0_0_6 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "minmaxlist"; version = "0.0.6"; src = fetchHex { @@ -30566,15 +18261,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "misc_random"; version = "0.2.6"; src = fetchHex { @@ -30591,15 +18286,15 @@ let 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, fetchHex, poison_1_5_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }: + buildMix ({ name = "mix_apidoc"; version = "0.1.0"; src = fetchHex { @@ -30617,15 +18312,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "mix_deps_tree"; version = "0.1.0"; src = fetchHex { @@ -30641,15 +18336,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "mix_erlang_tasks"; version = "0.1.0"; src = fetchHex { @@ -30667,15 +18362,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "mix_eunit"; version = "0.1.2"; src = fetchHex { @@ -30691,15 +18386,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "mix_info"; version = "0.7.2"; src = fetchHex { @@ -30716,15 +18411,15 @@ let 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, fetchHex, fs_0_9_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, fs_0_9_2 }: + buildMix ({ name = "mix_test_watch"; version = "0.2.6"; src = fetchHex { @@ -30740,15 +18435,15 @@ let 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, fetchHex, exjsx_3_1_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, exjsx_3_1_0 }: + buildMix ({ name = "mixpanel"; version = "0.0.3"; src = fetchHex { @@ -30765,89 +18460,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/michihuber/mixpanel_ex"; }; - } + } // packageOverrides) ) {}; mixpanel = mixpanel_0_0_3; - mixpanel_api_ex_0_8_3 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "mixpanel_api_ex"; - version = "0.8.3"; - src = fetchHex { - pkg = "mixpanel_api_ex"; - version = "0.8.3"; - sha256 = - "1ff5eb4aa333495a86868873deb8fcd04c5f2e6f2560d77ac6ccbe07e2e3d7b4"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''Elixir client for the Mixpanel API.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/agevio/mixpanel_api_ex"; - }; - } - ) {}; - - mixpanel_api_ex = mixpanel_api_ex_0_8_3; - - mixpanel_data_client_0_0_2 = callPackage - ( - { buildMix, fetchHex, poison_1_3_1, httpoison_0_8_2 }: - buildMix { - name = "mixpanel_data_client"; - version = "0.0.2"; - src = fetchHex { - pkg = "mixpanel_data_client"; - version = "0.0.2"; - sha256 = - "7f3bbd608ae18153655f27bd50ea01ad85630d6c1cc6ab9ed336e95419f06c86"; - }; - beamDeps = [ poison_1_3_1 httpoison_0_8_2 ]; - - meta = { - description = ''Client library for interacting with the Mixpanel - Data API.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/jeregrine/mixpanel_data_client"; - }; - } - ) {}; - - mixpanel_data_client = mixpanel_data_client_0_0_2; - - mixstar_0_0_1 = callPackage - ( - { buildMix, fetchHex, netrc_0_0_2, httpoison_0_8_2 }: - buildMix { - name = "mixstar"; - version = "0.0.1"; - src = fetchHex { - pkg = "mixstar"; - version = "0.0.1"; - sha256 = - "d7f9014711d04049c90a8f835857d1bde04647b326d1ec949e2a90477f4d4a39"; - }; - beamDeps = [ netrc_0_0_2 httpoison_0_8_2 ]; - - meta = { - description = ''MixStar starred GitHub repository that depends on - your project''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/ma2gedev/mix-star"; - }; - } - ) {}; - - mixstar = mixstar_0_0_1; - mixunit_0_9_2 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "mixunit"; version = "0.9.2"; src = fetchHex { @@ -30862,15 +18483,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/talentdeficit/mixunit"; }; - } + } // packageOverrides) ) {}; mixunit = mixunit_0_9_2; mmExchangeRate_0_0_1 = callPackage ( - { buildMix, fetchHex, jsx_2_8_0, httpotion_2_2_2 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + jsx_2_8_0, + httpotion_2_2_2 + }: + buildMix ({ name = "mmExchangeRate"; version = "0.0.1"; src = fetchHex { @@ -30887,63 +18514,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/Arkar-Aung/mmExchangeRate"; }; - } + } // packageOverrides) ) {}; mmExchangeRate = mmExchangeRate_0_0_1; - mmath_0_1_15 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "mmath"; - version = "0.1.15"; - src = fetchHex { - pkg = "mmath"; - version = "0.1.15"; - sha256 = - "2ad56c5a321dda866f36981df134b9e2f393b46786cd2549ed626d1423458c86"; - }; - compilePorts = true; - - meta = { - description = ''math library for metric sequences and binary - arrays.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/dalmatinerdb/mmath"; - }; - } - ) {}; - - mmath_0_1_16 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "mmath"; - version = "0.1.16"; - src = fetchHex { - pkg = "mmath"; - version = "0.1.16"; - sha256 = - "dcf450b5527ba445e0b33ecdb0d546fa9bff96f6efbf6d314447f32344d37ef6"; - }; - compilePorts = true; - - meta = { - description = ''math library for metric sequences and binary - arrays.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/dalmatinerdb/mmath"; - }; - } - ) {}; - - mmath = mmath_0_1_16; - mnemonic_slugs_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "mnemonic_slugs"; version = "0.0.1"; src = fetchHex { @@ -30959,64 +18538,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/devshane/mnemonic_slugs"; }; - } + } // packageOverrides) ) {}; mnemonic_slugs = mnemonic_slugs_0_0_1; - mobiledoc_0_0_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "mobiledoc"; - version = "0.0.1"; - src = fetchHex { - pkg = "mobiledoc"; - version = "0.0.1"; - sha256 = - "02aaa0168d51cd5d491127128f568ff37a6415115c45076a79bc8f7f449c524a"; - }; - - meta = { - description = ''An HTML renderer for the MobileDoc format used by - the ContentKit editor.''; - license = stdenv.lib.licenses.mit; - homepage = - "https://github.com/zeppelin/mobiledoc-renderer-elixir"; - }; - } - ) {}; - - mobiledoc = mobiledoc_0_0_1; - - mochiweb_2_12_2 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "mochiweb"; - version = "2.12.2"; - src = fetchHex { - pkg = "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; - mochiweb_html_2_13_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "mochiweb_html"; version = "2.13.0"; src = fetchHex { @@ -31031,44 +18561,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/mochi/mochiweb"; }; - } + } // packageOverrides) ) {}; mochiweb_html = mochiweb_html_2_13_0; - mock_0_1_3 = callPackage - ( - { buildMix, fetchHex, meck_0_8_4 }: - buildMix { - name = "mock"; - version = "0.1.3"; - src = fetchHex { - pkg = "mock"; - version = "0.1.3"; - sha256 = - "bf7cf50d528394d870cdecac4920ab719cec0af98eff95759b57cab0e5ee143e"; - }; - beamDeps = [ meck_0_8_4 ]; - - meta = { - longDescription = ''A mocking libary for the Elixir language. We - use the Erlang meck library to provide module - mocking functionality for Elixir. It uses macros - in Elixir to expose the functionality in a - convenient manner for integrating in Elixir - tests.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/jjh42/mock"; - }; - } - ) {}; - - mock = mock_0_1_3; - module_mocker_0_2_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "module_mocker"; version = "0.2.0"; src = fetchHex { @@ -31085,54 +18586,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/rohanpujaris/module_mocker"; }; - } + } // packageOverrides) ) {}; module_mocker = module_mocker_0_2_0; - moebius_1_0_8 = callPackage - ( - { - buildMix, - fetchHex, - timex_0_19_5, - postgrex_0_9_1, - poison_1_5_2, - json_0_3_3, - inflex_1_5_0 - }: - buildMix { - name = "moebius"; - version = "1.0.8"; - src = fetchHex { - pkg = "moebius"; - version = "1.0.8"; - sha256 = - "6fb42bfb7a85409e5281d990d9db5a5012221019867eef34de2e49fce245b0d9"; - }; - beamDeps = [ - timex_0_19_5 - postgrex_0_9_1 - poison_1_5_2 - json_0_3_3 - inflex_1_5_0 - ]; - - meta = { - description = ''A functional approach to data access with - Elixir''; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/robconery/moebius"; - }; - } - ) {}; - - moebius = moebius_1_0_8; - mogrify_0_2_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "mogrify"; version = "0.2.0"; src = fetchHex { @@ -31147,15 +18609,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/route/mogrify"; }; - } + } // packageOverrides) ) {}; mogrify = mogrify_0_2_0; mojoauth_1_0_2 = callPackage ( - { buildMix, fetchHex, timex_1_0_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, timex_1_0_2 }: + buildMix ({ name = "mojoauth"; version = "1.0.2"; src = fetchHex { @@ -31172,15 +18634,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "moment"; version = "0.1.0"; src = fetchHex { @@ -31196,15 +18658,15 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/atabary/moment"; }; - } + } // packageOverrides) ) {}; moment = moment_0_1_0; mon_handler_1_0_2 = callPackage ( - { buildMix, fetchHex, dialyze_0_2_1 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, dialyze_0_2_1 }: + buildMix ({ name = "mon_handler"; version = "1.0.2"; src = fetchHex { @@ -31225,15 +18687,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "monad"; version = "1.0.5"; src = fetchHex { @@ -31248,15 +18710,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/rmies/monad"; }; - } + } // packageOverrides) ) {}; monad = monad_1_0_5; monadex_1_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "monadex"; version = "1.0.2"; src = fetchHex { @@ -31271,41 +18733,22 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/rob-brown/MonadEx"; }; - } + } // packageOverrides) ) {}; monadex = monadex_1_0_2; - mondo_0_1_0 = callPackage - ( - { - buildMix, fetchHex, poison_2_1_0, plug_1_1_3, httpoison_0_8_2 - }: - buildMix { - name = "mondo"; - version = "0.1.0"; - src = fetchHex { - pkg = "mondo"; - version = "0.1.0"; - sha256 = - "f557216314e098137f5140f1194e2eba7a2a030d78affc23ea5943f586ab1095"; - }; - beamDeps = [ poison_2_1_0 plug_1_1_3 httpoison_0_8_2 ]; - - meta = { - description = ''An Elixir client for the Mondo API.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/stevedomin/mondo_elixir"; - }; - } - ) {}; - - mondo = mondo_0_1_0; - monetized_0_3_2 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, ecto_1_1_5, decimal_1_1_1 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_5_2, + ecto_1_1_5, + decimal_1_1_1 + }: + buildMix ({ name = "monetized"; version = "0.3.2"; src = fetchHex { @@ -31322,15 +18765,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/theocodes/monetized"; }; - } + } // packageOverrides) ) {}; monetized = monetized_0_3_2; money_0_0_1_dev = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "money"; version = "0.0.1-dev"; src = fetchHex { @@ -31347,39 +18790,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/liuggio/money"; }; - } + } // packageOverrides) ) {}; money = money_0_0_1_dev; - mongo_0_5_4 = callPackage - ( - { buildMix, fetchHex, bson_0_4_4 }: - buildMix { - name = "mongo"; - version = "0.5.4"; - src = fetchHex { - pkg = "mongo"; - version = "0.5.4"; - sha256 = - "fb6e0ed11bd2f193e12d0f905eb1968525b52dc99441ecbbf90c7745df246ed8"; - }; - beamDeps = [ bson_0_4_4 ]; - - meta = { - description = ''MongoDB driver for Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/checkiz/elixir-mongo"; - }; - } - ) {}; - - mongo = mongo_0_5_4; - mongodb_0_1_1 = callPackage ( - { buildMix, fetchHex, poolboy_1_5_1, connection_1_0_2 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + poolboy_1_5_1, + connection_1_0_2 + }: + buildMix ({ name = "mongodb"; version = "0.1.1"; src = fetchHex { @@ -31395,15 +18820,21 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/ericmj/mongodb"; }; - } + } // packageOverrides) ) {}; mongodb = mongodb_0_1_1; mongodb_ecto_0_1_4 = callPackage ( - { buildMix, fetchHex, mongodb_0_1_1, ecto_1_0_7 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + mongodb_0_1_1, + ecto_1_0_7 + }: + buildMix ({ name = "mongodb_ecto"; version = "0.1.4"; src = fetchHex { @@ -31419,15 +18850,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "monk"; version = "0.1.3"; src = fetchHex { @@ -31443,15 +18874,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/niahoo/monk"; }; - } + } // packageOverrides) ) {}; monk = monk_0_1_3; morph_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "morph"; version = "0.1.0"; src = fetchHex { @@ -31466,43 +18897,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/cmoncrief/elixir-morph"; }; - } + } // packageOverrides) ) {}; morph = morph_0_1_0; - motor_hat_0_6_1 = callPackage - ( - { buildMix, fetchHex, elixir_ale_0_4_1 }: - buildMix { - name = "motor_hat"; - version = "0.6.1"; - src = fetchHex { - pkg = "motor_hat"; - version = "0.6.1"; - sha256 = - "f555e0ec59ee95d4dc6c14cbc3d9d12014f9bd7882c776dde715b9b1674ffa79"; - }; - beamDeps = [ elixir_ale_0_4_1 ]; - - meta = { - longDescription = ''Elixir implementation of the pyhton motor_hat - library from Adafruit for there motor_hat board. - Library: - https://github.com/adafruit/Adafruit-Motor-HAT-Python-Library - Board: https://www.adafruit.com/product/2348''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/matthewphilyaw/motor_hat"; - }; - } - ) {}; - - motor_hat = motor_hat_0_6_1; - moxie_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "moxie"; version = "0.0.1"; src = fetchHex { @@ -31516,15 +18919,15 @@ let license = stdenv.lib.licenses.free; homepage = "https://github.com/molossus/moxie"; }; - } + } // packageOverrides) ) {}; moxie = moxie_0_0_1; mpinyin_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "mpinyin"; version = "0.0.2"; src = fetchHex { @@ -31539,15 +18942,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/Hor/mpinyin"; }; - } + } // packageOverrides) ) {}; mpinyin = mpinyin_0_0_2; msgpack_0_5_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "msgpack"; version = "0.5.0"; src = fetchHex { @@ -31562,15 +18965,15 @@ let license = stdenv.lib.licenses.apsl20; homepage = "http://msgpack.org"; }; - } + } // packageOverrides) ) {}; msgpack = msgpack_0_5_0; msgpax_0_7_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "msgpax"; version = "0.7.1"; src = fetchHex { @@ -31587,13 +18990,13 @@ let license = stdenv.lib.licenses.isc; homepage = "https://github.com/lexmag/msgpax"; }; - } + } // packageOverrides) ) {}; msgpax_0_8_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "msgpax"; version = "0.8.2"; src = fetchHex { @@ -31610,64 +19013,15 @@ let license = stdenv.lib.licenses.isc; homepage = "https://github.com/lexmag/msgpax"; }; - } + } // packageOverrides) ) {}; msgpax = msgpax_0_8_2; - mstore_0_1_9 = callPackage - ( - { buildRebar3, fetchHex, trie_1_5_0, mmath_0_1_15 }: - buildRebar3 { - name = "mstore"; - version = "0.1.9"; - src = fetchHex { - pkg = "mstore"; - version = "0.1.9"; - sha256 = - "c9b0ac9de587e72d292b923c12fcc1ce8b74946dd688987246a5a4d26679b6ca"; - }; - - beamDeps = [ trie_1_5_0 mmath_0_1_15 ]; - - meta = { - description = ''Fast, flat metric store.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/dalmatinerdb/mstore"; - }; - } - ) {}; - - mstore = mstore_0_1_9; - - mt940_0_4_0 = callPackage - ( - { buildMix, fetchHex, timex_0_19_5, decimal_1_1_1 }: - buildMix { - name = "mt940"; - version = "0.4.0"; - src = fetchHex { - pkg = "mt940"; - version = "0.4.0"; - sha256 = - "7d9f509b4fa43bee0feaba3fa1aceed394145daa522561cd84b584d968be3be4"; - }; - beamDeps = [ timex_0_19_5 decimal_1_1_1 ]; - - meta = { - description = ''MT940 parser for Elixir.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/my-flow/mt940"; - }; - } - ) {}; - - mt940 = mt940_0_4_0; - mtx_1_0_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "mtx"; version = "1.0.0"; src = fetchHex { @@ -31682,15 +19036,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/synrc/mtx"; }; - } + } // packageOverrides) ) {}; mtx = mtx_1_0_0; multidef_0_2_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "multidef"; version = "0.2.1"; src = fetchHex { @@ -31710,15 +19064,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/pragdave/mdef"; }; - } + } // packageOverrides) ) {}; multidef = multidef_0_2_1; multiset_0_0_4 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "multiset"; version = "0.0.4"; src = fetchHex { @@ -31733,43 +19087,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/hilverd/multiset-elixir"; }; - } + } // packageOverrides) ) {}; multiset = multiset_0_0_4; - murdoch_0_0_1 = callPackage - ( - { - buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2, goth_0_0_3 - }: - buildMix { - name = "murdoch"; - version = "0.0.1"; - src = fetchHex { - pkg = "murdoch"; - version = "0.0.1"; - sha256 = - "77ec44ca76d6b4a14df7222104a36cb29ed25f7d52fb3ffe30807ddc82a2d9ad"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 goth_0_0_3 ]; - - meta = { - longDescription = ''A library for interacting with Google Cloud - Pub/Sub (PubSub). Supports both publication and - pull subscription''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/peburrows/murdoch"; - }; - } - ) {}; - - murdoch = murdoch_0_0_1; - murmur_0_2_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "murmur"; version = "0.2.1"; src = fetchHex { @@ -31787,13 +19113,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/gmcabrita/murmur"; }; - } + } // packageOverrides) ) {}; murmur_1_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "murmur"; version = "1.0.0"; src = fetchHex { @@ -31811,15 +19137,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/gmcabrita/murmur"; }; - } + } // packageOverrides) ) {}; murmur = murmur_1_0_0; mustache_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "mustache"; version = "0.0.2"; src = fetchHex { @@ -31834,38 +19160,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/schultyy/Mustache.ex"; }; - } + } // packageOverrides) ) {}; mustache = mustache_0_0_2; - mustachex_0_0_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "mustachex"; - version = "0.0.1"; - src = fetchHex { - pkg = "mustachex"; - version = "0.0.1"; - sha256 = - "356a7268e609c77a5b02d4ea4d98a189684a07709ec7db2dafd2b34da79bb402"; - }; - - meta = { - description = ''Mustache for Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/jui/mustachex"; - }; - } - ) {}; - - mustachex = mustachex_0_0_1; - mutant_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "mutant"; version = "0.0.2"; src = fetchHex { @@ -31881,38 +19184,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/hackersguildco/Mutant"; }; - } + } // packageOverrides) ) {}; mutant = mutant_0_0_2; - mynumber_1_0_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "mynumber"; - version = "1.0.0"; - src = fetchHex { - pkg = "mynumber"; - version = "1.0.0"; - sha256 = - "9d95bd6c7a2178c1fe3b9dc2712a6d9567885389a1a20b27518ea6067deeb0f7"; - }; - - meta = { - description = ''Mynumber Validation for Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/cncgl/elixir_mynumber"; - }; - } - ) {}; - - mynumber = mynumber_1_0_0; - mysql_1_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "mysql"; version = "1.0.0"; src = fetchHex { @@ -31927,15 +19207,15 @@ let 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, fetchHex, mysql_1_0_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, mysql_1_0_0 }: + buildMix ({ name = "mysqlex"; version = "0.0.1"; src = fetchHex { @@ -31953,15 +19233,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/tjheeta/mysqlex"; }; - } + } // packageOverrides) ) {}; mysqlex = mysqlex_0_0_1; n2o_2_3_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "n2o"; version = "2.3.0"; src = fetchHex { @@ -31976,63 +19256,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/synrc/n2o"; }; - } + } // packageOverrides) ) {}; n2o = n2o_2_3_0; - nacl_0_3_0 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "nacl"; - version = "0.3.0"; - src = fetchHex { - pkg = "nacl"; - version = "0.3.0"; - sha256 = - "83a626d0ddd17a9c9528aa57a79e0e19746a42def007bc48c4984f0905098a7b"; - }; - compilePorts = true; - - meta = { - description = ''Erlang-NaCl hex package''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/tonyg/erlang-nacl"; - }; - } - ) {}; - - nacl = nacl_0_3_0; - - nadia_0_4_0 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "nadia"; - version = "0.4.0"; - src = fetchHex { - pkg = "nadia"; - version = "0.4.0"; - sha256 = - "e76217333ad6d02ec971bfa781e70268285fc417aebb486318e0584affccb08d"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''Telegram Bot API Wrapper written in Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/zhyu/nadia"; - }; - } - ) {}; - - nadia = nadia_0_4_0; - nat_set_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "nat_set"; version = "0.0.1"; src = fetchHex { @@ -32048,15 +19280,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "nativegen"; version = "0.4.1"; src = fetchHex { @@ -32072,15 +19304,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/yoavlt/nativegen"; }; - } + } // packageOverrides) ) {}; nativegen = nativegen_0_4_1; nats_0_0_1 = callPackage ( - { buildMix, fetchHex, poolboy_1_5_1, json_0_3_3 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + poolboy_1_5_1, + json_0_3_3 + }: + buildMix ({ name = "nats"; version = "0.0.1"; src = fetchHex { @@ -32097,15 +19335,15 @@ let 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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "nats_msg"; version = "0.4.1"; src = fetchHex { @@ -32121,15 +19359,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "natsio"; version = "0.1.4"; src = fetchHex { @@ -32144,15 +19382,15 @@ let 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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "natural_sort"; version = "0.3.0"; src = fetchHex { @@ -32168,52 +19406,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/DanCouper/natural_sort"; }; - } + } // packageOverrides) ) {}; natural_sort = natural_sort_0_3_0; - naughtygram_0_2_0 = callPackage - ( - { - buildMix, - fetchHex, - poison_1_5_2, - httpoison_0_7_5, - floki_0_8_0, - exprintf_0_1_6 - }: - buildMix { - name = "naughtygram"; - version = "0.2.0"; - src = fetchHex { - pkg = "naughtygram"; - version = "0.2.0"; - sha256 = - "7ae4fb6518c06116139bc6a1fe6e3e52fe590acc4d5dc487c01fc2878ba6819d"; - }; - beamDeps = [ - poison_1_5_2 - httpoison_0_7_5 - floki_0_8_0 - exprintf_0_1_6 - ]; - - meta = { - description = ''Instagram Private API client library for - Elixir.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/zensavona/naughtygram"; - }; - } - ) {}; - - naughtygram = naughtygram_0_2_0; - navigation_history_0_2_0 = callPackage ( - { buildMix, fetchHex, plug_1_1_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ name = "navigation_history"; version = "0.2.0"; src = fetchHex { @@ -32230,15 +19431,15 @@ let homepage = "https://github.com/tuvistavie/plug-navigation-history"; }; - } + } // packageOverrides) ) {}; navigation_history = navigation_history_0_2_0; navigation_tree_0_4_4 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "navigation_tree"; version = "0.4.4"; src = fetchHex { @@ -32258,7 +19459,7 @@ let homepage = "https://github.com/gutschilla/elixir-navigation-tree"; }; - } + } // packageOverrides) ) {}; navigation_tree = navigation_tree_0_4_4; @@ -32267,13 +19468,14 @@ let ( { buildMix, + packageOverrides ? {}, fetchHex, xml_builder_0_0_8, pipe_0_0_2, ibrowse_4_2_2, httpotion_2_2_2 }: - buildMix { + buildMix ({ name = "ndc_ex_sdk"; version = "0.0.7"; src = fetchHex { @@ -32297,15 +19499,15 @@ let 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, fetchHex, json_0_3_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, json_0_3_3 }: + buildMix ({ name = "neat_ex"; version = "1.1.0"; src = fetchHex { @@ -32332,15 +19534,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "nectar"; version = "0.0.1"; src = fetchHex { @@ -32354,116 +19556,15 @@ let description = ''Placeholder package for nectar ecommerce''; license = stdenv.lib.licenses.mit; }; - } + } // packageOverrides) ) {}; nectar = nectar_0_0_1; - neo4j_0_3_0 = callPackage - ( - { buildErlangMk, fetchHex, jiffy_0_14_7, hackney_1_4_10 }: - buildErlangMk { - name = "neo4j"; - version = "0.3.0"; - src = fetchHex { - pkg = "neo4j"; - version = "0.3.0"; - sha256 = - "93b07252e5216dbccedda19a28873ab5352f59a3c0f257b85a14d3b4e47d3cf7"; - }; - beamDeps = [ jiffy_0_14_7 hackney_1_4_10 ]; - - meta = { - longDescription = ''Erlang client library for Neo4J This is a - lightweight wrapper for Neo4j REST API. Exposes - all of the functionality exposed by Neo4J REST - API. Please refer to README to see if you need - version 0.2.1 or 0.3''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/dmitriid/neo4j-erlang"; - }; - } - ) {}; - - neo4j = neo4j_0_3_0; - - neo4j_sips_0_1_25 = callPackage - ( - { - buildMix, - fetchHex, - poolboy_1_5_1, - poison_2_1_0, - httpoison_0_8_2, - con_cache_0_11_0 - }: - buildMix { - name = "neo4j_sips"; - version = "0.1.25"; - src = fetchHex { - pkg = "neo4j_sips"; - version = "0.1.25"; - sha256 = - "b81aa758aa45ec67c40d8876e5bf6a69e290e0c8d529e078546e930dbc3dcd8e"; - }; - beamDeps = [ - poolboy_1_5_1 - poison_2_1_0 - httpoison_0_8_2 - con_cache_0_11_0 - ]; - - meta = { - description = ''A very simple and versatile Neo4J Elixir - driver''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/florinpatrascu/neo4j_sips"; - }; - } - ) {}; - - neo4j_sips = neo4j_sips_0_1_25; - - neo4j_sips_models_0_1_1 = callPackage - ( - { - buildMix, - fetchHex, - timex_1_0_2, - neo4j_sips_0_1_25, - inflex_1_5_0, - chronos_1_5_1 - }: - buildMix { - name = "neo4j_sips_models"; - version = "0.1.1"; - src = fetchHex { - pkg = "neo4j_sips_models"; - version = "0.1.1"; - sha256 = - "6572993cd5acdcdf77490d608236c869ce0cda2931beda2a272f85f2f1831759"; - }; - beamDeps = [ - timex_1_0_2 - neo4j_sips_0_1_25 - inflex_1_5_0 - chronos_1_5_1 - ]; - - meta = { - description = ''Add Models support to the Neo4J Elixir driver''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/florinpatrascu/neo4j_sips_models"; - }; - } - ) {}; - - neo4j_sips_models = neo4j_sips_models_0_1_1; - neotoma_1_7_3 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "neotoma"; version = "1.7.3"; src = fetchHex { @@ -32473,44 +19574,23 @@ let "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; - neotomex_0_1_4 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "neotomex"; - version = "0.1.4"; - src = fetchHex { - pkg = "neotomex"; - version = "0.1.4"; - sha256 = - "0a15f69aa859882699e30a30386ad47a16abb5e862c27aea56e51040d682fa5a"; - }; - - meta = { - description = ''A PEG parser/transformer with a pleasant Elixir - DSL.''; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/jtmoulia/neotomex"; - }; - } - ) {}; - - neotomex = neotomex_0_1_4; - nerves_0_2_0 = callPackage ( - { buildMix, fetchHex, exrm_1_0_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, exrm_1_0_3 }: + buildMix ({ name = "nerves"; version = "0.2.0"; src = fetchHex { @@ -32527,39 +19607,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/nerves-project/nerves"; }; - } + } // packageOverrides) ) {}; nerves = nerves_0_2_0; - nerves_io_neopixel_0_2_0 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "nerves_io_neopixel"; - version = "0.2.0"; - src = fetchHex { - pkg = "nerves_io_neopixel"; - version = "0.2.0"; - sha256 = - "662ca0af01330399eba9aff9806c086027ec5b3a2e235af4cd909282a6d09afa"; - }; - - meta = { - description = ''Drive WS2812B "NeoPixel" RGB LED strips from a - Raspberry Pi using Elixir.''; - license = with stdenv.lib.licenses; [ mit free ]; - homepage = "https://github.com/GregMefford/nerves_io_neopixel"; - }; - } - ) {}; - - nerves_io_neopixel = nerves_io_neopixel_0_2_0; - nest_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "nest"; version = "0.0.1"; src = fetchHex { @@ -32576,15 +19632,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/adamzaninovich/nest"; }; - } + } // packageOverrides) ) {}; nest = nest_0_0_1; nested_set_0_0_2 = callPackage ( - { buildMix, fetchHex, ecto_1_1_5 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, ecto_1_1_5 }: + buildMix ({ name = "nested_set"; version = "0.0.2"; src = fetchHex { @@ -32603,15 +19659,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "netrc"; version = "0.0.2"; src = fetchHex { @@ -32626,15 +19682,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/ma2gedev/netrcex"; }; - } + } // packageOverrides) ) {}; netrc = netrc_0_0_2; netstrings_2_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "netstrings"; version = "2.0.1"; src = fetchHex { @@ -32649,15 +19705,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "neural_network"; version = "0.1.0"; src = fetchHex { @@ -32674,15 +19730,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "news"; version = "0.3.0"; src = fetchHex { @@ -32697,15 +19753,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/zhongwencool/news"; }; - } + } // packageOverrides) ) {}; news = news_0_3_0; ngram_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ngram"; version = "0.0.1"; src = fetchHex { @@ -32720,67 +19776,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/ardcore/ngram"; }; - } + } // packageOverrides) ) {}; ngram = ngram_0_0_1; - nice_nickname_0_0_1 = callPackage - ( - { buildMix, fetchHex, poison_1_4_0 }: - buildMix { - name = "nice_nickname"; - version = "0.0.1"; - src = fetchHex { - pkg = "nice_nickname"; - version = "0.0.1"; - sha256 = - "7d5c635290df8fa7a59dbaa22e519102e13ddb8ac4cae5a7a40018c9ff795b42"; - }; - beamDeps = [ poison_1_4_0 ]; - - meta = { - description = ''A nickname generator and profanity filter for - Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/skylerparr/nice_nickname"; - }; - } - ) {}; - - nice_nickname = nice_nickname_0_0_1; - - nifty_0_0_3 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "nifty"; - version = "0.0.3"; - src = fetchHex { - pkg = "nifty"; - version = "0.0.3"; - sha256 = - "ef5c6ea64835d3371382c7e042c42aec0b85625b232b4b9e1f2587e1c8e5401e"; - }; - - meta = { - longDescription = ''A semi-useful tool to generate boilerplate - when you want to use a NIF in your project. You - don`t really want to use a NIF in your project, - until you do. Then this might save you writing - most of the boilerplate.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/rossjones/nifty"; - }; - } - ) {}; - - nifty = nifty_0_0_3; - nile_0_1_3 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "nile"; version = "0.1.3"; src = fetchHex { @@ -32795,176 +19799,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/camshaft/nile"; }; - } + } // packageOverrides) ) {}; nile = nile_0_1_3; - ninjaproxies_0_2_0 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "ninjaproxies"; - version = "0.2.0"; - src = fetchHex { - pkg = "ninjaproxies"; - version = "0.2.0"; - sha256 = - "5524329d00944690b362d30fef9c4032c03c401cc44d0ad9e98e147f5792fade"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''Ninjaproxies client library for Elixir.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/zensavona/ninjaproxies"; - }; - } - ) {}; - - ninjaproxies = ninjaproxies_0_2_0; - - nio_google_authenticator_1_0_1 = callPackage - ( - { buildMix, fetchHex, pot_0_9_4, ecto_2_0_0_beta_2 }: - buildMix { - name = "nio_google_authenticator"; - version = "1.0.1"; - src = fetchHex { - pkg = "nio_google_authenticator"; - version = "1.0.1"; - sha256 = - "a8a82c6c40e9575e8bea2fc7302af05bcd478b3a6a0e9df212617f807fe23758"; - }; - beamDeps = [ pot_0_9_4 ecto_2_0_0_beta_2 ]; - - meta = { - longDescription = ''NioGoogleAuthenticator is a collection of - Elixir convenience functions to generate secrets - and validate tokens used in conjunction with - Google Authenticator. It also includes functions - that automatically add a secret to an - Ecto.Changeset.''; - license = stdenv.lib.licenses.mit; - homepage = - "https://github.com/maxneuvians/nio_google_authenticator"; - }; - } - ) {}; - - nio_google_authenticator = nio_google_authenticator_1_0_1; - - nio_google_geocoder_0_7_0 = callPackage - ( - { - buildMix, - fetchHex, - poison_1_5_2, - httpoison_0_8_2, - ecto_2_0_0_beta_2 - }: - buildMix { - name = "nio_google_geocoder"; - version = "0.7.0"; - src = fetchHex { - pkg = "nio_google_geocoder"; - version = "0.7.0"; - sha256 = - "ba551ad6138b133d6b90ac96c0443aa31724084049059bf15710dac4c1f3e701"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ecto_2_0_0_beta_2 ]; - - meta = { - longDescription = ''NioGoogleGeocoder is a collection of Elixir - convenience functions to geocode a single, or - list of, addresses. It also includes a function - that automatically adds a geo location to an - `Ecto.Changeset`.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/maxneuvians/nio_google_geocoder"; - }; - } - ) {}; - - nio_google_geocoder = nio_google_geocoder_0_7_0; - - njord_0_1_1 = callPackage - ( - { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: - buildMix { - name = "njord"; - version = "0.1.1"; - src = fetchHex { - pkg = "njord"; - version = "0.1.1"; - sha256 = - "b438430dbf6ceaf2bede01a285c5032be3041cbedd7c1552653d75179fab4dfb"; - }; - beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; - - meta = { - description = ''A wrapper over HTTPoison to build client APIs.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/gmtprime/njord"; - }; - } - ) {}; - - njord = njord_0_1_1; - - nodefinder_1_5_1 = callPackage - ( - { buildRebar3, fetchHex, erlcloud_0_9_2 }: - buildRebar3 { - name = "nodefinder"; - version = "1.5.1"; - src = fetchHex { - pkg = "nodefinder"; - version = "1.5.1"; - sha256 = - "c617372ee14c344c546a978936d7ceab283609b3b33b6516ed9b3651ad5bfb48"; - }; - - beamDeps = [ erlcloud_0_9_2 ]; - - meta = { - description = ''Strategies For Automatic Node Discovery''; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/okeuday/nodefinder"; - }; - } - ) {}; - - nodefinder = nodefinder_1_5_1; - - normalixr_0_3_0 = callPackage - ( - { buildMix, fetchHex, ecto_0_2_7 }: - buildMix { - name = "normalixr"; - version = "0.3.0"; - src = fetchHex { - pkg = "normalixr"; - version = "0.3.0"; - sha256 = - "22a9c5137c23b1485a6b13027cb2979ce04d5b119b257e863975a7fb336c1e46"; - }; - beamDeps = [ ecto_0_2_7 ]; - - meta = { - description = ''Normalization and backfilling Ecto Schemas''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/theemuts/normalixr"; - }; - } - ) {}; - - normalixr = normalixr_0_3_0; - normalize_email_0_0_1 = callPackage ( - { buildMix, fetchHex, is_email_0_0_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, is_email_0_0_2 }: + buildMix ({ name = "normalize_email"; version = "0.0.1"; src = fetchHex { @@ -32980,15 +19823,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "normalize_url"; version = "0.0.2"; src = fetchHex { @@ -33003,15 +19846,15 @@ let 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, fetchHex, gettext_0_10_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, gettext_0_10_0 }: + buildMix ({ name = "not_qwerty123"; version = "1.1.0"; src = fetchHex { @@ -33028,15 +19871,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "number"; version = "0.4.1"; src = fetchHex { @@ -33052,77 +19895,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/danielberkompas/number"; }; - } + } // packageOverrides) ) {}; number = number_0_4_1; - oauth2_0_3_0 = callPackage - ( - { - buildMix, - fetchHex, - poison_1_5_2, - plug_1_1_3, - httpoison_0_8_2, - hackney_1_6_0 - }: - buildMix { - name = "oauth2"; - version = "0.3.0"; - src = fetchHex { - pkg = "oauth2"; - version = "0.3.0"; - sha256 = - "ee23e6fb6ac84abce23713ba93f1df2fd368c9ad7b9288f0ef6fcec0e0249043"; - }; - beamDeps = [ - poison_1_5_2 plug_1_1_3 httpoison_0_8_2 hackney_1_6_0 - ]; - - meta = { - description = ''An Elixir OAuth 2.0 Client Library''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/scrogson/oauth2"; - }; - } - ) {}; - - oauth2_0_6_0 = callPackage - ( - { - buildMix, - fetchHex, - poison_1_0_3, - mimetype_parser_0_1_2, - httpoison_0_8_2 - }: - buildMix { - name = "oauth2"; - version = "0.6.0"; - src = fetchHex { - pkg = "oauth2"; - version = "0.6.0"; - sha256 = - "1fcc76a12fcaa57392c0288be90df0eabd898c0982944c67d0e84e980c423e10"; - }; - beamDeps = [ poison_1_0_3 mimetype_parser_0_1_2 httpoison_0_8_2 - ]; - - meta = { - description = ''An Elixir OAuth 2.0 Client Library''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/scrogson/oauth2"; - }; - } - ) {}; - - oauth2 = oauth2_0_6_0; - oauth2_erlang_0_6_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "oauth2_erlang"; version = "0.6.1"; src = fetchHex { @@ -33137,91 +19918,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/kivra/oauth2"; }; - } + } // packageOverrides) ) {}; oauth2_erlang = oauth2_erlang_0_6_1; - oauth2cli_0_0_4 = callPackage - ( - { - buildMix, - fetchHex, - poison_1_5_2, - plug_0_9_0, - httpoison_0_7_5, - hackney_1_6_0, - cowboy_1_0_4 - }: - buildMix { - name = "oauth2cli"; - version = "0.0.4"; - src = fetchHex { - pkg = "oauth2cli"; - version = "0.0.4"; - sha256 = - "16645e7bb9b3af13d1187da955403ff70c0cdaded278d0c51503ea6c29172b5b"; - }; - beamDeps = [ - poison_1_5_2 - plug_0_9_0 - httpoison_0_7_5 - hackney_1_6_0 - cowboy_1_0_4 - ]; - - meta = { - description = ''Simple OAuth2 client ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/mgamini/oauth2cli-elixir"; - }; - } - ) {}; - - oauth2cli = oauth2cli_0_0_4; - - oauth2ex_0_0_9 = callPackage - ( - { - buildMix, - fetchHex, - timex_1_0_0_rc4, - plug_1_1_3, - httpoison_0_8_2, - exjsx_3_2_0, - cowboy_1_0_4 - }: - buildMix { - name = "oauth2ex"; - version = "0.0.9"; - src = fetchHex { - pkg = "oauth2ex"; - version = "0.0.9"; - sha256 = - "46f5f13c0474da8727f45c6d7c455d86d94a1b20176230a2b21be0494066a564"; - }; - beamDeps = [ - timex_1_0_0_rc4 - plug_1_1_3 - httpoison_0_8_2 - exjsx_3_2_0 - cowboy_1_0_4 - ]; - - meta = { - description = ''An OAuth 2.0 client library for elixir.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/parroty/oauth2ex"; - }; - } - ) {}; - - oauth2ex = oauth2ex_0_0_9; - oauther_1_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "oauther"; version = "1.0.2"; src = fetchHex { @@ -33237,86 +19942,15 @@ let license = stdenv.lib.licenses.isc; homepage = "https://github.com/lexmag/oauther"; }; - } + } // packageOverrides) ) {}; oauther = oauther_1_0_2; - obelisk_0_10_0 = callPackage - ( - { - buildMix, - fetchHex, - rss_0_2_1, - plug_0_11_3, - mock_0_1_3, - earmark_0_1_19, - cowboy_1_0_4, - chronos_0_3_9, - calliope_0_3_0, - anubis_0_1_0 - }: - buildMix { - name = "obelisk"; - version = "0.10.0"; - src = fetchHex { - pkg = "obelisk"; - version = "0.10.0"; - sha256 = - "faf46188e3f79c8ac512ae104016f18d05598198feb35a09c8936c548dfba06e"; - }; - beamDeps = [ - rss_0_2_1 - plug_0_11_3 - mock_0_1_3 - earmark_0_1_19 - cowboy_1_0_4 - chronos_0_3_9 - calliope_0_3_0 - anubis_0_1_0 - ]; - - meta = { - longDescription = '' obelisk is a static site generator for - Elixir. It is inspired by jekyll, with the goal - of being fast and simple to use and extend. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/bennyhallett/obelisk"; - }; - } - ) {}; - - obelisk = obelisk_0_10_0; - - observer_cli_1_0_3 = callPackage - ( - { buildRebar3, fetchHex, recon_2_2_1 }: - buildRebar3 { - name = "observer_cli"; - version = "1.0.3"; - src = fetchHex { - pkg = "observer_cli"; - version = "1.0.3"; - sha256 = - "18e5d9aa5412ec063cf9719bcfe73bf990c5fed5c9a3c8422c2b5d9529fc8b0d"; - }; - - beamDeps = [ recon_2_2_1 ]; - - meta = { - description = ''Visualize Erlang Nodes On The Command Line''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/zhongwencool/observer_cli"; - }; - } - ) {}; - - observer_cli = observer_cli_1_0_3; - octet_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "octet"; version = "0.0.2"; src = fetchHex { @@ -33331,42 +19965,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/kiennt/octet"; }; - } + } // packageOverrides) ) {}; octet = octet_0_0_2; - octokit_0_1_0 = callPackage - ( - { - buildMix, fetchHex, timex_1_0_2, poison_2_1_0, httpoison_0_8_2 - }: - buildMix { - name = "octokit"; - version = "0.1.0"; - src = fetchHex { - pkg = "octokit"; - version = "0.1.0"; - sha256 = - "1c761130e94dbbe16a7751ee1289e1334c9208222da03a8ae9fd77c50f5e969b"; - }; - beamDeps = [ timex_1_0_2 poison_2_1_0 httpoison_0_8_2 ]; - - meta = { - description = ''An Elixir library for accessing the GitHub - API.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/lee-dohm/octokit.ex"; - }; - } - ) {}; - - octokit = octokit_0_1_0; - odgn_json_pointer_1_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "odgn_json_pointer"; version = "1.1.0"; src = fetchHex { @@ -33382,15 +19989,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "odt_potion"; version = "0.0.1"; src = fetchHex { @@ -33406,15 +20013,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "og"; version = "0.0.6"; src = fetchHex { @@ -33430,15 +20037,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/stephenmoloney/og"; }; - } + } // packageOverrides) ) {}; og = og_0_0_6; ok_0_1_3 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ok"; version = "0.1.3"; src = fetchHex { @@ -33453,15 +20060,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/CrowdHailer/OK"; }; - } + } // packageOverrides) ) {}; ok = ok_0_1_3; ok_jose_2_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ok_jose"; version = "2.0.0"; src = fetchHex { @@ -33476,87 +20083,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/vic/ok_jose"; }; - } + } // packageOverrides) ) {}; ok_jose = ok_jose_2_0_0; - okta_0_0_1 = callPackage - ( - { buildMix, fetchHex, poison_1_4_0, httpoison_0_7_5 }: - buildMix { - name = "okta"; - version = "0.0.1"; - src = fetchHex { - pkg = "okta"; - version = "0.0.1"; - sha256 = - "1fb857a60a917bfe9ff6b1bf87908ba8aa1387ddc4586f9b9465fe19415d825a"; - }; - beamDeps = [ poison_1_4_0 httpoison_0_7_5 ]; - - meta = { - description = ''An Elixir Library for interfacing Okta''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/Cobenian/okta"; - }; - } - ) {}; - - okta = okta_0_0_1; - - omise_0_1_4 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "omise"; - version = "0.1.4"; - src = fetchHex { - pkg = "omise"; - version = "0.1.4"; - sha256 = - "35e7fe1776da9cf5ddeb0138391868d6dbbe976e5a932183c4f445371b1b0c4d"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''Omise client library for Elixir.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/teerawat1992/omise"; - }; - } - ) {}; - - omise = omise_0_1_4; - - one_signal_0_0_6 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "one_signal"; - version = "0.0.6"; - src = fetchHex { - pkg = "one_signal"; - version = "0.0.6"; - sha256 = - "d90ec5f9e43d164e2942422d3c1e9a6b26a956ea135eb1a316380e12ef6b27d1"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''Elixir wrapper of OneSignal''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/yoavlt/one_signal"; - }; - } - ) {}; - - one_signal = one_signal_0_0_6; - onetime_1_0_0 = callPackage ( - { buildMix, fetchHex, timex_1_0_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, timex_1_0_2 }: + buildMix ({ name = "onetime"; version = "1.0.0"; src = fetchHex { @@ -33572,15 +20107,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/ryo33/onetime-elixir"; }; - } + } // packageOverrides) ) {}; onetime = onetime_1_0_0; oop_0_0_4 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "oop"; version = "0.0.4"; src = fetchHex { @@ -33595,138 +20130,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/wojtekmach/oop"; }; - } + } // packageOverrides) ) {}; oop = oop_0_0_4; - opbeat_0_3_0 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "opbeat"; - version = "0.3.0"; - src = fetchHex { - pkg = "opbeat"; - version = "0.3.0"; - sha256 = - "20977e8ae08a1789326a3e5c0c8fa3265dd0e6ddc1fb6abe25c3a33d3fc9e692"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''Elixir client for opbeat''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/teodor-pripoae/opbeat"; - }; - } - ) {}; - - opbeat = opbeat_0_3_0; - - open_graphx_0_0_2 = callPackage - ( - { buildMix, fetchHex, httpoison_0_8_2, floki_0_8_0 }: - buildMix { - name = "open_graphx"; - version = "0.0.2"; - src = fetchHex { - pkg = "open_graphx"; - version = "0.0.2"; - sha256 = - "2eef951c4fbb8a01f11ed3ab6ca62dc695a84baf9ae0fbe7698058eac8020b70"; - }; - beamDeps = [ httpoison_0_8_2 floki_0_8_0 ]; - - meta = { - description = ''Load Open Graph Protocol''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/yoavlt/open_graphx"; - }; - } - ) {}; - - open_graphx = open_graphx_0_0_2; - - openmaize_0_17_2 = callPackage - ( - { - buildMix, - fetchHex, - postgrex_0_11_1, - poison_2_1_0, - plug_1_1_3, - not_qwerty123_1_1_0, - ecto_2_0_0_beta_2, - cowboy_1_0_4, - comeonin_2_3_0 - }: - buildMix { - name = "openmaize"; - version = "0.17.2"; - src = fetchHex { - pkg = "openmaize"; - version = "0.17.2"; - sha256 = - "d3199c1513d4033ccec4fcc52a0d0dd6afb09b5c58c848a33d43dd4da08eda91"; - }; - beamDeps = [ - postgrex_0_11_1 - poison_2_1_0 - plug_1_1_3 - not_qwerty123_1_1_0 - ecto_2_0_0_beta_2 - cowboy_1_0_4 - comeonin_2_3_0 - ]; - - meta = { - description = ''Authentication library for Elixir using Plug.''; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/elixircnx/openmaize"; - }; - } - ) {}; - - openmaize = openmaize_0_17_2; - - openstack_0_0_4 = callPackage - ( - { - buildMix, - fetchHex, - table_0_0_4, - poison_1_5_2, - maybe_0_0_1, - httpoison_0_8_2 - }: - buildMix { - name = "openstack"; - version = "0.0.4"; - src = fetchHex { - pkg = "openstack"; - version = "0.0.4"; - sha256 = - "ddc471e2d95edb26b3f826986f730fbb1fb70de62edaa00a0c1cd7fd6de7fde1"; - }; - beamDeps = [ - table_0_0_4 poison_1_5_2 maybe_0_0_1 httpoison_0_8_2 - ]; - - meta = { - description = ''Openstack Client''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/zweifisch/openstack.ex"; - }; - } - ) {}; - - openstack = openstack_0_0_4; - ordered_list_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ordered_list"; version = "0.1.0"; src = fetchHex { @@ -33741,15 +20153,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "os_utils"; version = "0.3.0"; src = fetchHex { @@ -33764,15 +20176,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "osc"; version = "0.1.1"; src = fetchHex { @@ -33787,89 +20199,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/camshaft/osc_ex"; }; - } + } // packageOverrides) ) {}; osc = osc_0_1_1; - overpass_0_1_1 = callPackage - ( - { - buildMix, fetchHex, sweet_xml_0_5_1, jsx_2_8_0, httpoison_0_7_5 - }: - buildMix { - name = "overpass"; - version = "0.1.1"; - src = fetchHex { - pkg = "overpass"; - version = "0.1.1"; - sha256 = - "6a664bd17e7612825fd7c3a0c3e0039412d83ac6d459c84018caf07e800cb6a8"; - }; - beamDeps = [ sweet_xml_0_5_1 jsx_2_8_0 httpoison_0_7_5 ]; - - meta = { - description = ''A Elixir wrapper to access the Overpass API.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/CodeforChemnitz/elixir-overpass"; - }; - } - ) {}; - - overpass = overpass_0_1_1; - - oxr_0_3_1 = callPackage - ( - { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: - buildMix { - name = "oxr"; - version = "0.3.1"; - src = fetchHex { - pkg = "oxr"; - version = "0.3.1"; - sha256 = - "85b9525da74c1c36c3e8121d4db79775fc62ba27bb34be1f7f4b5615c70dc57c"; - }; - beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; - - meta = { - description = ''A thin API wrapper for Open Exchange Rates - (https://openexchangerates.org)''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/marksilvis/oxr-elixir"; - }; - } - ) {}; - - oxr = oxr_0_3_1; - - p1_mysql_1_0_1 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "p1_mysql"; - version = "1.0.1"; - src = fetchHex { - pkg = "p1_mysql"; - version = "1.0.1"; - sha256 = - "4235c0d95d4ec01ed7511ebb253f5c54a9635b766a8b923f41e238ed85008e7d"; - }; - - meta = { - description = ''Pure Erlang MySQL driver''; - license = with stdenv.lib.licenses; [ free asl20 ]; - homepage = "https://github.com/processone/p1_mysql"; - }; - } - ) {}; - - p1_mysql = p1_mysql_1_0_1; - p1_oauth2_0_6_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "p1_oauth2"; version = "0.6.1"; src = fetchHex { @@ -33879,68 +20217,23 @@ let "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_pgsql_1_1_0 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "p1_pgsql"; - version = "1.1.0"; - src = fetchHex { - pkg = "p1_pgsql"; - version = "1.1.0"; - sha256 = - "d6616a30e8d6964b488cebd6b9ca754783640ca85c4792bf7b1260a15303bf1c"; - }; - - meta = { - description = ''PostgreSQL driver''; - license = with stdenv.lib.licenses; [ epl10 asl20 ]; - homepage = "https://github.com/processone/p1_pgsql"; - }; - } - ) {}; - - p1_pgsql = p1_pgsql_1_1_0; - - p1_stringprep_1_0_1 = callPackage - ( - { buildRebar3, fetchHex, p1_utils_1_0_3 }: - buildRebar3 { - name = "p1_stringprep"; - version = "1.0.1"; - src = fetchHex { - pkg = "p1_stringprep"; - version = "1.0.1"; - sha256 = - "e36ce6434010eba2fb6fc18bf4ba65797be3bba17a686f79a2326d26614071c0"; - }; - compilePorts = true; - beamDeps = [ p1_utils_1_0_3 ]; - - meta = { - description = ''Fast Stringprep Erlang / Elixir implementation''; - license = with stdenv.lib.licenses; [ asl20 free ]; - homepage = "https://github.com/processone/stringprep"; - }; - } - ) {}; - - p1_stringprep = p1_stringprep_1_0_1; - p1_utils_1_0_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "p1_utils"; version = "1.0.0"; src = fetchHex { @@ -33950,90 +20243,21 @@ let "b2c6316286b071f2f667fb1c59b44fe0c996917515fa93374a4a3264affc5105"; }; - meta = { - description = ''Erlang utility modules from ProcessOne''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/processone/p1_utils"; - }; - } - ) {}; + buildPlugins = [ rebar3_hex ]; - p1_utils_1_0_3 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "p1_utils"; - version = "1.0.3"; - src = fetchHex { - pkg = "p1_utils"; - version = "1.0.3"; - sha256 = - "6bf7dc7108eee70e036ea745faf5f55b4354e267f14371ea13338f58ce402d5e"; - }; meta = { description = ''Erlang utility modules from ProcessOne''; license = stdenv.lib.licenses.asl20; homepage = "https://github.com/processone/p1_utils"; }; - } + } // packageOverrides) ) {}; - p1_utils = p1_utils_1_0_3; - - p1_xml_1_1_1 = callPackage - ( - { buildRebar3, fetchHex, p1_utils_1_0_0 }: - buildRebar3 { - name = "p1_xml"; - version = "1.1.1"; - src = fetchHex { - pkg = "p1_xml"; - version = "1.1.1"; - sha256 = - "ab68956163cc5ff8c749c503507a36c543841259e78c58a2bbe0ebe76a0b7ce3"; - }; - compilePorts = true; - beamDeps = [ p1_utils_1_0_0 ]; - - meta = { - description = ''XML parsing library. Now obsolete. Use fast_xml - instead''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/processone/xml"; - }; - } - ) {}; - - p1_xml = p1_xml_1_1_1; - - p1_xmlrpc_1_15_1 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "p1_xmlrpc"; - version = "1.15.1"; - src = fetchHex { - pkg = "p1_xmlrpc"; - version = "1.15.1"; - sha256 = - "4bca3009ad6b6c37c30255e3d63191a188e0fc6b6db41a428fe111d699d1a330"; - }; - - meta = { - description = ''XML-RPC server''; - license = with stdenv.lib.licenses; [ bsd2 asl20 ]; - homepage = "https://github.com/processone/p1_xmlrpc"; - }; - } - ) {}; - - p1_xmlrpc = p1_xmlrpc_1_15_1; - pact_0_2_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "pact"; version = "0.2.0"; src = fetchHex { @@ -34049,39 +20273,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/BlakeWilliams/pact"; }; - } + } // packageOverrides) ) {}; pact = pact_0_2_0; - pagexduty_0_1_0 = callPackage - ( - { buildMix, fetchHex, httpoison_0_8_2, exjsx_3_1_0 }: - buildMix { - name = "pagexduty"; - version = "0.1.0"; - src = fetchHex { - pkg = "pagexduty"; - version = "0.1.0"; - sha256 = - "7292a63eeb27637ff19f91f50910d2bbbc860e1eb0413aa5a5035ef32b41b232"; - }; - beamDeps = [ httpoison_0_8_2 exjsx_3_1_0 ]; - - meta = { - description = ''A Pagerduty client for Elixir.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/ride/pagexduty"; - }; - } - ) {}; - - pagexduty = pagexduty_0_1_0; - paginex_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "paginex"; version = "0.0.1"; src = fetchHex { @@ -34097,15 +20297,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/bhserna/paginex"; }; - } + } // packageOverrides) ) {}; paginex = paginex_0_0_1; painstaking_0_5_8 = callPackage ( - { buildMix, fetchHex, exoddic_1_3_1 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, exoddic_1_3_1 }: + buildMix ({ name = "painstaking"; version = "0.5.8"; src = fetchHex { @@ -34121,15 +20321,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/mwmiller/painstaking"; }; - } + } // packageOverrides) ) {}; painstaking = painstaking_0_5_8; palette_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "palette"; version = "0.0.2"; src = fetchHex { @@ -34144,15 +20344,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/lpil/palette"; }; - } + } // packageOverrides) ) {}; palette = palette_0_0_2; pandex_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "pandex"; version = "0.1.0"; src = fetchHex { @@ -34173,15 +20373,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/filterkaapi/pandex"; }; - } + } // packageOverrides) ) {}; pandex = pandex_0_1_0; pangu_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "pangu"; version = "0.1.0"; src = fetchHex { @@ -34196,15 +20396,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/cataska/pangu.ex"; }; - } + } // packageOverrides) ) {}; pangu = pangu_0_1_0; parabaikElixirConverter_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "parabaikElixirConverter"; version = "0.0.1"; src = fetchHex { @@ -34223,15 +20423,15 @@ let homepage = "https://github.com/Arkar-Aung/ParabaikElixirConverter"; }; - } + } // packageOverrides) ) {}; parabaikElixirConverter = parabaikElixirConverter_0_0_1; parallel_0_0_3 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "parallel"; version = "0.0.3"; src = fetchHex { @@ -34246,15 +20446,15 @@ let homepage = "https://github.com/Anonyfox/parallel"; }; - } + } // packageOverrides) ) {}; parallel = parallel_0_0_3; parallel_stream_1_0_3 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "parallel_stream"; version = "1.0.3"; src = fetchHex { @@ -34269,40 +20469,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/beatrichartz/parallel_stream"; }; - } + } // packageOverrides) ) {}; parallel_stream = parallel_stream_1_0_3; - params_2_0_0_beta_0 = callPackage - ( - { buildMix, fetchHex, ecto_0_2_7 }: - buildMix { - name = "params"; - version = "2.0.0-beta.0"; - src = fetchHex { - pkg = "params"; - version = "2.0.0-beta.0"; - sha256 = - "c8db0e2c6d4c592e66d19f6fdef0ecfab8aeb23101cbacf7cd3c5c8624780a72"; - }; - beamDeps = [ ecto_0_2_7 ]; - - meta = { - description = ''Parameter structure validation and casting with - Ecto.Schema.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/vic/params"; - }; - } - ) {}; - - params = params_2_0_0_beta_0; - paratize_2_1_3 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "paratize"; version = "2.1.3"; src = fetchHex { @@ -34318,39 +20493,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/seantanly/elixir-paratize"; }; - } + } // packageOverrides) ) {}; paratize = paratize_2_1_3; - parse_client_0_2_3 = callPackage - ( - { buildMix, fetchHex, httpoison_0_7_5, exjsx_3_0_2 }: - buildMix { - name = "parse_client"; - version = "0.2.3"; - src = fetchHex { - pkg = "parse_client"; - version = "0.2.3"; - sha256 = - "b80b259f9645ea4767824d47c12f719faf51a8031c4162f316fbe99a77b45c23"; - }; - beamDeps = [ httpoison_0_7_5 exjsx_3_0_2 ]; - - meta = { - description = ''Elixir client for the parse.com REST API ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/elixircnx/parse_elixir_client"; - }; - } - ) {}; - - parse_client = parse_client_0_2_3; - parse_torrent_0_2_0 = callPackage ( - { buildMix, fetchHex, earmark_0_2_1, bencode_0_3_0 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + earmark_0_2_1, + bencode_0_3_0 + }: + buildMix ({ name = "parse_torrent"; version = "0.2.0"; src = fetchHex { @@ -34366,40 +20523,15 @@ let license = stdenv.lib.licenses.unlicense; homepage = "https://github.com/preciz/parse_torrent"; }; - } + } // packageOverrides) ) {}; parse_torrent = parse_torrent_0_2_0; - parse_trans_2_9_0 = callPackage - ( - { buildRebar3, fetchHex, edown_0_7_0 }: - buildRebar3 { - name = "parse_trans"; - version = "2.9.0"; - src = fetchHex { - pkg = "parse_trans"; - version = "2.9.0"; - sha256 = - "dda020976ad4aafe051ce785c0460a71a11b8b6b8c08a98e2c45b83edfdf2978"; - }; - - beamDeps = [ edown_0_7_0 ]; - - meta = { - description = ''Parse transform utilities for Erlang.''; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/uwiger/parse_trans"; - }; - } - ) {}; - - parse_trans = parse_trans_2_9_0; - parselix_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "parselix"; version = "0.1.0"; src = fetchHex { @@ -34414,65 +20546,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/ryo33/Parselix"; }; - } + } // packageOverrides) ) {}; parselix = parselix_0_1_0; - parsex_0_0_2 = callPackage - ( - { buildMix, fetchHex, httpoison_0_8_2, poison_1_1_1 }: - buildMix { - name = "parsex"; - version = "0.0.2"; - src = fetchHex { - pkg = "parsex"; - version = "0.0.2"; - sha256 = - "024657ae8d29eba99caf90276ac2d7f27cf435a543d4036859fd4ab6ffbceb75"; - }; - beamDeps = [ httpoison_0_8_2 poison_1_1_1 ]; - - meta = { - description = ''ParsEx is an Elixir HTTP Client for communicating - with Parse.com`s Restful API ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/maarek/ParsEx"; - }; - } - ) {}; - - parsex = parsex_0_0_2; - - passport_0_0_4 = callPackage - ( - { buildMix, fetchHex, phoenix_1_1_4, comeonin_2_3_0 }: - buildMix { - name = "passport"; - version = "0.0.4"; - src = fetchHex { - pkg = "passport"; - version = "0.0.4"; - sha256 = - "10e8e42cfd5fa834d7c3c3276c39274a3824100f2ffeed26adb4ed8475f0be91"; - }; - beamDeps = [ phoenix_1_1_4 comeonin_2_3_0 ]; - - meta = { - description = ''Provides authentication for phoenix - applications''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/opendrops/passport"; - }; - } - ) {}; - - passport = passport_0_0_4; - pathway_0_1_0 = callPackage ( - { buildMix, fetchHex, poison_1_5_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }: + buildMix ({ name = "pathway"; version = "0.1.0"; src = fetchHex { @@ -34489,15 +20571,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/novabyte/pathway"; }; - } + } // packageOverrides) ) {}; pathway = pathway_0_1_0; pattern_tap_0_2_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "pattern_tap"; version = "0.2.2"; src = fetchHex { @@ -34513,43 +20595,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/mgwidmann/elixir-pattern_tap"; }; - } + } // packageOverrides) ) {}; pattern_tap = pattern_tap_0_2_2; - pavlov_0_2_3 = callPackage - ( - { buildMix, fetchHex, meck_0_8_4 }: - buildMix { - name = "pavlov"; - version = "0.2.3"; - src = fetchHex { - pkg = "pavlov"; - version = "0.2.3"; - sha256 = - "4d38e96b7581261a49f00d2046603ad3c9af6d52abd26d16bbf6a0a5a82c9643"; - }; - beamDeps = [ meck_0_8_4 ]; - - meta = { - longDescription = ''Pavlov is a BDD library for your Elixir - projects, allowing you to write expressive unit - tests that tell the story of how your - application behaves. The syntax tries to follow - RSpec`s wherever possible.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/sproutapp/pavlov"; - }; - } - ) {}; - - pavlov = pavlov_0_2_3; - pbkdf2_2_0_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "pbkdf2"; version = "2.0.0"; src = fetchHex { @@ -34564,15 +20618,15 @@ let 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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "pbkdf2_nif"; version = "0.3.0"; src = fetchHex { @@ -34582,21 +20636,23 @@ let "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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "pc"; version = "1.2.0"; src = fetchHex { @@ -34611,15 +20667,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/blt/port_compiler"; }; - } + } // packageOverrides) ) {}; pc = pc_1_2_0; pdf2htmlex_0_2_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "pdf2htmlex"; version = "0.2.0"; src = fetchHex { @@ -34635,15 +20691,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/ricn/pdf2htmlex"; }; - } + } // packageOverrides) ) {}; pdf2htmlex = pdf2htmlex_0_2_0; pdf_generator_0_3_1 = callPackage ( - { buildMix, fetchHex, porcelain_2_0_1, misc_random_0_2_6 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + porcelain_2_0_1, + misc_random_0_2_6 + }: + buildMix ({ name = "pdf_generator"; version = "0.3.1"; src = fetchHex { @@ -34661,51 +20723,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/gutschilla/elixir-pdf-generator"; }; - } + } // packageOverrides) ) {}; pdf_generator = pdf_generator_0_3_1; - peatio_client_1_5_0 = callPackage - ( - { - buildMix, - fetchHex, - poison_1_5_2, - httpoison_0_8_2, - hackney_1_4_4, - decimal_1_1_1 - }: - buildMix { - name = "peatio_client"; - version = "1.5.0"; - src = fetchHex { - pkg = "peatio_client"; - version = "1.5.0"; - sha256 = - "701489d2b53b76194bb8745003c2e5665045ba4132ec1020813c63671d19081e"; - }; - beamDeps = [ - poison_1_5_2 - httpoison_0_8_2 - hackney_1_4_4 - decimal_1_1_1 - ]; - - meta = { - description = ''Peatio Exchange compatibility API for Elixir.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/peatio/peatio-client-elixir"; - }; - } - ) {}; - - peatio_client = peatio_client_1_5_0; - peon_2_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "peon"; version = "2.0.0"; src = fetchHex { @@ -34720,39 +20746,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/supernintendo/peon"; }; - } + } // packageOverrides) ) {}; peon = peon_2_0_0; - pet_0_1_1 = callPackage - ( - { buildMix, fetchHex, yomel_0_5_0 }: - buildMix { - name = "pet"; - version = "0.1.1"; - src = fetchHex { - pkg = "pet"; - version = "0.1.1"; - sha256 = - "5ec25c6c2337e286919c925dce46ecfa4b09311f516ecd922c71391cd4caa697"; - }; - beamDeps = [ yomel_0_5_0 ]; - - meta = { - description = ''Account management tool compatible with pit''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/Joe-noh/pet"; - }; - } - ) {}; - - pet = pet_0_1_1; - petick_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "petick"; version = "0.0.1"; src = fetchHex { @@ -34767,15 +20769,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/niku/petick"; }; - } + } // packageOverrides) ) {}; petick = petick_0_0_1; pg2pubsub_0_1_12 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "pg2pubsub"; version = "0.1.12"; src = fetchHex { @@ -34791,42 +20793,22 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/kbremner/pg2pubsub"; }; - } + } // packageOverrides) ) {}; pg2pubsub = pg2pubsub_0_1_12; - pgpool_1_0_0 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "pgpool"; - version = "1.0.0"; - src = fetchHex { - pkg = "pgpool"; - version = "1.0.0"; - sha256 = - "694ae752dc02734cbe174577d8bdf4058d0353379385a3448aec1bec5d9b49ff"; - }; - - meta = { - longDescription = ''A PosgreSQL client that automatically uses - connection pools and reconnects in case of - errors.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/ostinelli/pgpool"; - }; - } - ) {}; - - pgpool = pgpool_1_0_0; - phasedb_0_0_1 = callPackage ( { - buildMix, fetchHex, inflex_1_5_0, heap_1_0_0, calendar_0_12_4 + buildMix, + packageOverrides ? {}, + fetchHex, + inflex_1_5_0, + heap_1_0_0, + calendar_0_12_4 }: - buildMix { + buildMix ({ name = "phasedb"; version = "0.0.1"; src = fetchHex { @@ -34841,78 +20823,22 @@ let description = ''A real-time time series database.''; }; - } + } // packageOverrides) ) {}; phasedb = phasedb_0_0_1; - phoenix_0_2_11 = callPackage - ( - { - buildMix, - fetchHex, - inflex_0_2_4, - ex_conf_0_1_2, - plug_0_5_1, - jazz_0_1_2 - }: - buildMix { - name = "phoenix"; - version = "0.2.11"; - src = fetchHex { - pkg = "phoenix"; - version = "0.2.11"; - sha256 = - "49bae6b4308f118942446154a63ea81d40a1ff79a0f20a846498f481c680ebdd"; - }; - beamDeps = [ inflex_0_2_4 ex_conf_0_1_2 plug_0_5_1 jazz_0_1_2 ]; - - 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"; - }; - } - ) {}; - - phoenix_0_4_1 = callPackage - ( - { - buildMix, - fetchHex, - cowboy_1_0_4, - plug_0_7_0, - linguist_0_1_5, - poison_1_1_1 - }: - buildMix { - name = "phoenix"; - version = "0.4.1"; - src = fetchHex { - pkg = "phoenix"; - version = "0.4.1"; - sha256 = - "b1e72759e90a814b6a5d4d94e218b2c975bd156ebdfb4c54f8dc8b590267b4e0"; - }; - beamDeps = [ cowboy_1_0_4 plug_0_7_0 linguist_0_1_5 poison_1_1_1 - ]; - - 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"; - }; - } - ) {}; - phoenix_1_0_4 = callPackage ( - { buildMix, fetchHex, poison_1_5_2, plug_1_1_3, cowboy_1_0_4 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_5_2, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ name = "phoenix"; version = "1.0.4"; src = fetchHex { @@ -34930,164 +20856,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/phoenixframework/phoenix"; }; - } + } // packageOverrides) ) {}; - phoenix_1_1_4 = callPackage - ( - { buildMix, fetchHex, poison_1_0_3, plug_1_1_3, cowboy_1_0_4 }: - buildMix { - name = "phoenix"; - version = "1.1.4"; - src = fetchHex { - pkg = "phoenix"; - version = "1.1.4"; - sha256 = - "5765238fd5caef83a8ce9242d63b4302963f44aefe70510a597aae86b5b6cd10"; - }; - beamDeps = [ poison_1_0_3 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"; - }; - } - ) {}; - - phoenix = phoenix_1_1_4; - - phoenix_calendar_0_1_2 = callPackage - ( - { buildMix, fetchHex, phoenix_html_2_5_1, calendar_0_12_4 }: - buildMix { - name = "phoenix_calendar"; - version = "0.1.2"; - src = fetchHex { - pkg = "phoenix_calendar"; - version = "0.1.2"; - sha256 = - "f22968fd2287b419bf9791845b62501bf0177630d01a92b0ba33e5f00978ca3c"; - }; - beamDeps = [ phoenix_html_2_5_1 calendar_0_12_4 ]; - - meta = { - description = ''Integration between Phoenix & Calendar''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/lau/phoenix_calendar"; - }; - } - ) {}; - - phoenix_calendar = phoenix_calendar_0_1_2; - - phoenix_dtl_0_0_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "phoenix_dtl"; - version = "0.0.1"; - src = fetchHex { - pkg = "phoenix_dtl"; - version = "0.0.1"; - sha256 = - "04e80730e1437dc624bd96207eaef064320209bb73e48915b4b52a9a01271898"; - }; - - meta = { - description = ''Phoenix Template Engine for the django template - language ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/andihit/phoenix_dtl"; - }; - } - ) {}; - - phoenix_dtl = phoenix_dtl_0_0_1; - - phoenix_ecto_3_0_0_beta_2 = callPackage - ( - { - buildMix, fetchHex, poison_1_0_3, phoenix_html_2_5_1, ecto_0_2_7 - }: - buildMix { - name = "phoenix_ecto"; - version = "3.0.0-beta.2"; - src = fetchHex { - pkg = "phoenix_ecto"; - version = "3.0.0-beta.2"; - sha256 = - "7df3a54eb77846e306255d7953a2c3b6484e8b50c1dac510c779df28f28641b8"; - }; - beamDeps = [ poison_1_0_3 phoenix_html_2_5_1 ecto_0_2_7 ]; - - meta = { - description = ''Integration between Phoenix & Ecto''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/phoenixframework/phoenix_ecto"; - }; - } - ) {}; - - phoenix_ecto = phoenix_ecto_3_0_0_beta_2; - - phoenix_ember_0_0_1 = callPackage - ( - { - buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2, hackney_1_4_10 - }: - buildMix { - name = "phoenix_ember"; - version = "0.0.1"; - src = fetchHex { - pkg = "phoenix_ember"; - version = "0.0.1"; - sha256 = - "2d108380a8eb25b88b80b950b7022bc061b77b8bfd2e37769e01499d6a6d2884"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 hackney_1_4_10 ]; - - meta = { - description = ''Ember.js integration via - ember-phoenix/phoenix-ember''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/levanto-financial/phoenix-ember"; - }; - } - ) {}; - - phoenix_ember = phoenix_ember_0_0_1; - - phoenix_gen_gulp_jspm_1_0_0 = callPackage - ( - { buildMix, fetchHex, phoenix_1_1_4 }: - buildMix { - name = "phoenix_gen_gulp_jspm"; - version = "1.0.0"; - src = fetchHex { - pkg = "phoenix_gen_gulp_jspm"; - version = "1.0.0"; - sha256 = - "7124ff1f232d82da40619579d2b3a5d15834f9cf3880ba3e8176cb7321b9eb59"; - }; - beamDeps = [ phoenix_1_1_4 ]; - - meta = { - description = ''Replaces Brunch with Gulp and adds JSPM''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/bryanjos/phoenix_gen_gulp_jspm"; - }; - } - ) {}; - - phoenix_gen_gulp_jspm = phoenix_gen_gulp_jspm_1_0_0; - phoenix_generator_0_2_1 = callPackage ( - { buildMix, fetchHex, inflex_0_3_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, inflex_0_3_0 }: + buildMix ({ name = "phoenix_generator"; version = "0.2.1"; src = fetchHex { @@ -35104,211 +20879,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/etufe/phoenix_generator"; }; - } + } // packageOverrides) ) {}; phoenix_generator = phoenix_generator_0_2_1; - phoenix_haml_0_2_0 = callPackage - ( - { - buildMix, - fetchHex, - phoenix_html_2_5_1, - phoenix_1_0_4, - calliope_0_3_0 - }: - buildMix { - name = "phoenix_haml"; - version = "0.2.0"; - src = fetchHex { - pkg = "phoenix_haml"; - version = "0.2.0"; - sha256 = - "ec4f0dae227972a472661f1e8f9c51e8618290c8b6e5ca084ff81f6e7318468e"; - }; - beamDeps = [ phoenix_html_2_5_1 phoenix_1_0_4 calliope_0_3_0 ]; - - meta = { - description = ''Phoenix Template Engine for Haml''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/chrismccord/phoenix_haml"; - }; - } - ) {}; - - phoenix_haml = phoenix_haml_0_2_0; - - phoenix_html_2_0_0_dev = callPackage - ( - { buildMix, fetchHex, plug_0_5_2 }: - buildMix { - name = "phoenix_html"; - version = "2.0.0-dev"; - src = fetchHex { - pkg = "phoenix_html"; - version = "2.0.0-dev"; - sha256 = - "3057019ee9159d7916ca80a85aa9b2848250916ccfa08047f821a9b19893c8aa"; - }; - beamDeps = [ plug_0_5_2 ]; - - meta = { - description = ''Phoenix.HTML functions for working with HTML - strings and templates''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/phoenixframework/phoenix_html"; - }; - } - ) {}; - - phoenix_html_2_5_1 = callPackage - ( - { buildMix, fetchHex, plug_0_5_2 }: - buildMix { - name = "phoenix_html"; - version = "2.5.1"; - src = fetchHex { - pkg = "phoenix_html"; - version = "2.5.1"; - sha256 = - "a5ebd47c5d0b5e3707fd9364e3ec228d8b84efa83e0ff80de451a42906ed1e60"; - }; - beamDeps = [ plug_0_5_2 ]; - - meta = { - description = ''Phoenix.HTML functions for working with HTML - strings and templates''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/phoenixframework/phoenix_html"; - }; - } - ) {}; - - phoenix_html = phoenix_html_2_5_1; - - phoenix_html_sanitizer_0_2_0 = callPackage - ( - { - buildMix, fetchHex, phoenix_html_2_5_1, html_sanitize_ex_0_3_1 - }: - buildMix { - name = "phoenix_html_sanitizer"; - version = "0.2.0"; - src = fetchHex { - pkg = "phoenix_html_sanitizer"; - version = "0.2.0"; - sha256 = - "4cb5ae02d5560ff4e24cc378487065d038f0efd4883925a770b05c1c1d56a13c"; - }; - beamDeps = [ phoenix_html_2_5_1 html_sanitize_ex_0_3_1 ]; - - meta = { - description = ''HTML sanitizer for Phoenix''; - license = stdenv.lib.licenses.mit; - homepage = - "https://github.com/elixirstatus/phoenix_html_sanitizer"; - }; - } - ) {}; - - phoenix_html_sanitizer = phoenix_html_sanitizer_0_2_0; - - phoenix_html_simplified_helpers_0_3_2 = callPackage - ( - { - buildMix, - fetchHex, - timex_ecto_1_0_4, - timex_1_0_2, - gettext_0_10_0, - ecto_2_0_0_beta_2 - }: - buildMix { - name = "phoenix_html_simplified_helpers"; - version = "0.3.2"; - src = fetchHex { - pkg = "phoenix_html_simplified_helpers"; - version = "0.3.2"; - sha256 = - "e34d2dae01c5803b1fdc1f6514b920541c7028f18322d6c8c8587dc77e5a7837"; - }; - beamDeps = [ - timex_ecto_1_0_4 - timex_1_0_2 - gettext_0_10_0 - ecto_2_0_0_beta_2 - ]; - - meta = { - longDescription = ''Some view helpers for phoenix html( truncate, - time_ago_in_words, number_with_delimiter )''; - license = stdenv.lib.licenses.mit; - homepage = - "https://github.com/ikeikeikeike/phoenix_html_simplified_helpers"; - }; - } - ) {}; - - phoenix_html_simplified_helpers = - phoenix_html_simplified_helpers_0_3_2; - - phoenix_linguist_0_0_1 = callPackage - ( - { - buildMix, fetchHex, phoenix_1_1_4, linguist_0_1_5, cowboy_1_0_4 - }: - buildMix { - name = "phoenix_linguist"; - version = "0.0.1"; - src = fetchHex { - pkg = "phoenix_linguist"; - version = "0.0.1"; - sha256 = - "4a27898ab733b3b55c9fe38bd7ae299a92cfb290dc7d9bc940e1af653de1b1eb"; - }; - beamDeps = [ phoenix_1_1_4 linguist_0_1_5 cowboy_1_0_4 ]; - - meta = { - longDescription = ''A project that integrates Phoenix with - Linguist, providing a plug and view helpers''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/jxs/phoenix_linguist"; - }; - } - ) {}; - - phoenix_linguist = phoenix_linguist_0_0_1; - - phoenix_live_reload_1_0_3 = callPackage - ( - { buildMix, fetchHex, phoenix_0_2_11, fs_0_9_2 }: - buildMix { - name = "phoenix_live_reload"; - version = "1.0.3"; - src = fetchHex { - pkg = "phoenix_live_reload"; - version = "1.0.3"; - sha256 = - "fbb65b7e4f4205b2e5d7061480889bd34d5c943a56feebd20b3dd949332fed85"; - }; - beamDeps = [ phoenix_0_2_11 fs_0_9_2 ]; - - meta = { - description = ''Provides live-reload functionality for Phoenix''; - license = stdenv.lib.licenses.mit; - homepage = - "https://github.com/phoenixframework/phoenix_live_reload"; - }; - } - ) {}; - - phoenix_live_reload = phoenix_live_reload_1_0_3; - phoenix_pubsub_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "phoenix_pubsub"; version = "0.0.1"; src = fetchHex { @@ -35323,15 +20902,21 @@ let 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, fetchHex, postgrex_0_11_1, poolboy_1_4_2 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + postgrex_0_11_1, + poolboy_1_4_2 + }: + buildMix ({ name = "phoenix_pubsub_postgres"; version = "0.0.2"; src = fetchHex { @@ -35348,68 +20933,15 @@ let homepage = "https://github.com/opendrops/phoenix-pubsub-postgres"; }; - } + } // packageOverrides) ) {}; phoenix_pubsub_postgres = phoenix_pubsub_postgres_0_0_2; - phoenix_pubsub_rabbitmq_0_0_1 = callPackage - ( - { buildMix, fetchHex, poolboy_1_4_2, amqp_0_1_4 }: - buildMix { - name = "phoenix_pubsub_rabbitmq"; - version = "0.0.1"; - src = fetchHex { - pkg = "phoenix_pubsub_rabbitmq"; - version = "0.0.1"; - sha256 = - "e2158052cb3adfedca953fe8318dd5633d276728cc4fae6daa54d0dd7b7401c6"; - }; - beamDeps = [ poolboy_1_4_2 amqp_0_1_4 ]; - - meta = { - description = ''RabbitMQ adapter for the Phoenix framework PubSub - layer. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/pma/phoenix_pubsub_rabbitmq"; - }; - } - ) {}; - - phoenix_pubsub_rabbitmq = phoenix_pubsub_rabbitmq_0_0_1; - - phoenix_pubsub_redis_2_0_0 = callPackage - ( - { - buildMix, fetchHex, redo_2_0_1, poolboy_1_2_1, phoenix_1_1_4 - }: - buildMix { - name = "phoenix_pubsub_redis"; - version = "2.0.0"; - src = fetchHex { - pkg = "phoenix_pubsub_redis"; - version = "2.0.0"; - sha256 = - "a10e9f4c419bed62d807e8be82f9ed5c9d8dfaef302165a0eec3e51ed1cb1cfa"; - }; - beamDeps = [ redo_2_0_1 poolboy_1_2_1 phoenix_1_1_4 ]; - - meta = { - description = ''The Redis PubSub adapter for the Phoenix - framework''; - license = stdenv.lib.licenses.mit; - homepage = - "https://github.com/phoenixframework/phoenix_pubsub_redis"; - }; - } - ) {}; - - phoenix_pubsub_redis = phoenix_pubsub_redis_2_0_0; - phoenix_pubsub_vernemq_0_0_3 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "phoenix_pubsub_vernemq"; version = "0.0.3"; src = fetchHex { @@ -35425,212 +20957,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/larshesel/phoenix_pubsub_vernemq"; }; - } + } // packageOverrides) ) {}; phoenix_pubsub_vernemq = phoenix_pubsub_vernemq_0_0_3; - phoenix_simple_form_0_0_2 = callPackage - ( - { buildMix, fetchHex, phoenix_html_2_5_1 }: - buildMix { - name = "phoenix_simple_form"; - version = "0.0.2"; - src = fetchHex { - pkg = "phoenix_simple_form"; - version = "0.0.2"; - sha256 = - "e059ada8c507168d2267d6a1db1790192c063ca5e2a3579dfd2d1b07e25e9f45"; - }; - beamDeps = [ phoenix_html_2_5_1 ]; - - meta = { - description = ''Easy form handling for phoenix''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/sbrink/phoenix_simple_form"; - }; - } - ) {}; - - phoenix_simple_form = phoenix_simple_form_0_0_2; - - phoenix_slim_0_4_1 = callPackage - ( - { - buildMix, - fetchHex, - slim_fast_0_10_0, - phoenix_html_2_5_1, - phoenix_1_1_4 - }: - buildMix { - name = "phoenix_slim"; - version = "0.4.1"; - src = fetchHex { - pkg = "phoenix_slim"; - version = "0.4.1"; - sha256 = - "4225e74608e29c93c603c6cde61766b604495e04ef65d6ca325ff1a9a492c563"; - }; - beamDeps = [ slim_fast_0_10_0 phoenix_html_2_5_1 phoenix_1_1_4 - ]; - - meta = { - description = ''Phoenix Template Engine for Slim''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/doomspork/phoenix_slim"; - }; - } - ) {}; - - phoenix_slim = phoenix_slim_0_4_1; - - phoenix_slime_0_5_1 = callPackage - ( - { - buildMix, - fetchHex, - slime_0_12_2, - phoenix_html_2_5_1, - phoenix_1_1_4, - cowboy_1_0_4 - }: - buildMix { - name = "phoenix_slime"; - version = "0.5.1"; - src = fetchHex { - pkg = "phoenix_slime"; - version = "0.5.1"; - sha256 = - "23a0028271f7ad03b199336efa9c3f4df02049de10dc94b5c133b4bb69f5e7e1"; - }; - beamDeps = [ - slime_0_12_2 - phoenix_html_2_5_1 - phoenix_1_1_4 - cowboy_1_0_4 - ]; - - meta = { - description = ''Phoenix Template Engine for Slim-like - templates''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/slime-lang/phoenix_slime"; - }; - } - ) {}; - - phoenix_slime = phoenix_slime_0_5_1; - - phoenix_swoosh_0_1_0 = callPackage - ( - { - buildMix, - fetchHex, - swoosh_0_1_0, - phoenix_html_2_5_1, - phoenix_1_1_4 - }: - buildMix { - name = "phoenix_swoosh"; - version = "0.1.0"; - src = fetchHex { - pkg = "phoenix_swoosh"; - version = "0.1.0"; - sha256 = - "cba68c2e421fbe7f54fbe8641918b0a276abbf81bee5a8eb37026cac85af9bd1"; - }; - beamDeps = [ swoosh_0_1_0 phoenix_html_2_5_1 phoenix_1_1_4 ]; - - meta = { - description = ''Use Swoosh to easily send emails in your Phoenix - project.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/swoosh/phoenix_swoosh"; - }; - } - ) {}; - - phoenix_swoosh = phoenix_swoosh_0_1_0; - - phoenix_timex_0_0_3 = callPackage - ( - { buildMix, fetchHex, timex_1_0_2, phoenix_html_2_5_1 }: - buildMix { - name = "phoenix_timex"; - version = "0.0.3"; - src = fetchHex { - pkg = "phoenix_timex"; - version = "0.0.3"; - sha256 = - "47b2c32de83581ef12b58bdd9518c8180684ec7161cc7944d3b27542e414bc84"; - }; - beamDeps = [ timex_1_0_2 phoenix_html_2_5_1 ]; - - meta = { - description = ''Phoenix and Timex integration''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/Paradem/phoenix_timex"; - }; - } - ) {}; - - phoenix_timex = phoenix_timex_0_0_3; - - phoenix_token_auth_0_4_0 = callPackage - ( - { - buildMix, - fetchHex, - timex_1_0_0_rc4, - secure_random_0_1_1, - postgrex_0_11_1, - poison_1_4_0, - phoenix_1_1_4, - mailgun_0_1_2, - joken_0_13_1, - ecto_2_0_0_beta_2, - cowboy_1_0_4, - comeonin_2_0_3 - }: - buildMix { - name = "phoenix_token_auth"; - version = "0.4.0"; - src = fetchHex { - pkg = "phoenix_token_auth"; - version = "0.4.0"; - sha256 = - "be1f3ed9d770b4d8650a30b6c091513d44e0c0331616366457713db77de2a620"; - }; - beamDeps = [ - timex_1_0_0_rc4 - secure_random_0_1_1 - postgrex_0_11_1 - poison_1_4_0 - phoenix_1_1_4 - mailgun_0_1_2 - joken_0_13_1 - ecto_2_0_0_beta_2 - cowboy_1_0_4 - comeonin_2_0_3 - ]; - - meta = { - longDescription = ''Solution for token auth in Phoenix apps. - Provides an api for registration, account - confirmation and logging in.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/manukall/phoenix_token_auth"; - }; - } - ) {}; - - phoenix_token_auth = phoenix_token_auth_0_4_0; - phoenix_webpack_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "phoenix_webpack"; version = "0.1.0"; src = fetchHex { @@ -35645,15 +20980,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "phone"; version = "0.0.1"; src = fetchHex { @@ -35669,15 +21004,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/fcevado/phone"; }; - } + } // packageOverrides) ) {}; phone = phone_0_0_1; phst_transform_0_9_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "phst_transform"; version = "0.9.0"; src = fetchHex { @@ -35693,114 +21028,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/philosophers-stone/transform"; }; - } + } // packageOverrides) ) {}; phst_transform = phst_transform_0_9_0; - picosat_0_1_0 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "picosat"; - version = "0.1.0"; - src = fetchHex { - pkg = "picosat"; - version = "0.1.0"; - sha256 = - "d9bfa31240906306a6dae6bdd6fb1cb452e9462a391efa63017b17b2877cab51"; - }; - compilePorts = true; - - meta = { - description = ''Erlang bindings for PicoSAT''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/tsloughter/picosat"; - }; - } - ) {}; - - picosat = picosat_0_1_0; - - pigeon_0_4_1 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "pigeon"; - version = "0.4.1"; - src = fetchHex { - pkg = "pigeon"; - version = "0.4.1"; - sha256 = - "f27413b863d470a8689e6378b9b36ee68f8bbcf8720f0b616756530f92bc23a0"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''HTTP2-compliant wrapper for sending iOS and - Android push notifications.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/codedge-llc/pigeon"; - }; - } - ) {}; - - pigeon = pigeon_0_4_1; - - pin_elixir_0_0_1 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpotion_2_2_2 }: - buildMix { - name = "pin_elixir"; - version = "0.0.1"; - src = fetchHex { - pkg = "pin_elixir"; - version = "0.0.1"; - sha256 = - "0140eecb7c714f9dadbcec26c45e2b2d770735029b7dcf98cdba9d793d80130a"; - }; - beamDeps = [ poison_1_5_2 httpotion_2_2_2 ]; - - meta = { - description = ''A library to wrap the Pin Payments API''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/mfeckie/pin_elixir"; - }; - } - ) {}; - - pin_elixir = pin_elixir_0_0_1; - - pinglix_1_1_1 = callPackage - ( - { buildMix, fetchHex, timex_0_19_5, poison_1_4_0, plug_1_1_3 }: - buildMix { - name = "pinglix"; - version = "1.1.1"; - src = fetchHex { - pkg = "pinglix"; - version = "1.1.1"; - sha256 = - "bff8166655cc143518c0089aca104755ab188816707fb73a5739dd094f45e895"; - }; - beamDeps = [ timex_0_19_5 poison_1_4_0 plug_1_1_3 ]; - - meta = { - longDescription = ''Plug compatible health check system in Elixir - based on - https://github.com/jbarnette/pinglish.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/pvdvreede/pinglix"; - }; - } - ) {}; - - pinglix = pinglix_1_1_1; - pinyin_0_1_4 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "pinyin"; version = "0.1.4"; src = fetchHex { @@ -35815,15 +21051,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/lidashuang/pinyin"; }; - } + } // packageOverrides) ) {}; pinyin = pinyin_0_1_4; pipe_0_0_2 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "pipe"; version = "0.0.2"; src = fetchHex { @@ -35839,15 +21075,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "pipe_here"; version = "1.0.0"; src = fetchHex { @@ -35863,15 +21099,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "pipe_while_ok"; version = "0.0.2"; src = fetchHex { @@ -35887,89 +21123,15 @@ let license = stdenv.lib.licenses.free; homepage = "https://github.com/pragdave/pipe_while_ok"; }; - } + } // packageOverrides) ) {}; pipe_while_ok = pipe_while_ok_0_0_2; - pipette_0_0_4 = callPackage - ( - { buildMix, fetchHex, mock_0_1_3 }: - buildMix { - name = "pipette"; - version = "0.0.4"; - src = fetchHex { - pkg = "pipette"; - version = "0.0.4"; - sha256 = - "8742ea9b115071c3aa7cec4ddacfa161ff63fd647e0491ac442cb118d7198e26"; - }; - beamDeps = [ mock_0_1_3 ]; - - meta = { - description = ''new_data = pipette(data, template)''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/liquidz/pipette"; - }; - } - ) {}; - - pipette = pipette_0_0_4; - - pixie_0_3_3 = callPackage - ( - { - buildMix, - fetchHex, - timex_0_19_5, - secure_random_0_2_0, - poolboy_1_5_1, - poison_1_5_2, - plug_1_0_3, - gproc_0_5_0, - exredis_0_2_3, - ex_minimatch_0_0_1, - ex_doc_0_11_4, - cowboy_1_0_4, - con_cache_0_9_0 - }: - buildMix { - name = "pixie"; - version = "0.3.3"; - src = fetchHex { - pkg = "pixie"; - version = "0.3.3"; - sha256 = - "b89f9b3db05b68ce79656a4b188bae1065e96b286b5422321c37fcd508350b32"; - }; - beamDeps = [ - timex_0_19_5 - secure_random_0_2_0 - poolboy_1_5_1 - poison_1_5_2 - plug_1_0_3 - gproc_0_5_0 - exredis_0_2_3 - ex_minimatch_0_0_1 - ex_doc_0_11_4 - cowboy_1_0_4 - con_cache_0_9_0 - ]; - - meta = { - description = ''Bayeux compatible server written in Elixir.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/messagerocket/pixie"; - }; - } - ) {}; - - pixie = pixie_0_3_3; - pkcs7_1_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "pkcs7"; version = "1.0.2"; src = fetchHex { @@ -35984,82 +21146,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/camshaft/pkcs7.erl"; }; - } + } // packageOverrides) ) {}; pkcs7 = pkcs7_1_0_2; - placid_0_1_3 = callPackage - ( - { - buildMix, - fetchHex, - xml_builder_0_0_8, - poison_1_2_1, - plug_0_9_0, - linguist_0_1_5, - http_router_0_0_8, - cowboy_1_0_4 - }: - buildMix { - name = "placid"; - version = "0.1.3"; - src = fetchHex { - pkg = "placid"; - version = "0.1.3"; - sha256 = - "78d30028ba9238c9b2cb7c5f91dc818aa3746c1c410a38fec9732de8a3c20146"; - }; - beamDeps = [ - xml_builder_0_0_8 - poison_1_2_1 - plug_0_9_0 - linguist_0_1_5 - http_router_0_0_8 - cowboy_1_0_4 - ]; - - meta = { - longDescription = ''A REST toolkit for building highly-scalable - and fault-tolerant HTTP APIs with Elixir ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/slogsdon/placid"; - }; - } - ) {}; - - placid = placid_0_1_3; - - plasm_0_1_0 = callPackage - ( - { buildMix, fetchHex, postgrex_0_11_1, ecto_2_0_0_beta_2 }: - buildMix { - name = "plasm"; - version = "0.1.0"; - src = fetchHex { - pkg = "plasm"; - version = "0.1.0"; - sha256 = - "0eb476cae0b02dedbbc558f59ca22f0791221129d15fba570c0a3b96401d6836"; - }; - beamDeps = [ postgrex_0_11_1 ecto_2_0_0_beta_2 ]; - - meta = { - longDescription = ''Plasm is a composable query library for Ecto - containing several common query transforms to - make working with Ecto easier.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/atomic-fads/plasm"; - }; - } - ) {}; - - plasm = plasm_0_1_0; - plist_0_0_4 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "plist"; version = "0.0.4"; src = fetchHex { @@ -36075,15 +21170,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/ciaran/plist"; }; - } + } // packageOverrides) ) {}; plist = plist_0_0_4; plug_0_11_3 = callPackage ( - { buildMix, fetchHex, cowboy_1_0_4 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, cowboy_1_0_4 }: + buildMix ({ name = "plug"; version = "0.11.3"; src = fetchHex { @@ -36100,13 +21195,13 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/elixir-lang/plug"; }; - } + } // packageOverrides) ) {}; plug_0_12_2 = callPackage ( - { buildMix, fetchHex, cowboy_1_0_4 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, cowboy_1_0_4 }: + buildMix ({ name = "plug"; version = "0.12.2"; src = fetchHex { @@ -36123,13 +21218,13 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/elixir-lang/plug"; }; - } + } // packageOverrides) ) {}; plug_0_13_1 = callPackage ( - { buildMix, fetchHex, cowboy_1_0_4 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, cowboy_1_0_4 }: + buildMix ({ name = "plug"; version = "0.13.1"; src = fetchHex { @@ -36146,13 +21241,13 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/elixir-lang/plug"; }; - } + } // packageOverrides) ) {}; plug_0_14_0 = callPackage ( - { buildMix, fetchHex, cowboy_1_0_4 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, cowboy_1_0_4 }: + buildMix ({ name = "plug"; version = "0.14.0"; src = fetchHex { @@ -36169,103 +21264,13 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/elixir-lang/plug"; }; - } - ) {}; - - plug_0_5_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "plug"; - version = "0.5.1"; - src = fetchHex { - pkg = "plug"; - version = "0.5.1"; - sha256 = - "95271e2372bf794e19ce50c097a439e1586a6b125f432ee21fbea96ab9832fc1"; - }; - - meta = { - description = ''A specification and conveniences for composable - modules between web applications''; - license = stdenv.lib.licenses.apsl20; - homepage = "https://github.com/elixir-lang/plug"; - }; - } - ) {}; - - plug_0_5_2 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "plug"; - version = "0.5.2"; - src = fetchHex { - pkg = "plug"; - version = "0.5.2"; - sha256 = - "d31cde7d9d3867a544e427a3431113f276fe9269cd00054440d38b56e61c53ea"; - }; - - meta = { - description = ''A specification and conveniences for composable - modules between web applications''; - license = stdenv.lib.licenses.apsl20; - homepage = "https://github.com/elixir-lang/plug"; - }; - } - ) {}; - - plug_0_5_3 = callPackage - ( - { buildMix, fetchHex, cowboy_1_0_4 }: - buildMix { - name = "plug"; - version = "0.5.3"; - src = fetchHex { - pkg = "plug"; - version = "0.5.3"; - sha256 = - "97457d419def5bf13b17fa953cf56b8ca9f2e3973174d6890cd54fe84110c955"; - }; - 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"; - }; - } - ) {}; - - plug_0_7_0 = callPackage - ( - { buildMix, fetchHex, cowboy_1_0_4 }: - buildMix { - name = "plug"; - version = "0.7.0"; - src = fetchHex { - pkg = "plug"; - version = "0.7.0"; - sha256 = - "c25ceaacbdd0085653d84f8187c179e523b2edd54d393673df2d761f85795867"; - }; - 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, fetchHex, cowboy_1_0_4 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, cowboy_1_0_4 }: + buildMix ({ name = "plug"; version = "0.8.4"; src = fetchHex { @@ -36282,13 +21287,13 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/elixir-lang/plug"; }; - } + } // packageOverrides) ) {}; plug_0_9_0 = callPackage ( - { buildMix, fetchHex, cowboy_1_0_4 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, cowboy_1_0_4 }: + buildMix ({ name = "plug"; version = "0.9.0"; src = fetchHex { @@ -36305,13 +21310,13 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/elixir-lang/plug"; }; - } + } // packageOverrides) ) {}; plug_1_0_3 = callPackage ( - { buildMix, fetchHex, cowboy_1_0_4 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, cowboy_1_0_4 }: + buildMix ({ name = "plug"; version = "1.0.3"; src = fetchHex { @@ -36328,13 +21333,13 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/elixir-lang/plug"; }; - } + } // packageOverrides) ) {}; plug_1_1_3 = callPackage ( - { buildMix, fetchHex, cowboy_1_0_4 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, cowboy_1_0_4 }: + buildMix ({ name = "plug"; version = "1.1.3"; src = fetchHex { @@ -36351,39 +21356,15 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/elixir-lang/plug"; }; - } + } // packageOverrides) ) {}; plug = plug_1_1_3; - plug_abort_2_1_1 = callPackage - ( - { buildMix, fetchHex, plug_0_5_3, cowboy_1_0_4, poison_1_0_3 }: - buildMix { - name = "plug_abort"; - version = "2.1.1"; - src = fetchHex { - pkg = "plug_abort"; - version = "2.1.1"; - sha256 = - "8da98a882ea79e08443e7d26c94ee2b572560efca3f0a5922c69e508ac02d883"; - }; - beamDeps = [ plug_0_5_3 cowboy_1_0_4 poison_1_0_3 ]; - - meta = { - description = ''Easily abort the processing of a plug stack ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/onkel-dirtus/plug_abort"; - }; - } - ) {}; - - plug_abort = plug_abort_2_1_1; - plug_accept_language_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "plug_accept_language"; version = "0.1.0"; src = fetchHex { @@ -36398,46 +21379,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/camshaft/plug_accept_language"; }; - } + } // packageOverrides) ) {}; plug_accept_language = plug_accept_language_0_1_0; - plug_accesslog_0_11_0 = callPackage - ( - { - buildMix, - fetchHex, - tzdata_0_5_7, - timex_2_1_3, - plug_1_1_3, - cowboy_1_0_4 - }: - buildMix { - name = "plug_accesslog"; - version = "0.11.0"; - src = fetchHex { - pkg = "plug_accesslog"; - version = "0.11.0"; - sha256 = - "86ee180fd234a3c6d413153764f2a9e2d57171d3e89df2643a276b8760bcc867"; - }; - beamDeps = [ tzdata_0_5_7 timex_2_1_3 plug_1_1_3 cowboy_1_0_4 ]; - - meta = { - description = ''Plug for writing access logs''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/mneudert/plug_accesslog"; - }; - } - ) {}; - - plug_accesslog = plug_accesslog_0_11_0; - plug_assign_1_0_0 = callPackage ( - { buildMix, fetchHex, plug_1_0_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, plug_1_0_3 }: + buildMix ({ name = "plug_assign"; version = "1.0.0"; src = fetchHex { @@ -36454,89 +21404,17 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/nshafer/plug_assign"; }; - } + } // packageOverrides) ) {}; plug_assign = plug_assign_1_0_0; - plug_auth_0_3_0 = callPackage - ( - { buildMix, fetchHex, plug_0_5_2, cowboy_1_0_4 }: - buildMix { - name = "plug_auth"; - version = "0.3.0"; - src = fetchHex { - pkg = "plug_auth"; - version = "0.3.0"; - sha256 = - "e9935f31526baff0262ef17055f853f0045172adf7b39fd9b1c54c6347477a71"; - }; - beamDeps = [ plug_0_5_2 cowboy_1_0_4 ]; - - meta = { - description = ''A collection of authentication-related plugs''; - license = stdenv.lib.licenses.isc; - homepage = "https://github.com/bitgamma/plug_auth"; - }; - } - ) {}; - - plug_auth = plug_auth_0_3_0; - - plug_basic_auth_1_1_0 = callPackage - ( - { buildMix, fetchHex, plug_0_5_2, cowboy_1_0_4 }: - buildMix { - name = "plug_basic_auth"; - version = "1.1.0"; - src = fetchHex { - pkg = "plug_basic_auth"; - version = "1.1.0"; - sha256 = - "6763e5ad0f17d6693e296cc3a69c1db627f9b66bda2bcded4ddfcc84a42f0c03"; - }; - beamDeps = [ plug_0_5_2 cowboy_1_0_4 ]; - - meta = { - description = ''A Plug for using HTTP Basic Authentication in - Plug applications''; - license = stdenv.lib.licenses.apsl20; - homepage = "https://github.com/rbishop/plug_basic_auth"; - }; - } - ) {}; - - plug_basic_auth = plug_basic_auth_1_1_0; - - plug_byte_serve_0_3_2 = callPackage - ( - { buildMix, fetchHex, plug_0_11_3 }: - buildMix { - name = "plug_byte_serve"; - version = "0.3.2"; - src = fetchHex { - pkg = "plug_byte_serve"; - version = "0.3.2"; - sha256 = - "f6e4873373b3efd207877ca5f797f4ea539cf2a885aae895c6c3df73ce9b75ac"; - }; - beamDeps = [ plug_0_11_3 ]; - - meta = { - description = ''A Plug for using HTTP Byte Serving in Plug - applications.''; - license = stdenv.lib.licenses.apsl20; - homepage = "https://github.com/masteinhauser/plug_byte_serve"; - }; - } - ) {}; - - plug_byte_serve = plug_byte_serve_0_3_2; - plug_cloudflare_1_3_0 = callPackage ( - { buildMix, fetchHex, plug_1_1_3, cidr_1_0_0 }: - buildMix { + { + buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3, cidr_1_0_0 + }: + buildMix ({ name = "plug_cloudflare"; version = "1.3.0"; src = fetchHex { @@ -36553,65 +21431,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/c-rack/plug_cloudflare"; }; - } + } // packageOverrides) ) {}; plug_cloudflare = plug_cloudflare_1_3_0; - plug_cors_0_8_2 = callPackage - ( - { buildMix, fetchHex, plug_1_1_3, cowboy_1_0_4 }: - buildMix { - name = "plug_cors"; - version = "0.8.2"; - src = fetchHex { - pkg = "plug_cors"; - version = "0.8.2"; - sha256 = - "286a36b000989538c168d115f6a017aaa15a4031e4f867d300878d81c3b8c6aa"; - }; - beamDeps = [ plug_1_1_3 cowboy_1_0_4 ]; - - meta = { - description = ''Deprecated: CORS Plug Middleware. Please use - corsica instead''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/bryanjos/plug_cors"; - }; - } - ) {}; - - plug_cors = plug_cors_0_8_2; - - plug_exception_handler_0_0_4 = callPackage - ( - { buildMix, fetchHex, plug_0_5_3, cowboy_1_0_4 }: - buildMix { - name = "plug_exception_handler"; - version = "0.0.4"; - src = fetchHex { - pkg = "plug_exception_handler"; - version = "0.0.4"; - sha256 = - "477ea599e516bcf8efb399ca43ca3d9cecd50982222b1f5f259092d4c99fca28"; - }; - beamDeps = [ plug_0_5_3 cowboy_1_0_4 ]; - - meta = { - description = ''Rescue exceptions from your plug stack''; - license = stdenv.lib.licenses.mit; - homepage = - "https://github.com/onkel-dirtus/plug_exception_handler"; - }; - } - ) {}; - - plug_exception_handler = plug_exception_handler_0_0_4; - plug_forwarded_peer_0_0_2 = callPackage ( - { buildMix, fetchHex, plug_1_1_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ name = "plug_forwarded_peer"; version = "0.0.2"; src = fetchHex { @@ -36630,15 +21458,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "plug_fprof"; version = "0.0.1"; src = fetchHex { @@ -36654,15 +21482,21 @@ let 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, fetchHex, plug_1_1_3, geolix_0_9_0 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + geolix_0_9_0 + }: + buildMix ({ name = "plug_geoip2"; version = "0.4.2"; src = fetchHex { @@ -36679,47 +21513,21 @@ let GeoIP2 database.''; license = stdenv.lib.licenses.mit; }; - } + } // packageOverrides) ) {}; plug_geoip2 = plug_geoip2_0_4_2; - plug_graphql_0_2_0 = callPackage + plug_heartbeat_0_2_0 = callPackage ( { buildMix, + packageOverrides ? {}, fetchHex, - poison_1_0_3, - plug_0_5_2, - graphql_0_2_0, + plug_1_1_3, cowboy_1_0_4 }: - buildMix { - name = "plug_graphql"; - version = "0.2.0"; - src = fetchHex { - pkg = "plug_graphql"; - version = "0.2.0"; - sha256 = - "d633309e386fb4feafcadaa390fb1ae2cf26416823b1c1484ed4d018e13c769a"; - }; - beamDeps = [ poison_1_0_3 plug_0_5_2 graphql_0_2_0 cowboy_1_0_4 - ]; - - meta = { - description = ''A Plug integration for GraphQL Elixir''; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/graphql-elixir/plug_graphql"; - }; - } - ) {}; - - plug_graphql = plug_graphql_0_2_0; - - plug_heartbeat_0_2_0 = callPackage - ( - { buildMix, fetchHex, plug_1_1_3, cowboy_1_0_4 }: - buildMix { + buildMix ({ name = "plug_heartbeat"; version = "0.2.0"; src = fetchHex { @@ -36736,63 +21544,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/whatyouhide/plug_heartbeat"; }; - } + } // packageOverrides) ) {}; plug_heartbeat = plug_heartbeat_0_2_0; - plug_json_parser_0_0_6 = callPackage - ( - { buildMix, fetchHex, plug_0_7_0, cowboy_1_0_4, poison_1_1_1 }: - buildMix { - name = "plug_json_parser"; - version = "0.0.6"; - src = fetchHex { - pkg = "plug_json_parser"; - version = "0.0.6"; - sha256 = - "4c07f3adade5ad8730b6ec5d33d50b5dbe1a960e2be29a764b415c5234c79204"; - }; - beamDeps = [ plug_0_7_0 cowboy_1_0_4 poison_1_1_1 ]; - - meta = { - description = ''JSON parse for Plug.Parsers ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/onkel-dirtus/plug_json_parser"; - }; - } - ) {}; - - plug_json_parser = plug_json_parser_0_0_6; - - plug_jwt_0_7_1 = callPackage - ( - { buildMix, fetchHex, plug_1_1_3, joken_0_16_1, cowboy_1_0_4 }: - buildMix { - name = "plug_jwt"; - version = "0.7.1"; - src = fetchHex { - pkg = "plug_jwt"; - version = "0.7.1"; - sha256 = - "a87cd8815454093c3300bdae4f2af7ec8c671fd22ce55f598309b5bed4ac3a2a"; - }; - beamDeps = [ plug_1_1_3 joken_0_16_1 cowboy_1_0_4 ]; - - meta = { - description = ''JWT Plug Middleware''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/bryanjos/plug_jwt.git"; - }; - } - ) {}; - - plug_jwt = plug_jwt_0_7_1; - plug_media_type_router_0_0_2 = callPackage ( - { buildMix, fetchHex, plug_1_1_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ name = "plug_media_type_router"; version = "0.0.2"; src = fetchHex { @@ -36809,15 +21569,21 @@ let 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, fetchHex, plug_1_1_3, cowboy_1_0_4 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ name = "plug_pagecache"; version = "0.2.0"; src = fetchHex { @@ -36833,15 +21599,21 @@ let 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, fetchHex, plug_1_1_3, cowboy_1_0_4 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ name = "plug_rails_cookie_session_store"; version = "0.1.0"; src = fetchHex { @@ -36858,7 +21630,7 @@ let homepage = "https://github.com/cconstantin/plug_rails_cookie_session_store"; }; - } + } // packageOverrides) ) {}; plug_rails_cookie_session_store = @@ -36866,8 +21638,8 @@ let plug_redirect_0_1_2 = callPackage ( - { buildMix, fetchHex, plug_1_1_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ name = "plug_redirect"; version = "0.1.2"; src = fetchHex { @@ -36883,15 +21655,15 @@ let 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, fetchHex, plug_1_1_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ name = "plug_redirect_https"; version = "0.0.6"; src = fetchHex { @@ -36908,15 +21680,21 @@ let 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, fetchHex, poison_1_5_2, plug_1_1_3 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_5_2, + plug_1_1_3 + }: + buildMix ({ name = "plug_require_header"; version = "0.8.0"; src = fetchHex { @@ -36933,15 +21711,15 @@ let 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, fetchHex, plug_1_1_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ name = "plug_response_header"; version = "0.2.1"; src = fetchHex { @@ -36958,15 +21736,15 @@ let 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, fetchHex, plug_1_1_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ name = "plug_ribbon"; version = "0.2.1"; src = fetchHex { @@ -36983,15 +21761,15 @@ let 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, fetchHex, plug_1_1_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ name = "plug_runtime"; version = "1.0.0"; src = fetchHex { @@ -37009,47 +21787,23 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/mje113/plug_runtime"; }; - } + } // packageOverrides) ) {}; plug_runtime = plug_runtime_1_0_0; - plug_secure_headers_0_0_1 = callPackage - ( - { buildMix, fetchHex, plug_1_1_3 }: - buildMix { - name = "plug_secure_headers"; - version = "0.0.1"; - src = fetchHex { - pkg = "plug_secure_headers"; - version = "0.0.1"; - sha256 = - "727c5b7216aaa4bec2e0f88ed72199082820341602fad49cfc4c74477f55a905"; - }; - beamDeps = [ plug_1_1_3 ]; - - meta = { - description = ''HTTP security headers with validatation for - Phoenix/Plug''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/anotherhale/plug_secure_headers"; - }; - } - ) {}; - - plug_secure_headers = plug_secure_headers_0_0_1; - 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 { + buildMix ({ name = "plug_session_memcached"; version = "0.3.3"; src = fetchHex { @@ -37068,15 +21822,21 @@ let 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, fetchHex, redo_2_0_1, poolboy_1_5_1 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + redo_2_0_1, + poolboy_1_5_1 + }: + buildMix ({ name = "plug_session_redis"; version = "0.1.0"; src = fetchHex { @@ -37093,15 +21853,21 @@ let 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, fetchHex, plug_1_1_3, ex_statsd_0_5_3 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + ex_statsd_0_5_3 + }: + buildMix ({ name = "plug_statsd"; version = "0.4.0"; src = fetchHex { @@ -37118,15 +21884,21 @@ let 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, fetchHex, plug_0_8_4, cowboy_1_0_4 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_0_8_4, + cowboy_1_0_4 + }: + buildMix ({ name = "plug_test_helpers"; version = "0.1.0"; src = fetchHex { @@ -37142,15 +21914,21 @@ let 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, fetchHex, plug_1_1_3, cowboy_1_0_4 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ name = "plug_utm"; version = "0.0.2"; src = fetchHex { @@ -37166,15 +21944,22 @@ let 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, fetchHex, poison_1_3_1, plug_0_13_1, cowboy_1_0_4 }: - buildMix { + { + 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 { @@ -37190,15 +21975,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "plug_x_forwarded_for"; version = "0.1.0"; src = fetchHex { @@ -37213,15 +21998,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "plugin"; version = "0.1.0"; src = fetchHex { @@ -37237,15 +22022,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/ruby2elixir/plugin"; }; - } + } // packageOverrides) ) {}; plugin = plugin_0_1_0; plugs_0_1_0 = callPackage ( - { buildMix, fetchHex, plug_1_1_3, cowboy_1_0_4 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ name = "plugs"; version = "0.1.0"; src = fetchHex { @@ -37262,39 +22053,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/sugar-framework/plugs"; }; - } + } // packageOverrides) ) {}; plugs = plugs_0_1_0; - plugsnag_1_1_0 = callPackage - ( - { buildMix, fetchHex, bugsnag_1_2_0 }: - buildMix { - name = "plugsnag"; - version = "1.1.0"; - src = fetchHex { - pkg = "plugsnag"; - version = "1.1.0"; - sha256 = - "aa3a9e587042f5519d8309fc4cf764a0262eda0da752ddf87c5fcfea176208ad"; - }; - beamDeps = [ bugsnag_1_2_0 ]; - - meta = { - description = ''Bugsnag reporter for Elixir`s Plug''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/jarednorman/plugsnag"; - }; - } - ) {}; - - plugsnag = plugsnag_1_1_0; - plumber_girl_0_9_6 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "plumber_girl"; version = "0.9.6"; src = fetchHex { @@ -37310,15 +22077,15 @@ let 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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "png"; version = "0.1.1"; src = fetchHex { @@ -37328,6 +22095,9 @@ let "f8d4a17c118dcc16bb18d0fda6e26947001f9312bc6c061d2236b424fc3dd9ea"; }; + buildPlugins = [ rebar3_hex ]; + + meta = { longDescription = ''A pure Erlang library for creating PNG images. It can currently create 8 and 16 bit @@ -37336,103 +22106,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/yuce/png"; }; - } + } // packageOverrides) ) {}; png = png_0_1_1; - pocketex_0_1_0 = callPackage - ( - { buildMix, fetchHex, poison_1_3_1, httpoison_0_8_2 }: - buildMix { - name = "pocketex"; - version = "0.1.0"; - src = fetchHex { - pkg = "pocketex"; - version = "0.1.0"; - sha256 = - "b832df8e3f3102b69892cc5cfab4418de876a6ecc5780805458b9946aa407cbf"; - }; - beamDeps = [ poison_1_3_1 httpoison_0_8_2 ]; - - meta = { - description = ''Pocketex is an Elixir client for the Pocket read - later service (getpocket.com) ''; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/essenciary/pocketex"; - }; - } - ) {}; - - pocketex = pocketex_0_1_0; - - poison_1_0_3 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "poison"; - version = "1.0.3"; - src = fetchHex { - pkg = "poison"; - version = "1.0.3"; - sha256 = - "632b9f5c4c2e56987f123b9f35e52b356c2de28ce7692d66becf12df10cc1012"; - }; - - meta = { - description = ''An incredibly fast, pure Elixir JSON library''; - license = stdenv.lib.licenses.unlicense; - homepage = "https://github.com/devinus/poison"; - }; - } - ) {}; - - poison_1_1_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "poison"; - version = "1.1.1"; - src = fetchHex { - pkg = "poison"; - version = "1.1.1"; - sha256 = - "57e77cdafe34769dcc114c6c249847b66304e5489891306b9762e3211520d767"; - }; - - meta = { - description = ''An incredibly fast, pure Elixir JSON library''; - license = stdenv.lib.licenses.unlicense; - homepage = "https://github.com/devinus/poison"; - }; - } - ) {}; - - poison_1_2_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "poison"; - version = "1.2.1"; - src = fetchHex { - pkg = "poison"; - version = "1.2.1"; - sha256 = - "7be9f3b2688efdcc689062ccd21e340ee5fd3ef9dcd142136034beb5ed1c2e23"; - }; - - meta = { - description = ''An incredibly fast, pure Elixir JSON library''; - license = stdenv.lib.licenses.unlicense; - homepage = "https://github.com/devinus/poison"; - }; - } - ) {}; - poison_1_3_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "poison"; version = "1.3.1"; src = fetchHex { @@ -37447,13 +22129,13 @@ let license = stdenv.lib.licenses.unlicense; homepage = "https://github.com/devinus/poison"; }; - } + } // packageOverrides) ) {}; poison_1_4_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "poison"; version = "1.4.0"; src = fetchHex { @@ -37468,13 +22150,13 @@ let license = stdenv.lib.licenses.unlicense; homepage = "https://github.com/devinus/poison"; }; - } + } // packageOverrides) ) {}; poison_1_5_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "poison"; version = "1.5.0"; src = fetchHex { @@ -37489,13 +22171,13 @@ let license = stdenv.lib.licenses.unlicense; homepage = "https://github.com/devinus/poison"; }; - } + } // packageOverrides) ) {}; poison_1_5_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "poison"; version = "1.5.2"; src = fetchHex { @@ -37510,13 +22192,13 @@ let license = stdenv.lib.licenses.unlicense; homepage = "https://github.com/devinus/poison"; }; - } + } // packageOverrides) ) {}; poison_2_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "poison"; version = "2.0.1"; src = fetchHex { @@ -37531,13 +22213,13 @@ let license = stdenv.lib.licenses.unlicense; homepage = "https://github.com/devinus/poison"; }; - } + } // packageOverrides) ) {}; poison_2_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "poison"; version = "2.1.0"; src = fetchHex { @@ -37552,15 +22234,15 @@ let license = stdenv.lib.licenses.unlicense; homepage = "https://github.com/devinus/poison"; }; - } + } // packageOverrides) ) {}; poison = poison_2_1_0; poker_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "poker"; version = "0.0.2"; src = fetchHex { @@ -37575,41 +22257,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/wojtekmach/poker_elixir"; }; - } + } // packageOverrides) ) {}; poker = poker_0_0_2; - poloniex_0_0_3 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "poloniex"; - version = "0.0.3"; - src = fetchHex { - pkg = "poloniex"; - version = "0.0.3"; - sha256 = - "976011016844c86ddded4310962194dfbbd296f5c7b9af469ea13131987d403b"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - longDescription = ''WIP Poloniex API wrapper for Elixir. Provides - access to market data including trading pairs - between ETH, BTC, DOGE, LTC and others.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/cyberpunk-ventures/poloniex_ex"; - }; - } - ) {}; - - poloniex = poloniex_0_0_3; - poly1305_0_4_0 = callPackage ( - { buildMix, fetchHex, chacha20_0_3_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, chacha20_0_3_2 }: + buildMix ({ name = "poly1305"; version = "0.4.0"; src = fetchHex { @@ -37625,15 +22281,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/mwmiller/poly1305_ex"; }; - } + } // packageOverrides) ) {}; poly1305 = poly1305_0_4_0; polyglot_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "polyglot"; version = "0.0.1"; src = fetchHex { @@ -37650,15 +22306,15 @@ let 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, fetchHex, vector_0_1_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, vector_0_1_0 }: + buildMix ({ name = "polyline"; version = "0.1.0"; src = fetchHex { @@ -37674,15 +22330,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "polyvox_id3"; version = "0.2.1"; src = fetchHex { @@ -37698,39 +22354,15 @@ let license = stdenv.lib.licenses.gpl3; homepage = "https://github.com/polyvox/polyvox_id3"; }; - } + } // packageOverrides) ) {}; polyvox_id3 = polyvox_id3_0_2_1; - pool_0_0_2 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "pool"; - version = "0.0.2"; - src = fetchHex { - pkg = "pool"; - version = "0.0.2"; - sha256 = - "7be2ade7f9c000393d474dd96751680d5cb567cd68d3ee02c4c8e465d3a4395a"; - }; - - meta = { - description = ''Socket acceptor pool Not ready for use at this - time. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/slogsdon/pool"; - }; - } - ) {}; - - pool = pool_0_0_2; - pool_ring_0_1_5 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "pool_ring"; version = "0.1.5"; src = fetchHex { @@ -37745,36 +22377,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/camshaft/pool_ring"; }; - } + } // packageOverrides) ) {}; pool_ring = pool_ring_0_1_5; - poolboy_1_2_1 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "poolboy"; - version = "1.2.1"; - src = fetchHex { - pkg = "poolboy"; - version = "1.2.1"; - sha256 = - "5e134d817f04e00b17187c50e7a38362812b7053591479a62f0025c45d622369"; - }; - - meta = { - description = ''A hunky Erlang worker pool factory''; - license = with stdenv.lib.licenses; [ unlicense asl20 ]; - homepage = "https://github.com/devinus/poolboy"; - }; - } - ) {}; - poolboy_1_4_2 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "poolboy"; version = "1.4.2"; src = fetchHex { @@ -37789,13 +22400,13 @@ let license = with stdenv.lib.licenses; [ unlicense asl20 ]; homepage = "https://github.com/devinus/poolboy"; }; - } + } // packageOverrides) ) {}; poolboy_1_5_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "poolboy"; version = "1.5.1"; src = fetchHex { @@ -37810,59 +22421,15 @@ let license = with stdenv.lib.licenses; [ unlicense asl20 ]; homepage = "https://github.com/devinus/poolboy"; }; - } + } // packageOverrides) ) {}; poolboy = poolboy_1_5_1; - pooler_1_4_0 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "pooler"; - version = "1.4.0"; - src = fetchHex { - pkg = "pooler"; - version = "1.4.0"; - sha256 = - "08ca384be64045b257a22a3569571c9ef33dafdac44212c7f0596f255e5a0d5c"; - }; - - meta = { - description = ''An OTP Process Pool Application''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/seth/pooler"; - }; - } - ) {}; - - pooler_1_5_0 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "pooler"; - version = "1.5.0"; - src = fetchHex { - pkg = "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; - populator_0_4_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "populator"; version = "0.4.0"; src = fetchHex { @@ -37877,15 +22444,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/rubencaro/populator"; }; - } + } // packageOverrides) ) {}; populator = populator_0_4_0; porcelain_2_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "porcelain"; version = "2.0.1"; src = fetchHex { @@ -37904,40 +22471,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/alco/porcelain"; }; - } + } // packageOverrides) ) {}; porcelain = porcelain_2_0_1; - portal_0_0_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "portal"; - version = "0.0.1"; - src = fetchHex { - pkg = "portal"; - version = "0.0.1"; - sha256 = - "975d2aa4b4e155092214bee9ecc547d4c6603001c78eb824669823e1e116c84c"; - }; - - meta = { - longDescription = ''A shooting fault-tolerant doors for - distributed portal data-transfer application in - Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/josevalim/portal"; - }; - } - ) {}; - - portal = portal_0_0_1; - porter_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "porter"; version = "0.0.1"; src = fetchHex { @@ -37954,63 +22496,15 @@ let to you.''; }; - } + } // packageOverrides) ) {}; porter = porter_0_0_1; - porterstemmer_0_0_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "porterstemmer"; - version = "0.0.1"; - src = fetchHex { - pkg = "porterstemmer"; - version = "0.0.1"; - sha256 = - "8b3987cce8602d6ad16829fd4fefc848f01efcdc46d9e806059eec6a1b9d7cc8"; - }; - - meta = { - longDescription = '' Porter stemmer in Elixir. It does not stem - words beginning with an uppercase letter. This - is to prevent stemming of acronyms or names. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/frpaulas/porterstemmer.git"; - }; - } - ) {}; - - porterstemmer = porterstemmer_0_0_1; - - portmidi_3_2_0 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "portmidi"; - version = "3.2.0"; - src = fetchHex { - pkg = "portmidi"; - version = "3.2.0"; - sha256 = - "93344ce66905d0c841d1e387eb24572bb2d2214668b45bf926d0363e9c064641"; - }; - - meta = { - description = ''Elixir bindings to the portmidi C library''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/lucidstack/ex-portmidi"; - }; - } - ) {}; - - portmidi = portmidi_3_2_0; - positive_13_3_7 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "positive"; version = "13.3.7"; src = fetchHex { @@ -38025,15 +22519,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/jlouis/positive"; }; - } + } // packageOverrides) ) {}; positive = positive_13_3_7; posterize_0_10_0 = callPackage ( - { buildMix, fetchHex, postgrex_0_11_1, jsx_2_8_0 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + postgrex_0_11_1, + jsx_2_8_0 + }: + buildMix ({ name = "posterize"; version = "0.10.0"; src = fetchHex { @@ -38049,7 +22549,7 @@ let license = with stdenv.lib.licenses; [ asl20 mit ]; homepage = "https://github.com/talentdeficit/posterize"; }; - } + } // packageOverrides) ) {}; posterize = posterize_0_10_0; @@ -38058,12 +22558,13 @@ let ( { buildMix, + packageOverrides ? {}, fetchHex, decimal_1_1_1, db_connection_0_2_4, connection_1_0_2 }: - buildMix { + buildMix ({ name = "postgrex"; version = "0.11.1"; src = fetchHex { @@ -38080,37 +22581,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/ericmj/postgrex"; }; - } + } // packageOverrides) ) {}; postgrex = postgrex_0_11_1; - postgrex_0_6_0 = callPackage - ( - { buildMix, fetchHex, decimal_0_2_5 }: - buildMix { - name = "postgrex"; - version = "0.6.0"; - src = fetchHex { - pkg = "postgrex"; - version = "0.6.0"; - sha256 = - "aa2aede73938a952ffbbe2b1173ac52c377a2055fd3e44ac1843bef782f5f8d4"; - }; - beamDeps = [ decimal_0_2_5 ]; - - meta = { - description = ''PostgreSQL driver for Elixir.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/ericmj/postgrex"; - }; - } - ) {}; - postgrex_0_8_4 = callPackage ( - { buildMix, fetchHex, decimal_1_1_1 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, decimal_1_1_1 }: + buildMix ({ name = "postgrex"; version = "0.8.4"; src = fetchHex { @@ -38126,13 +22605,13 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/ericmj/postgrex"; }; - } + } // packageOverrides) ) {}; postgrex_0_9_1 = callPackage ( - { buildMix, fetchHex, decimal_1_1_1 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, decimal_1_1_1 }: + buildMix ({ name = "postgrex"; version = "0.9.1"; src = fetchHex { @@ -38148,13 +22627,13 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/ericmj/postgrex"; }; - } + } // packageOverrides) ) {}; pot_0_9_4 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "pot"; version = "0.9.4"; src = fetchHex { @@ -38171,15 +22650,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/yuce/pot"; }; - } + } // packageOverrides) ) {}; pot = pot_0_9_4; power_assert_0_0_8 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "power_assert"; version = "0.0.8"; src = fetchHex { @@ -38195,15 +22674,15 @@ let 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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "pqueue"; version = "1.5.1"; src = fetchHex { @@ -38218,15 +22697,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/okeuday/pqueue"; }; - } + } // packageOverrides) ) {}; pqueue = pqueue_1_5_1; pragmatic_0_1_6 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "pragmatic"; version = "0.1.6"; src = fetchHex { @@ -38243,15 +22722,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/OnorioCatenacci/pragmatic"; }; - } + } // packageOverrides) ) {}; pragmatic = pragmatic_0_1_6; prefecture_jp_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "prefecture_jp"; version = "0.0.2"; src = fetchHex { @@ -38267,15 +22746,17 @@ let 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, fetchHex, etude_1_0_0_beta_0 }: - buildMix { + { + buildMix, packageOverrides ? {}, fetchHex, etude_1_0_0_beta_0 + }: + buildMix ({ name = "prelude"; version = "0.0.1"; src = fetchHex { @@ -38292,15 +22773,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/camshaft/prelude"; }; - } + } // packageOverrides) ) {}; prelude = prelude_0_0_1; presentex_0_0_10 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "presentex"; version = "0.0.10"; src = fetchHex { @@ -38316,15 +22797,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/Cobenian/Presentex"; }; - } + } // packageOverrides) ) {}; presentex = presentex_0_0_10; pretty_hex_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "pretty_hex"; version = "0.0.1"; src = fetchHex { @@ -38339,15 +22820,21 @@ let 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, fetchHex, timex_1_0_2, porcelain_2_0_1 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + timex_1_0_2, + porcelain_2_0_1 + }: + buildMix ({ name = "pricing"; version = "0.0.1"; src = fetchHex { @@ -38363,15 +22850,15 @@ let license = stdenv.lib.licenses.free; homepage = "https://github.com/arthurcolle/pricing"; }; - } + } // packageOverrides) ) {}; pricing = pricing_0_0_1; progress_bar_1_4_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "progress_bar"; version = "1.4.0"; src = fetchHex { @@ -38386,39 +22873,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/henrik/progress_bar"; }; - } + } // packageOverrides) ) {}; progress_bar = progress_bar_1_4_0; - proper_1_1_1_beta = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "proper"; - version = "1.1.1-beta"; - src = fetchHex { - pkg = "proper"; - version = "1.1.1-beta"; - sha256 = - "bde5c0fef0f8d804a7c06aab4f293d19f42149e5880b3412b75efa608e86d342"; - }; - - meta = { - description = ''QuickCheck-inspired property-based testing tool - for Erlang.''; - license = stdenv.lib.licenses.gpl3; - homepage = "https://github.com/manopapad/proper"; - }; - } - ) {}; - - proper = proper_1_1_1_beta; - proper_case_0_1_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "proper_case"; version = "0.1.1"; src = fetchHex { @@ -38437,15 +22900,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "proplist"; version = "1.1.0"; src = fetchHex { @@ -38461,15 +22924,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/knrz/proplist"; }; - } + } // packageOverrides) ) {}; proplist = proplist_1_1_0; proto_def_0_0_1 = callPackage ( - { buildMix, fetchHex, poison_2_1_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }: + buildMix ({ name = "proto_def"; version = "0.0.1"; src = fetchHex { @@ -38487,41 +22950,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/ProtoDef-io/elixir-protodef"; }; - } + } // packageOverrides) ) {}; proto_def = proto_def_0_0_1; - protobuffs_0_8_2 = callPackage - ( - { buildErlangMk, fetchHex, meck_0_8_4 }: - buildErlangMk { - name = "protobuffs"; - version = "0.8.2"; - src = fetchHex { - pkg = "protobuffs"; - version = "0.8.2"; - sha256 = - "b77e9d03518927b290cc5bb5cc9622a177e70289100fea9ccb57873573e54553"; - }; - beamDeps = [ meck_0_8_4 ]; - - meta = { - longDescription = ''An implementation of Google`s Protocol - Buffers for Erlang, based on - ngerakines/erlang_protobuffs.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/basho/erlang_protobuffs"; - }; - } - ) {}; - - protobuffs = protobuffs_0_8_2; - provider_asn1_0_2_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "provider_asn1"; version = "0.2.1"; src = fetchHex { @@ -38531,20 +22968,23 @@ let "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, fetchHex, getopt_0_8_2 }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex, getopt_0_8_2 }: + buildRebar3 ({ name = "providers"; version = "1.4.1"; src = fetchHex { @@ -38561,13 +23001,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/tsloughter/providers"; }; - } + } // packageOverrides) ) {}; providers_1_6_0 = callPackage ( - { buildRebar3, fetchHex, getopt_0_8_2 }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex, getopt_0_8_2 }: + buildRebar3 ({ name = "providers"; version = "1.6.0"; src = fetchHex { @@ -38584,65 +23024,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/tsloughter/providers"; }; - } + } // packageOverrides) ) {}; providers = providers_1_6_0; - proxy_0_0_1 = callPackage - ( - { - buildMix, fetchHex, plug_1_1_3, httpoison_0_8_2, cowboy_1_0_4 - }: - buildMix { - name = "proxy"; - version = "0.0.1"; - src = fetchHex { - pkg = "proxy"; - version = "0.0.1"; - sha256 = - "74691b18a0918d6e14df1f254ee9f342a547bc280151a4d88a540839ae75bbae"; - }; - beamDeps = [ plug_1_1_3 httpoison_0_8_2 cowboy_1_0_4 ]; - - meta = { - description = ''Proxy plug for upstream servers''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/chadwpry/elixir-proxy"; - }; - } - ) {}; - - proxy = proxy_0_0_1; - - pubnub_ex_0_0_2 = callPackage - ( - { buildMix, fetchHex, httpoison_0_8_2, exjsx_3_2_0 }: - buildMix { - name = "pubnub_ex"; - version = "0.0.2"; - src = fetchHex { - pkg = "pubnub_ex"; - version = "0.0.2"; - sha256 = - "83d270cfe2be6728fb96d9145371a87ddc876a97f91cdca2584cc82c2a0b91cb"; - }; - beamDeps = [ httpoison_0_8_2 exjsx_3_2_0 ]; - - meta = { - description = ''A pubsub tool for pubnub.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/ryuone/pubnub_ex"; - }; - } - ) {}; - - pubnub_ex = pubnub_ex_0_0_2; - pubsub_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "pubsub"; version = "0.0.2"; src = fetchHex { @@ -38657,123 +23047,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/simonewebdesign/elixir_pubsub"; }; - } + } // packageOverrides) ) {}; pubsub = pubsub_0_0_2; - pulse_0_1_3 = callPackage - ( - { buildMix, fetchHex, sonic_0_1_3 }: - buildMix { - name = "pulse"; - version = "0.1.3"; - src = fetchHex { - pkg = "pulse"; - version = "0.1.3"; - sha256 = - "8d9ab6b8f5b3e8da2feedb32062b97243bfc8c250ad5bab09fd61944e51e6aa0"; - }; - beamDeps = [ sonic_0_1_3 ]; - - meta = { - longDescription = ''Service registration and discovery library - for Elixir. Relies on etcd as an external - service registry.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/heroiclabs/pulse"; - }; - } - ) {}; - - pulse = pulse_0_1_3; - - pulse_libs_1_0_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "pulse_libs"; - version = "1.0.0"; - src = fetchHex { - pkg = "pulse_libs"; - version = "1.0.0"; - sha256 = - "fda2aee58af502bb58752f6a6fcc3f97b2d6eed1a63d39ab91937e5811dbb2fc"; - }; - - meta = { - description = ''Elixir standard libraries instrumented with - PULSE.''; - license = stdenv.lib.licenses.asl20; - }; - } - ) {}; - - pulse_libs = pulse_libs_1_0_0; - - pusher_0_1_3 = callPackage - ( - { - buildMix, - fetchHex, - signaturex_1_0_1, - httpoison_0_8_2, - exjsx_3_2_0 - }: - buildMix { - name = "pusher"; - version = "0.1.3"; - src = fetchHex { - pkg = "pusher"; - version = "0.1.3"; - sha256 = - "1443c9652d3a3d03fcfef0e8dca817affa80d1c4e0eb582282af0d9c69a087f3"; - }; - beamDeps = [ signaturex_1_0_1 httpoison_0_8_2 exjsx_3_2_0 ]; - - meta = { - description = ''Pusher HTTP client''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/edgurgel/pusher"; - }; - } - ) {}; - - pusher = pusher_0_1_3; - - pushex_0_0_2 = callPackage - ( - { buildMix, fetchHex, poison_1_0_3, httpoison_0_8_2 }: - buildMix { - name = "pushex"; - version = "0.0.2"; - src = fetchHex { - pkg = "pushex"; - version = "0.0.2"; - sha256 = - "7330d48e2816b9d3444b96d30f9144607490807684f2f231fa91bc7c6888fe03"; - }; - beamDeps = [ poison_1_0_3 httpoison_0_8_2 ]; - - meta = { - description = ''Mobile push notification library''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/tuvistavie/pushex"; - }; - } - ) {}; - - pushex = pushex_0_0_2; - qdate_0_4_2 = callPackage ( { buildRebar3, + packageOverrides ? {}, fetchHex, erlware_commons_0_18_0, erlang_localtime_1_0_0 }: - buildRebar3 { + buildRebar3 ({ name = "qdate"; version = "0.4.2"; src = fetchHex { @@ -38790,63 +23078,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/choptastic/qdate"; }; - } + } // packageOverrides) ) {}; qdate = qdate_0_4_2; - qiita_ex_0_0_2 = callPackage - ( - { buildMix, fetchHex, httpoison_0_8_2, exjsx_3_2_0 }: - buildMix { - name = "qiita_ex"; - version = "0.0.2"; - src = fetchHex { - pkg = "qiita_ex"; - version = "0.0.2"; - sha256 = - "0bb9a5535c0915c426ff13350b907cbd2b455bb99d8bcb8324ffadb6c9bcf1eb"; - }; - beamDeps = [ httpoison_0_8_2 exjsx_3_2_0 ]; - - meta = { - description = ''Qiita API v2 Interface for Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/ma2gedev/qiita_ex"; - }; - } - ) {}; - - qiita_ex = qiita_ex_0_0_2; - - qiniu_0_2_2 = callPackage - ( - { buildMix, fetchHex, poison_1_3_1, httpoison_0_7_5 }: - buildMix { - name = "qiniu"; - version = "0.2.2"; - src = fetchHex { - pkg = "qiniu"; - version = "0.2.2"; - sha256 = - "6c03aeb2d58a1d44f2476eba83640978f166267b07a4e7ce6cb4b498be5cb1c5"; - }; - beamDeps = [ poison_1_3_1 httpoison_0_7_5 ]; - - meta = { - description = ''Qiniu Resource (Cloud) Storage SDK for Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/tony612/qiniu"; - }; - } - ) {}; - - qiniu = qiniu_0_2_2; - qlc_1_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "qlc"; version = "1.0.0"; src = fetchHex { @@ -38861,15 +23101,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/k1complete/qlc"; }; - } + } // packageOverrides) ) {}; qlc = qlc_1_0_0; quantum_1_7_1 = callPackage ( - { buildMix, fetchHex, timex_2_1_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, timex_2_1_3 }: + buildMix ({ name = "quantum"; version = "1.7.1"; src = fetchHex { @@ -38885,15 +23125,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "quark"; version = "1.0.2"; src = fetchHex { @@ -38908,15 +23148,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/robot-overlord/quark"; }; - } + } // packageOverrides) ) {}; quark = quark_1_0_2; queuex_0_2_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "queuex"; version = "0.2.0"; src = fetchHex { @@ -38931,15 +23171,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/falood/queuex"; }; - } + } // packageOverrides) ) {}; queuex = queuex_0_2_0; quickrand_1_5_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "quickrand"; version = "1.5.1"; src = fetchHex { @@ -38957,38 +23197,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/okeuday/quickrand"; }; - } + } // packageOverrides) ) {}; quickrand = quickrand_1_5_1; - quinn_0_0_4 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "quinn"; - version = "0.0.4"; - src = fetchHex { - pkg = "quinn"; - version = "0.0.4"; - sha256 = - "6cafeb8e6d9635b3a26caf1768c70751f0bbdc6afb9acd7067a52316b22c8de2"; - }; - - meta = { - description = ''Quinn is Elixir xml parser. ''; - license = stdenv.lib.licenses.apsl20; - homepage = "https://github.com/nhu313/Quinn"; - }; - } - ) {}; - - quinn = quinn_0_0_4; - quintana_0_2_0 = callPackage ( - { buildRebar3, fetchHex, folsom_0_8_3 }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex, folsom_0_8_3 }: + buildRebar3 ({ name = "quintana"; version = "0.2.0"; src = fetchHex { @@ -39004,13 +23221,13 @@ let description = ''Wrapper around some Folsom functions''; }; - } + } // packageOverrides) ) {}; quintana_0_2_1 = callPackage ( - { buildRebar3, fetchHex, folsom_0_8_3 }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex, folsom_0_8_3 }: + buildRebar3 ({ name = "quintana"; version = "0.2.1"; src = fetchHex { @@ -39026,15 +23243,15 @@ let description = ''Wrapper around some Folsom functions''; }; - } + } // packageOverrides) ) {}; quintana = quintana_0_2_1; ra_0_3_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ra"; version = "0.3.2"; src = fetchHex { @@ -39050,15 +23267,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/NobbZ/ra"; }; - } + } // packageOverrides) ) {}; ra = ra_0_3_2; rabbitElixir_1_0_1 = callPackage ( - { buildMix, fetchHex, exjsx_3_1_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, exjsx_3_1_0 }: + buildMix ({ name = "rabbitElixir"; version = "1.0.1"; src = fetchHex { @@ -39074,15 +23291,15 @@ let 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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "rabbit_common"; version = "3.5.6"; src = fetchHex { @@ -39099,72 +23316,15 @@ let license = stdenv.lib.licenses.mpl11; homepage = "https://github.com/jbrisbin/rabbit_common"; }; - } + } // packageOverrides) ) {}; rabbit_common = rabbit_common_3_5_6; - rackla_1_0_0 = callPackage - ( - { - buildMix, - fetchHex, - poison_2_1_0, - plug_1_1_3, - hackney_1_4_10, - cowboy_1_0_4 - }: - buildMix { - name = "rackla"; - version = "1.0.0"; - src = fetchHex { - pkg = "rackla"; - version = "1.0.0"; - sha256 = - "8d299ccea08686953beb11841eeb70ffba7fa040422bc62eaded785432422032"; - }; - beamDeps = [ poison_2_1_0 plug_1_1_3 hackney_1_4_10 cowboy_1_0_4 - ]; - - meta = { - description = ''Rackla is library for building API-gateways.''; - license = stdenv.lib.licenses.apsl20; - homepage = "https://github.com/AntonFagerberg/rackla"; - }; - } - ) {}; - - rackla = rackla_1_0_0; - - radpath_0_0_5 = callPackage - ( - { buildMix, fetchHex, excoveralls_0_5_1 }: - buildMix { - name = "radpath"; - version = "0.0.5"; - src = fetchHex { - pkg = "radpath"; - version = "0.0.5"; - sha256 = - "0da59ca494b833988c9e2b64e075a63949adf8716bf4470d738754723de9bdca"; - }; - beamDeps = [ excoveralls_0_5_1 ]; - - meta = { - description = ''A path library for Elixir inspired by Python path - libraries ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/lowks/Radpath"; - }; - } - ) {}; - - radpath = radpath_0_0_5; - rails_4_2_0 = callPackage ( - { buildMix, fetchHex, plug_1_1_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ name = "rails"; version = "4.2.0"; src = fetchHex { @@ -39181,15 +23341,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/BlakeWilliams/rails"; }; - } + } // packageOverrides) ) {}; rails = rails_4_2_0; ranch_1_1_0 = callPackage ( - { buildErlangMk, fetchHex }: - buildErlangMk { + { buildErlangMk, packageOverrides ? {}, fetchHex }: + buildErlangMk ({ name = "ranch"; version = "1.1.0"; src = fetchHex { @@ -39204,13 +23364,13 @@ let license = stdenv.lib.licenses.isc; homepage = "https://github.com/ninenines/ranch"; }; - } + } // packageOverrides) ) {}; ranch_1_2_1 = callPackage ( - { buildErlangMk, fetchHex }: - buildErlangMk { + { buildErlangMk, packageOverrides ? {}, fetchHex }: + buildErlangMk ({ name = "ranch"; version = "1.2.1"; src = fetchHex { @@ -39225,41 +23385,15 @@ let license = stdenv.lib.licenses.isc; homepage = "https://github.com/ninenines/ranch"; }; - } + } // packageOverrides) ) {}; ranch = ranch_1_2_1; - random_0_2_2 = callPackage - ( - { buildMix, fetchHex, tinymt_0_3_1 }: - buildMix { - name = "random"; - version = "0.2.2"; - src = fetchHex { - pkg = "random"; - version = "0.2.2"; - sha256 = - "504b6bd71c149a8b24c77df3b64c7261112f48811c91b5b8ab71f54d338c6b37"; - }; - beamDeps = [ tinymt_0_3_1 ]; - - meta = { - longDescription = ''This module contains pseudo-random number - generators for various distributions ported from - Python 3 random module for Elixir.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/yuce/random"; - }; - } - ) {}; - - random = random_0_2_2; - random_string_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "random_string"; version = "0.0.1"; src = fetchHex { @@ -39275,15 +23409,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "range_extras"; version = "0.1.0"; src = fetchHex { @@ -39299,15 +23433,17 @@ let 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, fetchHex, libsnarlmatch_0_1_7 }: - buildRebar3 { + { + buildRebar3, packageOverrides ? {}, fetchHex, libsnarlmatch_0_1_7 + }: + buildRebar3 ({ name = "rankmatcher"; version = "0.1.4"; src = fetchHex { @@ -39324,42 +23460,15 @@ let license = stdenv.lib.licenses.cddl; homepage = "https://github.com/dalmatinerdb/mstore"; }; - } + } // packageOverrides) ) {}; rankmatcher = rankmatcher_0_1_4; - rapidax_0_0_3 = callPackage - ( - { - buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2, cowboy_1_0_4 - }: - buildMix { - name = "rapidax"; - version = "0.0.3"; - src = fetchHex { - pkg = "rapidax"; - version = "0.0.3"; - sha256 = - "9912b79b3d2729465bf66315bd955e031aeb038f05a63faa2dc0414026edb18c"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 cowboy_1_0_4 ]; - - meta = { - description = ''Rapidly develop your API client - based on - rapidash gem''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/victorlcampos/rapidax"; - }; - } - ) {}; - - rapidax = rapidax_0_0_3; - rational_0_2_0 = callPackage ( - { buildMix, fetchHex, earmark_0_2_1 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, earmark_0_2_1 }: + buildMix ({ name = "rational"; version = "0.2.0"; src = fetchHex { @@ -39379,15 +23488,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "ratx"; version = "0.1.0"; src = fetchHex { @@ -39403,96 +23512,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/liveforeverx/ratx"; }; - } + } // packageOverrides) ) {}; ratx = ratx_0_1_0; - raven_0_0_5 = callPackage - ( - { buildMix, fetchHex, hackney_1_4_8, uuid_1_0_0, poison_1_2_1 }: - buildMix { - name = "raven"; - version = "0.0.5"; - src = fetchHex { - pkg = "raven"; - version = "0.0.5"; - sha256 = - "dac032f4a14adbd174927508709585bd34f9baa2836ff3987b4d071790cb229a"; - }; - beamDeps = [ hackney_1_4_8 uuid_1_0_0 poison_1_2_1 ]; - - meta = { - description = ''Raven is an Elixir client for Sentry''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/vishnevskiy/raven-elixir"; - }; - } - ) {}; - - raven = raven_0_0_5; - - raygun_0_2_0 = callPackage + readme_md_doc_0_1_2 = callPackage ( { buildMix, + packageOverrides ? {}, fetchHex, - timex_1_0_2, - poison_1_5_2, - plug_1_1_3, - httpoison_0_8_2 + ex_doc_0_11_4, + argument_parser_0_1_3 }: - buildMix { - name = "raygun"; - version = "0.2.0"; - src = fetchHex { - pkg = "raygun"; - version = "0.2.0"; - sha256 = - "742fe2fef4fff5933802566375ce8efe27eaa2afbb8609c1bca50ef43f30bc3f"; - }; - beamDeps = [ timex_1_0_2 poison_1_5_2 plug_1_1_3 httpoison_0_8_2 - ]; - - meta = { - longDescription = ''Send errors in your application to Raygun. - Raygun captures all your application errors in - one place. It can be used as a Plug, via Logger - and/or programmatically.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/cobenian/raygun"; - }; - } - ) {}; - - raygun = raygun_0_2_0; - - reactive_0_0_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "reactive"; - version = "0.0.1"; - src = fetchHex { - pkg = "reactive"; - version = "0.0.1"; - sha256 = - "af17deb3beedd24319940000e286a1f8d9f29beb498980475e16cc57857469f9"; - }; - - meta = { - description = ''Reactive Programming for Elixir''; - - }; - } - ) {}; - - reactive = reactive_0_0_1; - - readme_md_doc_0_1_2 = callPackage - ( - { buildMix, fetchHex, ex_doc_0_11_4, argument_parser_0_1_3 }: - buildMix { + buildMix ({ name = "readme_md_doc"; version = "0.1.2"; src = fetchHex { @@ -39509,39 +23543,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/jisaacstone/readme_md_docgen"; }; - } + } // packageOverrides) ) {}; readme_md_doc = readme_md_doc_0_1_2; - reagent_0_1_5 = callPackage - ( - { buildMix, fetchHex, exts_0_2_2, socket_0_2_8 }: - buildMix { - name = "reagent"; - version = "0.1.5"; - src = fetchHex { - pkg = "reagent"; - version = "0.1.5"; - sha256 = - "bc2765571d6358098c2c90f7870aa5111bf726a1abef2ad131f02b9aa55c5c9c"; - }; - beamDeps = [ exts_0_2_2 socket_0_2_8 ]; - - meta = { - description = ''You need more reagents to conjure this server''; - license = stdenv.lib.licenses.wtfpl; - homepage = "https://github.com/meh/reagent"; - }; - } - ) {}; - - reagent = reagent_0_1_5; - reap_0_1_3 = callPackage ( - { buildMix, fetchHex, jsex_2_0_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, jsex_2_0_0 }: + buildMix ({ name = "reap"; version = "0.1.3"; src = fetchHex { @@ -39557,15 +23567,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/Raynes/reap"; }; - } + } // packageOverrides) ) {}; reap = reap_0_1_3; reaxive_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "reaxive"; version = "0.1.0"; src = fetchHex { @@ -39585,77 +23595,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/alfert/reaxive"; }; - } + } // packageOverrides) ) {}; reaxive = reaxive_0_1_0; - reaxt_0_3_2 = callPackage - ( - { - buildMix, - fetchHex, - poolboy_1_5_1, - poison_1_4_0, - plug_1_1_3, - exos_1_0_0, - cowboy_1_0_4 - }: - buildMix { - name = "reaxt"; - version = "0.3.2"; - src = fetchHex { - pkg = "reaxt"; - version = "0.3.2"; - sha256 = - "48413f06e14e26b10ea513f7006625684c8db23ea18bfd61eaa5732c588f769c"; - }; - beamDeps = [ - poolboy_1_5_1 - poison_1_4_0 - plug_1_1_3 - exos_1_0_0 - cowboy_1_0_4 - ]; - - meta = { - longDescription = ''Use your react components into your elixir - application, using webpack compilation.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/awetzel/reaxt"; - }; - } - ) {}; - - reaxt = reaxt_0_3_2; - - rebar3_abnfc_plugin_0_1_0 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "rebar3_abnfc_plugin"; - version = "0.1.0"; - src = fetchHex { - pkg = "rebar3_abnfc_plugin"; - version = "0.1.0"; - sha256 = - "7c9cf5608888c0fe149cfc4d25a5911e604a1e63f7c0c73c3cf8792a33be9a7b"; - }; - - meta = { - description = ''A rebar plugin for abnfc''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/surik/rebar3_abnfc_plugin"; - }; - } - ) {}; - - rebar3_abnfc_plugin = rebar3_abnfc_plugin_0_1_0; - rebar3_appup_plugin_1_0_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "rebar3_appup_plugin"; version = "1.0.0"; src = fetchHex { @@ -39670,15 +23618,15 @@ let 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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "rebar3_asn1_compiler"; version = "1.0.0"; src = fetchHex { @@ -39693,66 +23641,17 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/pyykkis/rebar3_asn1_compiler"; }; - } + } // packageOverrides) ) {}; rebar3_asn1_compiler = rebar3_asn1_compiler_1_0_0; - rebar3_auto_0_3_0 = callPackage - ( - { buildRebar3, fetchHex, enotify_0_1_0 }: - buildRebar3 { - name = "rebar3_auto"; - version = "0.3.0"; - src = fetchHex { - pkg = "rebar3_auto"; - version = "0.3.0"; - sha256 = - "9fcca62411b0b7680426bd911002c0769690aef3838829583ffa4547fd5038b5"; - }; - - beamDeps = [ enotify_0_1_0 ]; - - meta = { - description = ''Rebar3 plugin for auto compiling on changes''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/tsloughter/rebar3_auto"; - }; - } - ) {}; - - rebar3_auto = rebar3_auto_0_3_0; - - rebar3_autotest_0_1_1 = callPackage - ( - { buildRebar3, fetchHex, enotify_0_1_0 }: - buildRebar3 { - name = "rebar3_autotest"; - version = "0.1.1"; - src = fetchHex { - pkg = "rebar3_autotest"; - version = "0.1.1"; - sha256 = - "7f5856336e772b14a578f0c01ce14b2a195c41d5b595c83662ffd130f7874eac"; - }; - - beamDeps = [ enotify_0_1_0 ]; - - meta = { - description = ''A rebar3 plugin to run tests automatically when - there are changes.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/NobbZ/rebar3_autotest"; - }; - } - ) {}; - - rebar3_autotest = rebar3_autotest_0_1_1; - rebar3_cuttlefish_0_10_0 = callPackage ( - { buildRebar3, fetchHex, cuttlefish_2_0_7 }: - buildRebar3 { + { + buildRebar3, packageOverrides ? {}, fetchHex, cuttlefish_2_0_7 + }: + buildRebar3 ({ name = "rebar3_cuttlefish"; version = "0.10.0"; src = fetchHex { @@ -39769,15 +23668,15 @@ let 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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "rebar3_diameter_compiler"; version = "0.3.1"; src = fetchHex { @@ -39793,15 +23692,15 @@ let 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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "rebar3_elixirc"; version = "0.1.0"; src = fetchHex { @@ -39816,89 +23715,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/tsloughter/rebar3_elixirc"; }; - } + } // packageOverrides) ) {}; rebar3_elixirc = rebar3_elixirc_0_1_0; - rebar3_eqc_0_0_10 = callPackage - ( - { buildRebar3, fetchHex, cf_0_1_2 }: - buildRebar3 { - name = "rebar3_eqc"; - version = "0.0.10"; - src = fetchHex { - pkg = "rebar3_eqc"; - version = "0.0.10"; - sha256 = - "5f901a542ca237da5106c35ae67224316b4aca7ba16204efc874fd1329414729"; - }; - - beamDeps = [ cf_0_1_2 ]; - - meta = { - description = ''Plugin to run EQC properties''; - license = stdenv.lib.licenses.apsl20; - homepage = - "https://github.com/kellymclaughlin/rebar3-eqc-plugin"; - }; - } - ) {}; - - rebar3_eqc = rebar3_eqc_0_0_10; - - rebar3_exunit_0_1_1 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "rebar3_exunit"; - version = "0.1.1"; - src = fetchHex { - pkg = "rebar3_exunit"; - version = "0.1.1"; - sha256 = - "910d2f2038dcf2b32deb40a36082ad5435389106b2dbd6266e0ee3a20a688650"; - }; - - meta = { - description = ''Plugin to run exUnit tests''; - license = stdenv.lib.licenses.apsl20; - homepage = "https://github.com/processone/rebar3_exunit_plugin"; - }; - } - ) {}; - - rebar3_exunit = rebar3_exunit_0_1_1; - - rebar3_gpb_plugin_1_3_0 = callPackage - ( - { buildRebar3, fetchHex, gpb_3_20_0 }: - buildRebar3 { - name = "rebar3_gpb_plugin"; - version = "1.3.0"; - src = fetchHex { - pkg = "rebar3_gpb_plugin"; - version = "1.3.0"; - sha256 = - "8708e32b99a98d25179a831a7192ed75b15ed396c7e9b927d8bf705f13b3269c"; - }; - - beamDeps = [ gpb_3_20_0 ]; - - meta = { - description = ''A rebar3 gpb plugin for compiling .proto files''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/lrascao/rebar3_gpb_plugin"; - }; - } - ) {}; - - rebar3_gpb_plugin = rebar3_gpb_plugin_1_3_0; - rebar3_hex_1_19_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "rebar3_hex"; version = "1.19.0"; src = fetchHex { @@ -39913,15 +23738,15 @@ let 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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "rebar3_idl_compiler"; version = "0.3.0"; src = fetchHex { @@ -39936,40 +23761,15 @@ let homepage = "https://github.com/sebastiw/rebar3_idl_compiler"; }; - } + } // packageOverrides) ) {}; rebar3_idl_compiler = rebar3_idl_compiler_0_3_0; - rebar3_live_0_1_3 = callPackage - ( - { buildRebar3, fetchHex, enotify_0_1_0 }: - buildRebar3 { - name = "rebar3_live"; - version = "0.1.3"; - src = fetchHex { - pkg = "rebar3_live"; - version = "0.1.3"; - sha256 = - "d9ee2ff022fc73ac94f206c13ff8aa7591a536704f49c4cbacabf37d181a4391"; - }; - - beamDeps = [ enotify_0_1_0 ]; - - meta = { - description = ''Rebar3 live plugin''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/pvmart/rebar3_live"; - }; - } - ) {}; - - rebar3_live = rebar3_live_0_1_3; - rebar3_neotoma_plugin_0_2_0 = callPackage ( - { buildRebar3, fetchHex, neotoma_1_7_3 }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex, neotoma_1_7_3 }: + buildRebar3 ({ name = "rebar3_neotoma_plugin"; version = "0.2.0"; src = fetchHex { @@ -39987,111 +23787,15 @@ let homepage = "https://github.com/zamotivator/rebar3_neotoma_plugin"; }; - } + } // packageOverrides) ) {}; rebar3_neotoma_plugin = rebar3_neotoma_plugin_0_2_0; - rebar3_proper_0_6_0 = callPackage - ( - { buildRebar3, fetchHex, proper_1_1_1_beta }: - buildRebar3 { - name = "rebar3_proper"; - version = "0.6.0"; - src = fetchHex { - pkg = "rebar3_proper"; - version = "0.6.0"; - sha256 = - "8d951f0ef4cfdf699b1dec0b035a9c00a6ac9544b0145ec28621add21b46298d"; - }; - - beamDeps = [ proper_1_1_1_beta ]; - - meta = { - description = ''Run PropEr test suites''; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/ferd/rebar3_proper"; - }; - } - ) {}; - - rebar3_proper = rebar3_proper_0_6_0; - - rebar3_proper_plugin_0_1_0 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "rebar3_proper_plugin"; - version = "0.1.0"; - src = fetchHex { - pkg = "rebar3_proper_plugin"; - version = "0.1.0"; - sha256 = - "7071555afb623e73a2c572de6d4379f9c197b44e68608944eb2835617faed10d"; - }; - - meta = { - description = ''A rebar plugin''; - - }; - } - ) {}; - - rebar3_proper_plugin = rebar3_proper_plugin_0_1_0; - - rebar3_protobuffs_0_2_0 = callPackage - ( - { buildRebar3, fetchHex, protobuffs_0_8_2 }: - buildRebar3 { - name = "rebar3_protobuffs"; - version = "0.2.0"; - src = fetchHex { - pkg = "rebar3_protobuffs"; - version = "0.2.0"; - sha256 = - "b5422c5aee1dcea90fa44e4b769c01e8cefe8b1ab09e44b4d2008d465e80c49c"; - }; - - beamDeps = [ protobuffs_0_8_2 ]; - - meta = { - description = ''A rebar plugin''; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/benoitc/rebar3_protobuffs"; - }; - } - ) {}; - - rebar3_protobuffs = rebar3_protobuffs_0_2_0; - - rebar3_run_0_2_0 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "rebar3_run"; - version = "0.2.0"; - src = fetchHex { - pkg = "rebar3_run"; - version = "0.2.0"; - sha256 = - "321e0647893957d1bb05a88d940a8a3b9129097d63529e13f815c4857bf29497"; - }; - compilePorts = true; - - meta = { - description = ''A rebar plugin''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/tsloughter/rebar3_run"; - }; - } - ) {}; - - rebar3_run = rebar3_run_0_2_0; - rebar3_vendor_0_1_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "rebar3_vendor"; version = "0.1.0"; src = fetchHex { @@ -40106,38 +23810,15 @@ let license = stdenv.lib.licenses.apsl20; homepage = "http://github.com/tsloughter/rebar3_vendor"; }; - } + } // packageOverrides) ) {}; rebar3_vendor = rebar3_vendor_0_1_0; - rebar3_yang_plugin_0_2_1 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "rebar3_yang_plugin"; - version = "0.2.1"; - src = fetchHex { - pkg = "rebar3_yang_plugin"; - version = "0.2.1"; - sha256 = - "8a68890ba67baf25b539acfd20783732a90b57f75f7d868cb62d1f7f061449fa"; - }; - - meta = { - description = ''A rebar plugin for yang''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/surik/rebar3_yang_plugin"; - }; - } - ) {}; - - rebar3_yang_plugin = rebar3_yang_plugin_0_2_1; - rebar_alias_0_1_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "rebar_alias"; version = "0.1.0"; src = fetchHex { @@ -40151,15 +23832,15 @@ let description = ''A rebar plugin''; }; - } + } // packageOverrides) ) {}; rebar_alias = rebar_alias_0_1_0; rebar_erl_vsn_0_1_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "rebar_erl_vsn"; version = "0.1.0"; src = fetchHex { @@ -40173,39 +23854,15 @@ let description = ''defines for erlang versions''; license = stdenv.lib.licenses.mit; }; - } + } // packageOverrides) ) {}; rebar_erl_vsn = rebar_erl_vsn_0_1_0; - rebar_protobuffs_0_1_0 = callPackage - ( - { buildRebar3, fetchHex, gpb_3_18_8 }: - buildRebar3 { - name = "rebar_protobuffs"; - version = "0.1.0"; - src = fetchHex { - pkg = "rebar_protobuffs"; - version = "0.1.0"; - sha256 = - "1345b2135aed454855bfc74b760feb420924824c937157098b1f8668deb919b5"; - }; - - beamDeps = [ gpb_3_18_8 ]; - - meta = { - description = ''A rebar plugin''; - - }; - } - ) {}; - - rebar_protobuffs = rebar_protobuffs_0_1_0; - rebind_0_1_3 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "rebind"; version = "0.1.3"; src = fetchHex { @@ -40220,40 +23877,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/camshaft/rebind"; }; - } + } // packageOverrides) ) {}; rebind = rebind_0_1_3; - recaptcha_1_1_1 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "recaptcha"; - version = "1.1.1"; - src = fetchHex { - pkg = "recaptcha"; - version = "1.1.1"; - sha256 = - "ebfa37443d23d2c70366f3f84f00bd50d59da5583ffde2673bc5ea83667b5751"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''A simple reCaptcha package for Phoenix - applications.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/JustMikey/recaptcha"; - }; - } - ) {}; - - recaptcha = recaptcha_1_1_1; - recon_2_2_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "recon"; version = "2.2.1"; src = fetchHex { @@ -40264,68 +23896,19 @@ let }; meta = { - longDescription = ''Recon wants to be a set of tools usable in - production to diagnose Erlang problems or - inspect production environment safely.''; + description = ''Diagnostic tools for production use''; license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/ferd/recon"; + homepage = "https://github.com/ferd/recon/"; }; - } + } // packageOverrides) ) {}; recon = recon_2_2_1; - recon_ex_0_9_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "recon_ex"; - version = "0.9.0"; - src = fetchHex { - pkg = "recon_ex"; - version = "0.9.0"; - sha256 = - "7a24dcb173e74c0e65357deb6e084cd71b1f24915b4801e12ec38bd4d587c2dd"; - }; - - meta = { - description = ''Elixir wrapper for Recon, diagnostic tools for - production use''; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/tatsuya6502/recon_ex"; - }; - } - ) {}; - - recon_ex = recon_ex_0_9_0; - - record_translator_0_0_3 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "record_translator"; - version = "0.0.3"; - src = fetchHex { - pkg = "record_translator"; - version = "0.0.3"; - sha256 = - "d6a30b2b23194e58c282c86cc0d3f61a738e1840afcee4007fdbb10e7ad7bf76"; - }; - - meta = { - description = ''Erlang`s file of records to Elixir`s maps''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/massn/record_translator"; - }; - } - ) {}; - - record_translator = record_translator_0_0_3; - red_0_0_5 = callPackage ( - { buildMix, fetchHex, exredis_0_2_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, exredis_0_2_3 }: + buildMix ({ name = "red"; version = "0.0.5"; src = fetchHex { @@ -40343,15 +23926,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "red_black_tree"; version = "1.2.0"; src = fetchHex { @@ -40367,41 +23950,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/SenecaSystems/red_black_tree"; }; - } + } // packageOverrides) ) {}; red_black_tree = red_black_tree_1_2_0; - reddhl_0_0_1 = callPackage - ( - { buildRebar3, fetchHex, poison_1_4_0, httpoison_0_8_2 }: - buildRebar3 { - name = "reddhl"; - version = "0.0.1"; - src = fetchHex { - pkg = "reddhl"; - version = "0.0.1"; - sha256 = - "4b2a5b1e3119b5b44e57c10e395fc817d977bf7fd72464605efff08266336871"; - }; - - beamDeps = [ poison_1_4_0 httpoison_0_8_2 ]; - - meta = { - description = ''An headline and link puller for Reddit and its - various subreddits ''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/MonkeyIsNull/reddhl"; - }; - } - ) {}; - - reddhl = reddhl_0_0_1; - redis_pool_0_2_3 = callPackage ( - { buildMix, fetchHex, poolboy_1_5_1, eredis_1_0_8 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + poolboy_1_5_1, + eredis_1_0_8 + }: + buildMix ({ name = "redis_pool"; version = "0.2.3"; src = fetchHex { @@ -40418,15 +23981,21 @@ let 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, fetchHex, poolboy_1_5_1, exredis_0_2_3 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + poolboy_1_5_1, + exredis_0_2_3 + }: + buildMix ({ name = "redis_poolex"; version = "0.0.5"; src = fetchHex { @@ -40443,15 +24012,15 @@ let 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, fetchHex, connection_1_0_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, connection_1_0_2 }: + buildMix ({ name = "redix"; version = "0.3.6"; src = fetchHex { @@ -40468,15 +24037,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/whatyouhide/redix"; }; - } + } // packageOverrides) ) {}; redix = redix_0_3_6; redo_2_0_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "redo"; version = "2.0.1"; src = fetchHex { @@ -40491,39 +24060,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/heroku/redo"; }; - } + } // packageOverrides) ) {}; redo = redo_2_0_1; - redtube_1_0_0 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "redtube"; - version = "1.0.0"; - src = fetchHex { - pkg = "redtube"; - version = "1.0.0"; - sha256 = - "f9c5b83c3f860c448328079f1250b54f06749d9c1adb593f7e11e45fe8131a0d"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''API Wrapper for Redtube''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/kkirsche/Redtube_Elixir"; - }; - } - ) {}; - - redtube = redtube_1_0_0; - ref_inspector_0_8_0 = callPackage ( - { buildMix, fetchHex, poolboy_1_5_1 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, poolboy_1_5_1 }: + buildMix ({ name = "ref_inspector"; version = "0.8.0"; src = fetchHex { @@ -40539,15 +24084,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "regdom"; version = "0.0.1"; src = fetchHex { @@ -40562,57 +24107,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/adqio/regdom-lib"; }; - } + } // packageOverrides) ) {}; regdom = regdom_0_0_1; - relax_0_3_0 = callPackage - ( - { - buildMix, - fetchHex, - poison_1_5_2, - plug_1_1_3, - ja_serializer_0_8_1, - ecto_2_0_0_beta_2, - cowboy_1_0_4 - }: - buildMix { - name = "relax"; - version = "0.3.0"; - src = fetchHex { - pkg = "relax"; - version = "0.3.0"; - sha256 = - "04382f1d8a6d14e3a9b2177a318aa02129665fa3e00fb52d0042e286ea9af392"; - }; - beamDeps = [ - poison_1_5_2 - plug_1_1_3 - ja_serializer_0_8_1 - ecto_2_0_0_beta_2 - cowboy_1_0_4 - ]; - - meta = { - longDescription = ''A jsonapi.org serializer and optional server - implementation in Elixir. Relax can be used as a - standalone API with Relax.Router and - Relax.Resources, or integrated into Phoenix - using Relax.Serializer.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/AgilionApps/relax"; - }; - } - ) {}; - - relax = relax_0_3_0; - relflow_1_0_5 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "relflow"; version = "1.0.5"; src = fetchHex { @@ -40622,19 +24125,22 @@ let "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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "relief"; version = "0.0.1"; src = fetchHex { @@ -40650,40 +24156,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/voidlock/relief"; }; - } + } // packageOverrides) ) {}; relief = relief_0_0_1; - relisa_0_1_0 = callPackage - ( - { buildMix, fetchHex, exrm_0_18_8 }: - buildMix { - name = "relisa"; - version = "0.1.0"; - src = fetchHex { - pkg = "relisa"; - version = "0.1.0"; - sha256 = - "e771fa9da8363571765374a0cf3f1237da8c1be35ea4109165928ca42895954c"; - }; - beamDeps = [ exrm_0_18_8 ]; - - meta = { - description = ''Fast, simple, and composable deployment library - for Elixir.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/SenecaSystems/relisa"; - }; - } - ) {}; - - relisa = relisa_0_1_0; - relocker_0_0_8 = callPackage ( - { buildMix, fetchHex, exredis_0_2_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, exredis_0_2_3 }: + buildMix ({ name = "relocker"; version = "0.0.8"; src = fetchHex { @@ -40699,15 +24180,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/grandCru/relocker"; }; - } + } // packageOverrides) ) {}; relocker = relocker_0_0_8; reltool_util_1_5_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "reltool_util"; version = "1.5.1"; src = fetchHex { @@ -40723,7 +24204,7 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/okeuday/reltool_util"; }; - } + } // packageOverrides) ) {}; reltool_util = reltool_util_1_5_1; @@ -40732,6 +24213,7 @@ let ( { buildRebar3, + packageOverrides ? {}, fetchHex, providers_1_6_0, getopt_0_8_2, @@ -40739,7 +24221,7 @@ let cf_0_2_1, bbmustache_1_0_4 }: - buildRebar3 { + buildRebar3 ({ name = "relx"; version = "3.18.0"; src = fetchHex { @@ -40762,7 +24244,7 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/erlware/relx"; }; - } + } // packageOverrides) ) {}; relx = relx_3_18_0; @@ -40771,13 +24253,14 @@ let ( { buildRebar3, + packageOverrides ? {}, fetchHex, providers_1_4_1, getopt_0_8_2, erlware_commons_0_15_0, bbmustache_1_0_3 }: - buildRebar3 { + buildRebar3 ({ name = "relx"; version = "3.3.2"; src = fetchHex { @@ -40799,20 +24282,21 @@ let 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 { + buildRebar3 ({ name = "relx"; version = "3.5.0"; src = fetchHex { @@ -40834,13 +24318,13 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/erlware/relx"; }; - } + } // packageOverrides) ) {}; remix_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "remix"; version = "0.0.2"; src = fetchHex { @@ -40856,15 +24340,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/AgilionApps/remix"; }; - } + } // packageOverrides) ) {}; remix = remix_0_0_2; remodel_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "remodel"; version = "0.0.1"; src = fetchHex { @@ -40883,39 +24367,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/stavro/remodel"; }; - } + } // packageOverrides) ) {}; remodel = remodel_0_0_1; - rendezvous_0_0_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "rendezvous"; - version = "0.0.1"; - src = fetchHex { - pkg = "rendezvous"; - version = "0.0.1"; - sha256 = - "92aa7157aa2d0c1dcfc1dfeddeaef023aca6f5f0790fd8040828c831f3f7f893"; - }; - - meta = { - longDescription = ''Implementation of the Rendezvous or Highest - Random Weight (HRW) hashing algorithm''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/Puddah/Rendezvous"; - }; - } - ) {}; - - rendezvous = rendezvous_0_0_1; - repoquery_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "repoquery"; version = "0.0.2"; src = fetchHex { @@ -40931,52 +24391,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/rentpath/repoquery"; }; - } + } // packageOverrides) ) {}; repoquery = repoquery_0_0_2; - reporter_0_4_1 = callPackage - ( - { - buildMix, - fetchHex, - poison_2_1_0, - httpoison_0_8_2, - floki_0_8_0, - feeder_ex_0_0_2 - }: - buildMix { - name = "reporter"; - version = "0.4.1"; - src = fetchHex { - pkg = "reporter"; - version = "0.4.1"; - sha256 = - "414bc7874fd551d5559907b88617a9a58aacb556d8b6adf6270cbef34656ebac"; - }; - beamDeps = [ - poison_2_1_0 - httpoison_0_8_2 - floki_0_8_0 - feeder_ex_0_0_2 - ]; - - meta = { - description = ''Simple getting reviews library from AppStore and - GooglePlay''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/KazuCocoa/simple_app_reporter_ex"; - }; - } - ) {}; - - reporter = reporter_0_4_1; - reprise_0_5_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "reprise"; version = "0.5.0"; src = fetchHex { @@ -41000,15 +24423,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/herenowcoder/reprise"; }; - } + } // packageOverrides) ) {}; reprise = reprise_0_5_0; resin_0_4_1 = callPackage ( - { buildMix, fetchHex, plug_1_1_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ name = "resin"; version = "0.4.1"; src = fetchHex { @@ -41025,15 +24448,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/Frost/resin"; }; - } + } // packageOverrides) ) {}; resin = resin_0_4_1; rest_1_5_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "rest"; version = "1.5.0"; src = fetchHex { @@ -41048,98 +24471,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/synrc/rest"; }; - } + } // packageOverrides) ) {}; rest = rest_1_5_0; - rest_client_0_0_1 = callPackage - ( - { - buildMix, - fetchHex, - poison_1_5_2, - mock_0_1_3, - inflex_1_4_1, - httpotion_2_2_2 - }: - buildMix { - name = "rest_client"; - version = "0.0.1"; - src = fetchHex { - pkg = "rest_client"; - version = "0.0.1"; - sha256 = - "b537f9bc91fbf09ecb6c5890c0e5a01f20de869bc804f730688f61d6acd96cf8"; - }; - beamDeps = [ - poison_1_5_2 mock_0_1_3 inflex_1_4_1 httpotion_2_2_2 - ]; - - meta = { - longDescription = ''RestClient is a generic REST client library. - It generates structs and functions for use with - APIs.''; - - homepage = "https://github.com/phikes/elixir-restclient"; - }; - } - ) {}; - - rest_client = rest_client_0_0_1; - - rethinkdb_0_4_0 = callPackage - ( - { buildMix, fetchHex, poison_1_0_3, connection_1_0_2 }: - buildMix { - name = "rethinkdb"; - version = "0.4.0"; - src = fetchHex { - pkg = "rethinkdb"; - version = "0.4.0"; - sha256 = - "ca2d13a226987edf6943f7af968510b1836becc3c14b42667f82cd57bbcd4e8f"; - }; - beamDeps = [ poison_1_0_3 connection_1_0_2 ]; - - meta = { - description = ''RethinkDB driver for Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/hamiltop/rethinkdb-elixir"; - }; - } - ) {}; - - rethinkdb = rethinkdb_0_4_0; - - rethinkdb_changefeed_0_0_1 = callPackage - ( - { buildMix, fetchHex, rethinkdb_0_4_0, connection_1_0_2 }: - buildMix { - name = "rethinkdb_changefeed"; - version = "0.0.1"; - src = fetchHex { - pkg = "rethinkdb_changefeed"; - version = "0.0.1"; - sha256 = - "c895db0d57d55c7c7ab4aeb6ce167c82de1d0f7a884c93d4ea0cdea16df11b82"; - }; - beamDeps = [ rethinkdb_0_4_0 connection_1_0_2 ]; - - meta = { - description = ''RethinkDB Supervised Changefeeds''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/hamiltop/rethinkdb_changefeed"; - }; - } - ) {}; - - rethinkdb_changefeed = rethinkdb_changefeed_0_0_1; - reup_0_1_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "reup"; version = "0.1.0"; src = fetchHex { @@ -41149,51 +24489,29 @@ let "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; - reverse_proxy_0_1_0 = callPackage - ( - { - buildMix, fetchHex, plug_1_0_3, httpoison_0_7_5, cowboy_1_0_4 - }: - buildMix { - name = "reverse_proxy"; - version = "0.1.0"; - src = fetchHex { - pkg = "reverse_proxy"; - version = "0.1.0"; - sha256 = - "77ab07ca68e758d5ce07878ae4effab8522545e6d491f9ae96c87814f35cbab2"; - }; - beamDeps = [ plug_1_0_3 httpoison_0_7_5 cowboy_1_0_4 ]; - - meta = { - longDescription = ''A Plug based, reverse proxy server. Upstream - servers can be listed per-domain in the - following forms: - List of remote nodes, e.g. - `["host:4000", "host:4001"]` - A `{plug, - options}` tuple, useful for umbrella - applications''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/slogsdon/elixir-reverse-proxy"; - }; - } - ) {}; - - reverse_proxy = reverse_proxy_0_1_0; - revision_plate_ex_0_1_0 = callPackage ( - { buildMix, fetchHex, plug_1_1_3, cowboy_1_0_4 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ name = "revision_plate_ex"; version = "0.1.0"; src = fetchHex { @@ -41210,15 +24528,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "rfc3339"; version = "0.9.0"; src = fetchHex { @@ -41233,98 +24551,15 @@ let license = with stdenv.lib.licenses; [ asl20 mit ]; homepage = "https://github.com/talentdeficit/rfc3339"; }; - } + } // packageOverrides) ) {}; rfc3339 = rfc3339_0_9_0; - riak_1_0_0 = callPackage - ( - { - buildMix, fetchHex, riakc_2_1_1, pooler_1_5_0, linguist_0_1_5 - }: - buildMix { - name = "riak"; - version = "1.0.0"; - src = fetchHex { - pkg = "riak"; - version = "1.0.0"; - sha256 = - "4171c6e40aba67f8464c807bd70c68e8bf63c9cecf3d28dde88ef1e8f5a21930"; - }; - beamDeps = [ riakc_2_1_1 pooler_1_5_0 linguist_0_1_5 ]; - - meta = { - description = ''A Riak client written in Elixir.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/drewkerrigan/riak-elixir-client"; - }; - } - ) {}; - - riak = riak_1_0_0; - - riak_core_ng_2_2_3 = callPackage - ( - { - buildRebar3, - fetchHex, - riak_sysmon_2_1_2, - riak_ensemble_2_1_3, - pbkdf2_2_0_0, - lager_3_0_2, - goldrush_0_1_7, - exometer_core_1_0_0, - erocksdb_0_4_1, - eleveldb_2_1_3, - edown_0_7_0, - cuttlefish_2_0_7, - clique_3_0_1, - chash_0_1_1, - basho_stats_1_0_3, - basho_poolboy_0_8_1_p3 - }: - buildRebar3 { - name = "riak_core_ng"; - version = "2.2.3"; - src = fetchHex { - pkg = "riak_core_ng"; - version = "2.2.3"; - sha256 = - "41cc44bf8e0c6a18858d9a5327bc0098526d6c5d272b3e73bf3ff19019b53cd3"; - }; - - beamDeps = [ - riak_sysmon_2_1_2 - riak_ensemble_2_1_3 - pbkdf2_2_0_0 - lager_3_0_2 - goldrush_0_1_7 - exometer_core_1_0_0 - erocksdb_0_4_1 - eleveldb_2_1_3 - edown_0_7_0 - cuttlefish_2_0_7 - clique_3_0_1 - chash_0_1_1 - basho_stats_1_0_3 - basho_poolboy_0_8_1_p3 - ]; - - meta = { - description = ''Riak Core''; - license = stdenv.lib.licenses.apsl20; - homepage = "https://github.com/project-fifo/riak_core"; - }; - } - ) {}; - - riak_core_ng = riak_core_ng_2_2_3; - riak_dt_2_1_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "riak_dt"; version = "2.1.1"; src = fetchHex { @@ -41339,64 +24574,15 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/basho/riak_dt"; }; - } + } // packageOverrides) ) {}; riak_dt = riak_dt_2_1_1; - riak_ensemble_2_1_3 = callPackage - ( - { buildRebar3, fetchHex, lager_3_0_2, eleveldb_2_1_3 }: - buildRebar3 { - name = "riak_ensemble"; - version = "2.1.3"; - src = fetchHex { - pkg = "riak_ensemble"; - version = "2.1.3"; - sha256 = - "593c68745ce3117c2e0beaa57e36ad2971bd3540645f233df866a19468970ae2"; - }; - - beamDeps = [ lager_3_0_2 eleveldb_2_1_3 ]; - - meta = { - description = ''Multi-Paxos framework in Erlang''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/basho/riak_ensemble"; - }; - } - ) {}; - - riak_ensemble = riak_ensemble_2_1_3; - - riak_pb_2_1_0 = callPackage - ( - { buildErlangMk, fetchHex, protobuffs_0_8_2, hamcrest_0_1_1 }: - buildErlangMk { - name = "riak_pb"; - version = "2.1.0"; - src = fetchHex { - pkg = "riak_pb"; - version = "2.1.0"; - sha256 = - "76309b9b831d276bf9abf92362183030ed63910a2e153f1f8a389e97dec6c287"; - }; - beamDeps = [ protobuffs_0_8_2 hamcrest_0_1_1 ]; - - meta = { - description = ''Riak Protocol Buffers Messages''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/basho/riak_pb"; - }; - } - ) {}; - - riak_pb = riak_pb_2_1_0; - riak_sysmon_2_1_2 = callPackage ( - { buildRebar3, fetchHex, lager_3_0_2 }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex, lager_3_0_2 }: + buildRebar3 ({ name = "riak_sysmon"; version = "2.1.2"; src = fetchHex { @@ -41413,163 +24599,15 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/basho/riak_sysmon"; }; - } + } // packageOverrides) ) {}; riak_sysmon = riak_sysmon_2_1_2; - riakc_2_1_1 = callPackage - ( - { buildErlangMk, fetchHex, riak_pb_2_1_0 }: - buildErlangMk { - name = "riakc"; - version = "2.1.1"; - src = fetchHex { - pkg = "riakc"; - version = "2.1.1"; - sha256 = - "4f7141c03529d4f1c28c71eafcd797be0a538ba21d5d6923a17a9ca9e64e744e"; - }; - beamDeps = [ riak_pb_2_1_0 ]; - - meta = { - description = ''Erlang clients for Riak.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/basho/riak-erlang-client"; - }; - } - ) {}; - - riakc = riakc_2_1_1; - - riboflavin_0_0_2 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "riboflavin"; - version = "0.0.2"; - src = fetchHex { - pkg = "riboflavin"; - version = "0.0.2"; - sha256 = - "cc4ac4c80b6d591deaea136a3d055eba4ead6bbe2fc9b220a4432f160d0ddec6"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''Backblaze B2 client.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/silentdragonz/riboflavin"; - }; - } - ) {}; - - riboflavin = riboflavin_0_0_2; - - riemann_0_0_14 = callPackage - ( - { buildMix, fetchHex, honeydew_0_0_8, exprotobuf_0_13_0 }: - buildMix { - name = "riemann"; - version = "0.0.14"; - src = fetchHex { - pkg = "riemann"; - version = "0.0.14"; - sha256 = - "05656878f8aee98f1baa601ca762338014cf2440d1fb043f682669241314a2d5"; - }; - beamDeps = [ honeydew_0_0_8 exprotobuf_0_13_0 ]; - - meta = { - description = ''A client for the Riemann event stream - processor''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/koudelka/elixir-riemann"; - }; - } - ) {}; - - riemann = riemann_0_0_14; - - robotex_0_0_1 = callPackage - ( - { buildMix, fetchHex, httpoison_0_8_2, exjsx_3_1_0 }: - buildMix { - name = "robotex"; - version = "0.0.1"; - src = fetchHex { - pkg = "robotex"; - version = "0.0.1"; - sha256 = - "ae1c618b20e3847f4c372350bdda3b0dc577e1491310ef97fd5869c4f750533e"; - }; - beamDeps = [ httpoison_0_8_2 exjsx_3_1_0 ]; - - meta = { - description = ''Robotex is a client for the Telegram Bot API.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/EddyShure/robotex"; - }; - } - ) {}; - - robotex = robotex_0_0_1; - - rogger_0_1_0 = callPackage - ( - { buildRebar3, fetchHex, timex_0_13_5, amqp_0_1_1 }: - buildRebar3 { - name = "rogger"; - version = "0.1.0"; - src = fetchHex { - pkg = "rogger"; - version = "0.1.0"; - sha256 = - "2e68650f9ee8f1047410538163e930567c049d91f883cbc96d9f52aea6052b61"; - }; - - beamDeps = [ timex_0_13_5 amqp_0_1_1 ]; - - meta = { - description = ''Elixir logger to publish log messages in - RabbitMQ. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/duartejc/rogger"; - }; - } - ) {}; - - rogger = rogger_0_1_0; - - rollbax_0_5_4 = callPackage - ( - { buildMix, fetchHex, poison_1_0_3, hackney_1_6_0 }: - buildMix { - name = "rollbax"; - version = "0.5.4"; - src = fetchHex { - pkg = "rollbax"; - version = "0.5.4"; - sha256 = - "e089f9c2ea51447111c14e2491e0b2d27eaff9efc6f1bfda5edcd64881923197"; - }; - beamDeps = [ poison_1_0_3 hackney_1_6_0 ]; - - meta = { - description = ''Exception tracking and logging from Elixir to - Rollbar''; - license = stdenv.lib.licenses.isc; - homepage = "https://github.com/elixir-addicts/rollbax"; - }; - } - ) {}; - - rollbax = rollbax_0_5_4; - rollex_0_4_0 = callPackage ( - { buildMix, fetchHex, sfmt_0_12_7 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, sfmt_0_12_7 }: + buildMix ({ name = "rollex"; version = "0.4.0"; src = fetchHex { @@ -41585,15 +24623,15 @@ let calculate dice rolls.''; license = stdenv.lib.licenses.mit; }; - } + } // packageOverrides) ) {}; rollex = rollex_0_4_0; roman_numerals_1_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "roman_numerals"; version = "1.0.1"; src = fetchHex { @@ -41608,15 +24646,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "romanex"; version = "0.1.0"; src = fetchHex { @@ -41631,15 +24669,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/itsgreggreg/romanex"; }; - } + } // packageOverrides) ) {}; romanex = romanex_0_1_0; romeo_0_4_0 = callPackage ( - { buildMix, fetchHex, connection_1_0_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, connection_1_0_2 }: + buildMix ({ name = "romeo"; version = "0.4.0"; src = fetchHex { @@ -41655,41 +24693,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/scrogson/romeo"; }; - } + } // packageOverrides) ) {}; romeo = romeo_0_4_0; - roombex_0_0_4 = callPackage - ( - { buildMix, fetchHex, serial_0_1_2 }: - buildMix { - name = "roombex"; - version = "0.0.4"; - src = fetchHex { - pkg = "roombex"; - version = "0.0.4"; - sha256 = - "93ff6124016e14e2ecdf90628b638f80eb97cc0b21f2c50288585d33fc5d3d54"; - }; - beamDeps = [ serial_0_1_2 ]; - - meta = { - longDescription = ''Implements the Roomba binary protocol. Send - and receive binary data using elixir data - structures and simple functions.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/mmmries/roombex"; - }; - } - ) {}; - - roombex = roombex_0_0_4; - rop_0_5_3 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "rop"; version = "0.5.3"; src = fetchHex { @@ -41705,15 +24717,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/ruby2elixir/rop"; }; - } + } // packageOverrides) ) {}; rop = rop_0_5_3; rotor_0_2_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "rotor"; version = "0.2.2"; src = fetchHex { @@ -41730,15 +24742,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/HashNuke/rotor"; }; - } + } // packageOverrides) ) {}; rotor = rotor_0_2_2; rquote_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "rquote"; version = "0.0.1"; src = fetchHex { @@ -41754,15 +24766,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/stocks29/rquote"; }; - } + } // packageOverrides) ) {}; rquote = rquote_0_0_1; rsa_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "rsa"; version = "0.0.1"; src = fetchHex { @@ -41777,38 +24789,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/trapped/elixir-rsa"; }; - } + } // packageOverrides) ) {}; rsa = rsa_0_0_1; - rss_0_2_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "rss"; - version = "0.2.1"; - src = fetchHex { - pkg = "rss"; - version = "0.2.1"; - sha256 = - "1af49c787fc789740a0fa7e0e197a7cb779a63c4eb703f013fea400126eac1f2"; - }; - - meta = { - description = ''A super simple RSS feed builder ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/bennyhallett/elixir-rss"; - }; - } - ) {}; - - rss = rss_0_2_1; - rubix_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "rubix"; version = "0.0.2"; src = fetchHex { @@ -41824,40 +24813,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/YellowApple/Rubix"; }; - } + } // packageOverrides) ) {}; rubix = rubix_0_0_2; - rulex_0_2_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "rulex"; - version = "0.2.0"; - src = fetchHex { - pkg = "rulex"; - version = "0.2.0"; - sha256 = - "41429f27164bb05f2fa4c6326b63a8773f61c89ef9ef0bd93937cbc473d03ab5"; - }; - - meta = { - longDescription = ''Rulex contains a very simple macro "defrule" - allowing you to write a rule system using Elixir - pattern matching. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/awetzel/rulex"; - }; - } - ) {}; - - rulex = rulex_0_2_0; - russian_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "russian"; version = "0.1.0"; src = fetchHex { @@ -41872,15 +24836,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/Kr00lIX/russian_elixir"; }; - } + } // packageOverrides) ) {}; russian = russian_0_1_0; safetybox_0_1_2 = callPackage ( - { buildMix, fetchHex, earmark_0_2_1, cryptex_0_0_1 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + earmark_0_2_1, + cryptex_0_0_1 + }: + buildMix ({ name = "safetybox"; version = "0.1.2"; src = fetchHex { @@ -41897,15 +24867,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/aforward/safetybox"; }; - } + } // packageOverrides) ) {}; safetybox = safetybox_0_1_2; salsa20_0_3_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "salsa20"; version = "0.3.0"; src = fetchHex { @@ -41920,38 +24890,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/mwmiller/salsa20_ex"; }; - } + } // packageOverrides) ) {}; salsa20 = salsa20_0_3_0; - saltie_0_3_2 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "saltie"; - version = "0.3.2"; - src = fetchHex { - pkg = "saltie"; - version = "0.3.2"; - sha256 = - "6d1eb4b3d0f3a494990a28af3a5e6f79221f230ed7b24063cdfa2ea34c8794f2"; - }; - - meta = { - description = ''**DEPRECATED**. See hex.pm/packages/hashids''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/alco/saltie"; - }; - } - ) {}; - - saltie = saltie_0_3_2; - sap_0_0_2 = callPackage ( - { buildMix, fetchHex, plug_1_1_3, control_0_0_4 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + control_0_0_4 + }: + buildMix ({ name = "sap"; version = "0.0.2"; src = fetchHex { @@ -41969,15 +24922,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/slogsdon/sap"; }; - } + } // packageOverrides) ) {}; sap = sap_0_0_2; sasl_ex_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "sasl_ex"; version = "0.1.0"; src = fetchHex { @@ -41993,63 +24946,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/elbow-jason/sasl_ex"; }; - } + } // packageOverrides) ) {}; sasl_ex = sasl_ex_0_1_0; - sass_elixir_0_0_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "sass_elixir"; - version = "0.0.1"; - src = fetchHex { - pkg = "sass_elixir"; - version = "0.0.1"; - sha256 = - "565dc1c40057a9a7ae3a3c27151a8dd87a3d672d346fcc5b4829152d22c4a511"; - }; - - meta = { - description = ''A SASS plugin for elixir projects''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/zamith/sass_elixir"; - }; - } - ) {}; - - sass_elixir = sass_elixir_0_0_1; - - savory_0_0_2 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "savory"; - version = "0.0.2"; - src = fetchHex { - pkg = "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 ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "sbroker"; version = "0.7.0"; src = fetchHex { @@ -42065,15 +24970,21 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/fishcakez/sbroker"; }; - } + } // packageOverrides) ) {}; sbroker = sbroker_0_7_0; scaffold_0_0_5 = callPackage ( - { buildMix, fetchHex, gitex_0_1_0, configparser_ex_0_2_1 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + gitex_0_1_0, + configparser_ex_0_2_1 + }: + buildMix ({ name = "scaffold"; version = "0.0.5"; src = fetchHex { @@ -42090,15 +25001,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/gausby/scaffold"; }; - } + } // packageOverrides) ) {}; scaffold = scaffold_0_0_5; schedule_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "schedule"; version = "0.1.0"; src = fetchHex { @@ -42113,15 +25024,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/dvele55/schedule"; }; - } + } // packageOverrides) ) {}; schedule = schedule_0_1_0; schizo_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "schizo"; version = "0.0.1"; src = fetchHex { @@ -42137,133 +25048,15 @@ let license = stdenv.lib.licenses.unlicense; homepage = "https://github.com/teerawat1992/Schizo"; }; - } + } // packageOverrides) ) {}; schizo = schizo_0_0_1; - scrape_1_0_4 = callPackage - ( - { - buildMix, - fetchHex, - timex_1_0_0_rc4, - parallel_0_0_3, - httpoison_0_8_2, - floki_0_8_0, - codepagex_0_1_2 - }: - buildMix { - name = "scrape"; - version = "1.0.4"; - src = fetchHex { - pkg = "scrape"; - version = "1.0.4"; - sha256 = - "ff26574b5ab5a6cf1f9aaa1369c2b9880bce2cf53b261a65160fdf9b4e11a361"; - }; - beamDeps = [ - timex_1_0_0_rc4 - parallel_0_0_3 - httpoison_0_8_2 - floki_0_8_0 - codepagex_0_1_2 - ]; - - meta = { - description = ''Scrape any website, article or RSS/Atom feed with - ease!''; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/Anonyfox/elixir-scrape"; - }; - } - ) {}; - - scrape = scrape_1_0_4; - - scrivener_1_1_2 = callPackage - ( - { buildMix, fetchHex, postgrex_0_11_1, ecto_2_0_0_beta_2 }: - buildMix { - name = "scrivener"; - version = "1.1.2"; - src = fetchHex { - pkg = "scrivener"; - version = "1.1.2"; - sha256 = - "9be46bdce0d8179ece431226eb9eddbe13bc158d647a3daee64a49bc26ca9dcf"; - }; - beamDeps = [ postgrex_0_11_1 ecto_2_0_0_beta_2 ]; - - meta = { - description = ''Paginate your Ecto queries''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/drewolson/scrivener"; - }; - } - ) {}; - - scrivener = scrivener_1_1_2; - - scrivener_headers_1_0_1 = callPackage - ( - { buildMix, fetchHex, scrivener_1_1_2, plug_1_1_3 }: - buildMix { - name = "scrivener_headers"; - version = "1.0.1"; - src = fetchHex { - pkg = "scrivener_headers"; - version = "1.0.1"; - sha256 = - "2b004352dc5f394b33d4414ce9ebf379db7a9c4b1c92130d73a52e0a16efc93f"; - }; - beamDeps = [ scrivener_1_1_2 plug_1_1_3 ]; - - meta = { - description = ''Helpers for paginating API responses with - Scrivener and HTTP headers''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/doomspork/scrivener_headers"; - }; - } - ) {}; - - scrivener_headers = scrivener_headers_1_0_1; - - scrivener_html_1_0_9 = callPackage - ( - { - buildMix, - fetchHex, - scrivener_1_1_2, - phoenix_html_2_5_1, - phoenix_1_1_4 - }: - buildMix { - name = "scrivener_html"; - version = "1.0.9"; - src = fetchHex { - pkg = "scrivener_html"; - version = "1.0.9"; - sha256 = - "e65645698e35463e1f0f553f76bf24d47a905870837b7c7544220d3e71c3a23b"; - }; - beamDeps = [ scrivener_1_1_2 phoenix_html_2_5_1 phoenix_1_1_4 ]; - - meta = { - description = ''HTML helpers for Scrivener''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/mgwidmann/scrivener_html"; - }; - } - ) {}; - - scrivener_html = scrivener_html_1_0_9; - seat_json_0_0_18 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "seat_json"; version = "0.0.18"; src = fetchHex { @@ -42277,120 +25070,15 @@ let description = ''Simple Elixir Api Testing lib''; }; - } + } // packageOverrides) ) {}; seat_json = seat_json_0_0_18; - sec_company_filings_rss_feed_parser_0_0_2 = callPackage - ( - { buildMix, fetchHex, floki_0_7_2 }: - buildMix { - name = "sec_company_filings_rss_feed_parser"; - version = "0.0.2"; - src = fetchHex { - pkg = "sec_company_filings_rss_feed_parser"; - version = "0.0.2"; - sha256 = - "b9c07c900a0afd5d8b4df68d4673d6fbb30ff50fe93579bab5133b748dde90a2"; - }; - beamDeps = [ floki_0_7_2 ]; - - meta = { - longDescription = ''XML Parser for a Company`s SEC Filings Feed - An example of such a feed can be found here: - https://www.sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=0001418091&CIK=0001418091&type=&dateb=&owner=exclude&start=0&count=40&output=atom''; - license = stdenv.lib.licenses.mit; - homepage = - "https://github.com/vikram7/sec_company_filings_rss_feed_parser"; - }; - } - ) {}; - - sec_company_filings_rss_feed_parser = - sec_company_filings_rss_feed_parser_0_0_2; - - sec_recent_filings_rss_feed_parser_0_0_3 = callPackage - ( - { buildMix, fetchHex, floki_0_7_2 }: - buildMix { - name = "sec_recent_filings_rss_feed_parser"; - version = "0.0.3"; - src = fetchHex { - pkg = "sec_recent_filings_rss_feed_parser"; - version = "0.0.3"; - sha256 = - "e58bc230abd16e972fc49e25db63afd5d2b7aa5b03c9c2d31f03bbd311ec7cee"; - }; - beamDeps = [ floki_0_7_2 ]; - - meta = { - longDescription = ''XML Parser for the SEC`s Latest Filings Feed - An example of such a feed can be found here: - https://www.sec.gov/cgi-bin/browse-edgar?action=getcurrent&CIK=&type=10-K&company=&dateb=&owner=include&start=0&count=40&output=atom''; - license = stdenv.lib.licenses.mit; - homepage = - "https://github.com/vikram7/sec_latest_filings_rss_feed_parser"; - }; - } - ) {}; - - sec_recent_filings_rss_feed_parser = - sec_recent_filings_rss_feed_parser_0_0_3; - - secure_headers_0_0_1 = callPackage - ( - { buildMix, fetchHex, plug_1_1_3, pipe_0_0_2 }: - buildMix { - name = "secure_headers"; - version = "0.0.1"; - src = fetchHex { - pkg = "secure_headers"; - version = "0.0.1"; - sha256 = - "df5ffa08c91a270da9a167edac6181c87a8467e7c98d65651bd6b1c928e75cb1"; - }; - beamDeps = [ plug_1_1_3 pipe_0_0_2 ]; - - meta = { - description = ''HTTP Security Headers for Phoenix or Plug''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/anotherhale/secure_headers"; - }; - } - ) {}; - - secure_headers = secure_headers_0_0_1; - - secure_password_0_4_0 = callPackage - ( - { buildMix, fetchHex, ecto_0_2_7, comeonin_2_3_0 }: - buildMix { - name = "secure_password"; - version = "0.4.0"; - src = fetchHex { - pkg = "secure_password"; - version = "0.4.0"; - sha256 = - "b4f0ffe0bbac3e629356fa508438c23b6a99f6aac17a6b1f6314250e2c5a9a68"; - }; - beamDeps = [ ecto_0_2_7 comeonin_2_3_0 ]; - - meta = { - description = ''A port of Rails has_secure_password for Ecto - models''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/tuvistavie/ecto-secure-password"; - }; - } - ) {}; - - secure_password = secure_password_0_4_0; - secure_random_0_1_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "secure_random"; version = "0.1.1"; src = fetchHex { @@ -42407,13 +25095,13 @@ let homepage = "https://github.com/patricksrobertson/secure_random.ex"; }; - } + } // packageOverrides) ) {}; secure_random_0_2_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "secure_random"; version = "0.2.0"; src = fetchHex { @@ -42430,15 +25118,21 @@ let homepage = "https://github.com/patricksrobertson/secure_random.ex"; }; - } + } // packageOverrides) ) {}; secure_random = secure_random_0_2_0; segment_0_1_0 = callPackage ( - { buildMix, fetchHex, poison_1_3_1, httpotion_2_2_2 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_3_1, + httpotion_2_2_2 + }: + buildMix ({ name = "segment"; version = "0.1.0"; src = fetchHex { @@ -42454,40 +25148,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/stueccles/analytics-elixir"; }; - } + } // packageOverrides) ) {}; segment = segment_0_1_0; - select_0_0_1 = callPackage - ( - { buildMix, fetchHex, mochiweb_2_12_2 }: - buildMix { - name = "select"; - version = "0.0.1"; - src = fetchHex { - pkg = "select"; - version = "0.0.1"; - sha256 = - "9f579c2f342b51f6e42d414110a889c8b6a4430e49697b724ccdbbf8265853e9"; - }; - beamDeps = [ mochiweb_2_12_2 ]; - - meta = { - longDescription = ''An Elixir library to extract useful data from - HTML documents, suitable for web scraping.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/utkarshkukreti/select.ex"; - }; - } - ) {}; - - select = select_0_0_1; - semver_0_1_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "semver"; version = "0.1.2"; src = fetchHex { @@ -42503,41 +25172,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/lee-dohm/semver"; }; - } + } // packageOverrides) ) {}; semver = semver_0_1_2; - sendgrid_0_0_2 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "sendgrid"; - version = "0.0.2"; - src = fetchHex { - pkg = "sendgrid"; - version = "0.0.2"; - sha256 = - "b9f27a1ae636688941998174b8595d9a5a4b24b870019f8a0009202f919bf151"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''A wrapper for SendGrid`s API to create composable - emails.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/alexgaribay/sendgrid_elixir -"; - }; - } - ) {}; - - sendgrid = sendgrid_0_0_2; - sentient_0_0_2 = callPackage ( - { buildMix, fetchHex, poison_1_5_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, poison_1_5_2 }: + buildMix ({ name = "sentient"; version = "0.0.2"; src = fetchHex { @@ -42553,196 +25196,15 @@ let wordlist''; }; - } + } // packageOverrides) ) {}; sentient = sentient_0_0_2; - sentinel_0_1_0 = callPackage - ( - { - buildMix, - fetchHex, - ueberauth_0_2_0, - secure_random_0_2_0, - postgrex_0_11_1, - phoenix_1_1_4, - jose_1_7_3, - guardian_db_0_4_0, - guardian_0_10_1, - ex_doc_0_11_4, - ecto_2_0_0_beta_2, - earmark_0_2_1, - cowboy_1_0_4, - comeonin_2_3_0 - }: - buildMix { - name = "sentinel"; - version = "0.1.0"; - src = fetchHex { - pkg = "sentinel"; - version = "0.1.0"; - sha256 = - "8fd20d50c00a9a431308e13aac5910e46d44b347e9bb5147f83da25c768bff82"; - }; - beamDeps = [ - ueberauth_0_2_0 - secure_random_0_2_0 - postgrex_0_11_1 - phoenix_1_1_4 - jose_1_7_3 - guardian_db_0_4_0 - guardian_0_10_1 - ex_doc_0_11_4 - ecto_2_0_0_beta_2 - earmark_0_2_1 - cowboy_1_0_4 - comeonin_2_3_0 - ]; - - meta = { - longDescription = ''Adds helpful extras to Guardian like default - mailer support, as well as out of the box - controllers and routes''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/britton-jb/sentinel"; - }; - } - ) {}; - - sentinel = sentinel_0_1_0; - - sentry_0_3_2 = callPackage - ( - { buildMix, fetchHex, ecto_2_0_0_beta_2, comeonin_1_6_0 }: - buildMix { - name = "sentry"; - version = "0.3.2"; - src = fetchHex { - pkg = "sentry"; - version = "0.3.2"; - sha256 = - "fd4aa8c6b5d51b85e452a01292fbd437dfbfc5d37515c13f4a9a94441dc89609"; - }; - beamDeps = [ ecto_2_0_0_beta_2 comeonin_1_6_0 ]; - - meta = { - description = ''Simplified authentication and authorization - package for Phoenix''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/imranismail/sentry"; - }; - } - ) {}; - - sentry = sentry_0_3_2; - - sequences_1_1_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "sequences"; - version = "1.1.0"; - src = fetchHex { - pkg = "sequences"; - version = "1.1.0"; - sha256 = - "e087e078b8813052213d0812b4fe1d8ffbdbdf7d6379c174b78cfd22b9058fb0"; - }; - - meta = { - longDescription = ''The Sequences module defines multiple methods - that return a Stream of numbers, usually - integers. The different Streams can be tapped in - on-demand, by running any `Enum` function on - them. For efficiency, these sequences are - calculated in a way that re-uses previously - calculated results whenever possible. List of - included sequences: • - Sequences.integers(start, step): a helper - function to create any kind of lazy integer - sequence with a regular step distance. • - Sequences.integers • - Sequences.positive_integers • - Sequences.odd_integers • - Sequences.even_integers • Sequences.zeroes • - Sequences.ones • Sequences.factorials • - Sequences.fibonacci • Sequences.catalan • - Sequences.triangular • Sequences.primes • - Sequences.squareroot_tuple(n): Returns a tuple - with an integer part (single integer number) and - decimal part (digit stream) • - Sequences.squareroot_tuple(n, num_of_digits): - Returns a tuple with an integer part (single - integer number) and decimal part (digit list - with given length) • - Sequences.squareroot_decimals(n): Returns - decimal stream of the decimal expansion of a - square root. • - Sequences.squareroot_expansion/1: Returns a - digit stream of the decimal expansion of a - square root, including the digits of the - integral part at the front.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/Qqwy/elixir-sequences"; - }; - } - ) {}; - - sequences = sequences_1_1_0; - - serial_0_1_2 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "serial"; - version = "0.1.2"; - src = fetchHex { - pkg = "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; - - service_1_5_1 = callPackage - ( - { buildRebar3, fetchHex, cloudi_core_1_5_1 }: - buildRebar3 { - name = "service"; - version = "1.5.1"; - src = fetchHex { - pkg = "service"; - version = "1.5.1"; - sha256 = - "283d29bee5e2170a08c1eccb87f89368e9ce831cc52fb0715ed811f43847d2f8"; - }; - - beamDeps = [ cloudi_core_1_5_1 ]; - - meta = { - description = ''Erlang/Elixir Cloud Framework Service Behavior''; - license = stdenv.lib.licenses.bsd3; - homepage = "http://cloudi.org"; - }; - } - ) {}; - - service = service_1_5_1; - setup_1_7_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "setup"; version = "1.7.0"; src = fetchHex { @@ -42758,15 +25220,15 @@ let license = stdenv.lib.licenses.apsl20; homepage = "https://github.com/uwiger/setup"; }; - } + } // packageOverrides) ) {}; setup = setup_1_7_0; sfmt_0_12_7 = callPackage ( - { buildErlangMk, fetchHex }: - buildErlangMk { + { buildErlangMk, packageOverrides ? {}, fetchHex }: + buildErlangMk ({ name = "sfmt"; version = "0.12.7"; src = fetchHex { @@ -42782,13 +25244,13 @@ let license = stdenv.lib.licenses.bsd2; homepage = "https://github.com/jj1bdx/sfmt-erlang/"; }; - } + } // packageOverrides) ) {}; sfmt_0_13_0 = callPackage ( - { buildErlangMk, fetchHex }: - buildErlangMk { + { buildErlangMk, packageOverrides ? {}, fetchHex }: + buildErlangMk ({ name = "sfmt"; version = "0.13.0"; src = fetchHex { @@ -42804,15 +25266,15 @@ let license = stdenv.lib.licenses.bsd2; homepage = "https://github.com/jj1bdx/sfmt-erlang/"; }; - } + } // packageOverrides) ) {}; sfmt = sfmt_0_13_0; sfsobject_0_0_3 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "sfsobject"; version = "0.0.3"; src = fetchHex { @@ -42827,15 +25289,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/splattael/sfsobject"; }; - } + } // packageOverrides) ) {}; sfsobject = sfsobject_0_0_3; sh_1_1_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "sh"; version = "1.1.2"; src = fetchHex { @@ -42850,15 +25312,15 @@ let license = stdenv.lib.licenses.unlicense; homepage = "https://github.com/devinus/sh"; }; - } + } // packageOverrides) ) {}; sh = sh_1_1_2; shameless_plug_1_0_0 = callPackage ( - { buildMix, fetchHex, plug_1_1_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ name = "shameless_plug"; version = "1.0.0"; src = fetchHex { @@ -42870,20 +25332,20 @@ let beamDeps = [ plug_1_1_3 ]; meta = { - description = ''A novelty Plug to remove the word "shame" from + 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "shape"; version = "0.0.2"; src = fetchHex { @@ -42899,15 +25361,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/prio/shape"; }; - } + } // packageOverrides) ) {}; shape = shape_0_0_2; short_maps_0_1_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "short_maps"; version = "0.1.1"; src = fetchHex { @@ -42923,15 +25385,17 @@ let 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, fetchHex, gun_1_0_0_pre_1 }: - buildErlangMk { + { + buildErlangMk, packageOverrides ? {}, fetchHex, gun_1_0_0_pre_1 + }: + buildErlangMk ({ name = "shotgun"; version = "0.2.2"; src = fetchHex { @@ -42947,13 +25411,19 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/inaka/shotgun"; }; - } + } // packageOverrides) ) {}; shotgun_0_2_3 = callPackage ( - { buildErlangMk, fetchHex, gun_1_0_0_pre_1, cowlib_1_0_2 }: - buildErlangMk { + { + buildErlangMk, + packageOverrides ? {}, + fetchHex, + gun_1_0_0_pre_1, + cowlib_1_0_2 + }: + buildErlangMk ({ name = "shotgun"; version = "0.2.3"; src = fetchHex { @@ -42969,15 +25439,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/inaka/shotgun"; }; - } + } // packageOverrides) ) {}; shotgun = shotgun_0_2_3; shouldi_0_3_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "shouldi"; version = "0.3.0"; src = fetchHex { @@ -42993,15 +25463,21 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/batate/shouldi"; }; - } + } // packageOverrides) ) {}; shouldi = shouldi_0_3_0; shove_0_0_1 = callPackage ( - { buildMix, fetchHex, poolboy_1_5_1, poison_1_5_2 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + poolboy_1_5_1, + poison_1_5_2 + }: + buildMix ({ name = "shove"; version = "0.0.1"; src = fetchHex { @@ -43017,15 +25493,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/bratsche/shove"; }; - } + } // packageOverrides) ) {}; shove = shove_0_0_1; shrivel_0_0_3 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "shrivel"; version = "0.0.3"; src = fetchHex { @@ -43040,15 +25516,15 @@ let homepage = "https://github.com/Qeaql/shrivel"; }; - } + } // packageOverrides) ) {}; shrivel = shrivel_0_0_3; sidejob_2_0_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "sidejob"; version = "2.0.0"; src = fetchHex { @@ -43076,15 +25552,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/basho/sidejob"; }; - } + } // packageOverrides) ) {}; sidejob = sidejob_2_0_0; sideshow_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "sideshow"; version = "0.0.1"; src = fetchHex { @@ -43099,15 +25575,15 @@ let license = stdenv.lib.licenses.gpl3; homepage = "https://github.com/pavlos/sideshow"; }; - } + } // packageOverrides) ) {}; sideshow = sideshow_0_0_1; sidetask_1_1_0 = callPackage ( - { buildMix, fetchHex, sidejob_2_0_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, sidejob_2_0_0 }: + buildMix ({ name = "sidetask"; version = "1.1.0"; src = fetchHex { @@ -43132,15 +25608,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/MSch/sidetask"; }; - } + } // packageOverrides) ) {}; sidetask = sidetask_1_1_0; signaturex_1_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "signaturex"; version = "1.0.1"; src = fetchHex { @@ -43156,15 +25632,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/edgurgel/signaturex"; }; - } + } // packageOverrides) ) {}; signaturex = signaturex_1_0_1; simetric_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "simetric"; version = "0.1.0"; src = fetchHex { @@ -43181,15 +25657,15 @@ let license = stdenv.lib.licenses.isc; homepage = "https://github.com/lexmag/simetric"; }; - } + } // packageOverrides) ) {}; simetric = simetric_0_1_0; simple_agent_0_0_7 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "simple_agent"; version = "0.0.7"; src = fetchHex { @@ -43206,15 +25682,15 @@ let homepage = "https://github.com/TheFirstAvenger/elixir-simple_agent.git"; }; - } + } // packageOverrides) ) {}; simple_agent = simple_agent_0_0_7; simple_bar_0_0_7 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "simple_bar"; version = "0.0.7"; src = fetchHex { @@ -43229,39 +25705,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/jeffreybaird/simple_bar"; }; - } + } // packageOverrides) ) {}; simple_bar = simple_bar_0_0_7; - simple_format_0_1_0 = callPackage - ( - { buildMix, fetchHex, phoenix_html_2_5_1 }: - buildMix { - name = "simple_format"; - version = "0.1.0"; - src = fetchHex { - pkg = "simple_format"; - version = "0.1.0"; - sha256 = - "747cc74f743f89bcced219282f8639743f679b65183defecc7721f46e31dfcd0"; - }; - beamDeps = [ phoenix_html_2_5_1 ]; - - meta = { - description = ''Rail`s simple_format helper for Phoenix.HTML''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/michalmuskala/simple_format"; - }; - } - ) {}; - - simple_format = simple_format_0_1_0; - simple_secrets_1_0_0 = callPackage ( - { buildMix, fetchHex, pkcs7_1_0_2, msgpax_0_8_2 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + pkcs7_1_0_2, + msgpax_0_8_2 + }: + buildMix ({ name = "simple_secrets"; version = "1.0.0"; src = fetchHex { @@ -43278,7 +25736,7 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/camshaft/simple_secrets_ex"; }; - } + } // packageOverrides) ) {}; simple_secrets = simple_secrets_1_0_0; @@ -43287,6 +25745,7 @@ let ( { buildMix, + packageOverrides ? {}, fetchHex, timex_1_0_2, sweet_xml_0_6_1, @@ -43294,7 +25753,7 @@ let ibrowse_4_2_2, httpotion_2_2_2 }: - buildMix { + buildMix ({ name = "simplex"; version = "0.4.0"; src = fetchHex { @@ -43317,42 +25776,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/adamkittelson/simplex"; }; - } + } // packageOverrides) ) {}; simplex = simplex_0_4_0; - simplify_0_2_0 = callPackage - ( - { buildMix, fetchHex, poison_2_1_0, geo_1_0_1, distance_0_1_2 }: - buildMix { - name = "simplify"; - version = "0.2.0"; - src = fetchHex { - pkg = "simplify"; - version = "0.2.0"; - sha256 = - "1b1af67f19e3a6589361665f4ca80e27873107bc9ef579e08fce43e52f62cffd"; - }; - beamDeps = [ poison_2_1_0 geo_1_0_1 distance_0_1_2 ]; - - meta = { - longDescription = ''Implementation of the - Ramer–Douglas–Peucker algorithm for reducing - the number of points used to represent a - curve.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/pkinney/simplify_ex"; - }; - } - ) {}; - - simplify = simplify_0_2_0; - simpre_0_1_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "simpre"; version = "0.1.0"; src = fetchHex { @@ -43367,69 +25799,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/yuce/simpre.git"; }; - } + } // packageOverrides) ) {}; simpre = simpre_0_1_0; - siphash_3_0_0 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "siphash"; - version = "3.0.0"; - src = fetchHex { - pkg = "siphash"; - version = "3.0.0"; - sha256 = - "91b8efc8f3e26713c1bb91a91c9b6a8f6a5f949986622b1d548e8fee1cde7347"; - }; - - meta = { - description = ''Elixir implementation of the SipHash hash - family''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/zackehh/siphash-elixir"; - }; - } - ) {}; - - siphash = siphash_3_0_0; - - sips_downloader_0_2_2 = callPackage - ( - { - buildMix, - fetchHex, - httpoison_0_8_2, - html_entities_0_3_0, - floki_0_8_0 - }: - buildMix { - name = "sips_downloader"; - version = "0.2.2"; - src = fetchHex { - pkg = "sips_downloader"; - version = "0.2.2"; - sha256 = - "358d10e61f2d8b03e644194d09f1ca6c9c339bb9c80371eba21576571a857f94"; - }; - beamDeps = [ httpoison_0_8_2 html_entities_0_3_0 floki_0_8_0 ]; - - meta = { - description = ''Automatically download new ElixirSips episodes''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/DavsX/SipsDownloader"; - }; - } - ) {}; - - sips_downloader = sips_downloader_0_2_2; - skills_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "skills"; version = "0.0.1"; src = fetchHex { @@ -43445,185 +25823,15 @@ let license = stdenv.lib.licenses.mpl20; homepage = "https://github.com/folz/skills.ex"; }; - } + } // packageOverrides) ) {}; skills = skills_0_0_1; - skroutz_0_1_0 = callPackage - ( - { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: - buildMix { - name = "skroutz"; - version = "0.1.0"; - src = fetchHex { - pkg = "skroutz"; - version = "0.1.0"; - sha256 = - "af54cd490adf503f378f57806b4c12bbd2506fa24f6e4f7c1cbceaf8c86d2b51"; - }; - beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; - - meta = { - description = ''Elixir library for accessing the Skroutz API''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/skroutz/skroutz.ex"; - }; - } - ) {}; - - skroutz = skroutz_0_1_0; - - slack_0_3_0 = callPackage - ( - { buildMix, fetchHex, httpoison_0_7_5, exjsx_3_1_0 }: - buildMix { - name = "slack"; - version = "0.3.0"; - src = fetchHex { - pkg = "slack"; - version = "0.3.0"; - sha256 = - "43983932db6460a915822e12a0d499df5380804184bae3c170f9f918670f5454"; - }; - beamDeps = [ httpoison_0_7_5 exjsx_3_1_0 ]; - - meta = { - description = ''A Slack Real Time Messaging API client.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/BlakeWilliams/Elixir-Slack"; - }; - } - ) {}; - - slack_0_4_2 = callPackage - ( - { buildMix, fetchHex, httpoison_0_8_2, exjsx_3_1_0 }: - buildMix { - name = "slack"; - version = "0.4.2"; - src = fetchHex { - pkg = "slack"; - version = "0.4.2"; - sha256 = - "a32ced7527706b6adaae428eb03836260bdcf560be6ef92662ea6ec1541e687f"; - }; - beamDeps = [ httpoison_0_8_2 exjsx_3_1_0 ]; - - meta = { - description = ''A Slack Real Time Messaging API client.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/BlakeWilliams/Elixir-Slack"; - }; - } - ) {}; - - slack = slack_0_4_2; - - slack_logger_backend_0_1_3 = callPackage - ( - { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: - buildMix { - name = "slack_logger_backend"; - version = "0.1.3"; - src = fetchHex { - pkg = "slack_logger_backend"; - version = "0.1.3"; - sha256 = - "12e9809e981abb0243f1fe72a4cb331142d9d3ce4425822c28f5b3d51ed7a5fe"; - }; - beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; - - meta = { - description = ''A logger backend for posting errors to Slack.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/craigp/slack_logger_backend"; - }; - } - ) {}; - - slack_logger_backend = slack_logger_backend_0_1_3; - - slack_webhook_0_0_2 = callPackage - ( - { buildMix, fetchHex, httpoison_0_7_5 }: - buildMix { - name = "slack_webhook"; - version = "0.0.2"; - src = fetchHex { - pkg = "slack_webhook"; - version = "0.0.2"; - sha256 = - "7099c22a5b07fd47914a5336469e3696ebe5d5402798ba1e06eec7287d5551ad"; - }; - beamDeps = [ httpoison_0_7_5 ]; - - meta = { - description = ''Sends simple messages to Slack channel using - webhook API.''; - license = stdenv.lib.licenses.cc0; - homepage = "https://github.com/remiq/slack_webhook"; - }; - } - ) {}; - - slack_webhook = slack_webhook_0_0_2; - - slacker_0_0_2 = callPackage - ( - { - buildMix, fetchHex, poison_1_5_2, inflex_1_0_0, httpoison_0_8_2 - }: - buildMix { - name = "slacker"; - version = "0.0.2"; - src = fetchHex { - pkg = "slacker"; - version = "0.0.2"; - sha256 = - "4d3a110772e7b273a6d771bf4bc869fd13cb3bb9e99bca8f038e58d384f0ef1b"; - }; - beamDeps = [ poison_1_5_2 inflex_1_0_0 httpoison_0_8_2 ]; - - meta = { - description = ''A bot library for the Slack chat service.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/koudelka/slacker"; - }; - } - ) {}; - - slacker = slacker_0_0_2; - - slackex_0_0_1 = callPackage - ( - { buildMix, fetchHex, httpoison_0_8_2, exjsx_3_2_0 }: - buildMix { - name = "slackex"; - version = "0.0.1"; - src = fetchHex { - pkg = "slackex"; - version = "0.0.1"; - sha256 = - "bdd1d523cd576ff054ed3eee4efe22eee87ded127054332ca5a3bc1d6a997f33"; - }; - beamDeps = [ httpoison_0_8_2 exjsx_3_2_0 ]; - - meta = { - longDescription = ''A Slack wrapper for Elixir Requires an active - account with Slack (http://slack.com).''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/davidstump/slackex"; - }; - } - ) {}; - - slackex = slackex_0_0_1; - slim_fast_0_10_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "slim_fast"; version = "0.10.0"; src = fetchHex { @@ -43639,15 +25847,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "slime"; version = "0.12.2"; src = fetchHex { @@ -43663,40 +25871,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/slime-lang/slime"; }; - } + } // packageOverrides) ) {}; slime = slime_0_12_2; - slp_0_0_2 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "slp"; - version = "0.0.2"; - src = fetchHex { - pkg = "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; - slugerl_1_0_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "slugerl"; version = "1.0.0"; src = fetchHex { @@ -43706,20 +25889,23 @@ let "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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "slugger"; version = "0.1.0"; src = fetchHex { @@ -43736,39 +25922,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/h4cc/slugger"; }; - } + } // packageOverrides) ) {}; slugger = slugger_0_1_0; - smex_0_0_1 = callPackage - ( - { buildMix, fetchHex, murmur_0_2_1, amqp_0_1_4 }: - buildMix { - name = "smex"; - version = "0.0.1"; - src = fetchHex { - pkg = "smex"; - version = "0.0.1"; - sha256 = - "3a84a2b3b3f09965bb0c2d57d04ba435b33c47319ee308feb4a182ddd9e69867"; - }; - beamDeps = [ murmur_0_2_1 amqp_0_1_4 ]; - - meta = { - description = ''An Elixir library for simplifying the sending of - protocol buffers over rabbitmq.''; - - }; - } - ) {}; - - smex = smex_0_0_1; - smurf_0_1_3 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "smurf"; version = "0.1.3"; src = fetchHex { @@ -43783,132 +25945,17 @@ let license = stdenv.lib.licenses.cddl; homepage = "https://github.com/project-fifo/smurf"; }; - } + } // packageOverrides) ) {}; smurf = smurf_0_1_3; - snappy_1_1_1 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "snappy"; - version = "1.1.1"; - src = fetchHex { - pkg = "snappy"; - version = "1.1.1"; - sha256 = - "7faed3ec6bcac363c2a6f09b4f000a12c8166b42b3bf70228d532f8afcfbcb6a"; - }; - compilePorts = true; - - meta = { - description = ''snappy compressor/decompressor Erlang NIF - wrapper''; - - homepage = "https://github.com/barrel-db/snappy"; - }; - } - ) {}; - - snappy = snappy_1_1_1; - - snowflake_client_0_1_1 = callPackage - ( - { buildMix, fetchHex, oauth2_0_6_0 }: - buildMix { - name = "snowflake_client"; - version = "0.1.1"; - src = fetchHex { - pkg = "snowflake_client"; - version = "0.1.1"; - sha256 = - "94b21c7ad47775ef5853399e22ba2f8a91d8e174ca3a1da4e2fea05dfad12459"; - }; - beamDeps = [ oauth2_0_6_0 ]; - - meta = { - description = ''A OAuth 2.0 client for Snowflake.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/IoraHealth/snowflake_client"; - }; - } - ) {}; - - snowflake_client = snowflake_client_0_1_1; - - socket_0_2_8 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "socket"; - version = "0.2.8"; - src = fetchHex { - pkg = "socket"; - version = "0.2.8"; - sha256 = - "dc711caa318c31eea35e0cfec62e9a376fda6c1365356de59d9a78a4ebb635c9"; - }; - - meta = { - description = ''Socket handling library for Elixir''; - license = stdenv.lib.licenses.wtfpl; - homepage = "https://github.com/meh/elixir-socket"; - }; - } - ) {}; - - socket_0_3_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "socket"; - version = "0.3.1"; - src = fetchHex { - pkg = "socket"; - version = "0.3.1"; - sha256 = - "f016b4e0c2643926cce846b6a744b0cd7c8352106052dcb7c396bf1b7f55d21c"; - }; - - meta = { - description = ''Socket handling library for Elixir''; - license = stdenv.lib.licenses.wtfpl; - homepage = "https://github.com/meh/elixir-socket"; - }; - } - ) {}; - - socket = socket_0_3_1; - - sonic_0_1_3 = callPackage - ( - { buildMix, fetchHex, poison_2_1_0, hackney_1_6_0 }: - buildMix { - name = "sonic"; - version = "0.1.3"; - src = fetchHex { - pkg = "sonic"; - version = "0.1.3"; - sha256 = - "2bf88f0e86cf04db4b426569153f26fd41f6202aee1e9175e0a242eb5a0a0586"; - }; - beamDeps = [ poison_2_1_0 hackney_1_6_0 ]; - - meta = { - description = ''etcd library and bindings for Elixir.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/heroiclabs/sonic"; - }; - } - ) {}; - - sonic = sonic_0_1_3; - sorted_set_1_1_0 = callPackage ( - { buildMix, fetchHex, red_black_tree_1_2_0 }: - buildMix { + { + buildMix, packageOverrides ? {}, fetchHex, red_black_tree_1_2_0 + }: + buildMix ({ name = "sorted_set"; version = "1.1.0"; src = fetchHex { @@ -43924,15 +25971,15 @@ let 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, fetchHex, poison_2_1_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, poison_2_1_0 }: + buildMix ({ name = "spaceapi"; version = "0.1.2"; src = fetchHex { @@ -43949,40 +25996,21 @@ let license = with stdenv.lib.licenses; [ mit gpl3 ]; homepage = "https://github.com/geistesk/spaceapi"; }; - } + } // packageOverrides) ) {}; spaceapi = spaceapi_0_1_2; - spaced_repetitions_0_0_1 = callPackage - ( - { buildMix, fetchHex, timex_0_16_2 }: - buildMix { - name = "spaced_repetitions"; - version = "0.0.1"; - src = fetchHex { - pkg = "spaced_repetitions"; - version = "0.0.1"; - sha256 = - "67e846a7fe32d7ab5b10373dd9f80eccccacc05ad2b9f3e6ca3de09da8b8abc5"; - }; - beamDeps = [ timex_0_16_2 ]; - - meta = { - description = ''Spaced repetitions library with basic sm2 - implementation''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/mrluc/exreps"; - }; - } - ) {}; - - spaced_repetitions = spaced_repetitions_0_0_1; - spacesaving_0_0_3 = callPackage ( - { buildMix, fetchHex, earmark_0_2_1, dialyze_0_2_1 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + earmark_0_2_1, + dialyze_0_2_1 + }: + buildMix ({ name = "spacesaving"; version = "0.0.3"; src = fetchHex { @@ -43995,19 +26023,25 @@ let meta = { description = ''stream count distinct element estimation using - the "space saving" algorithm.''; + 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, fetchHex, poison_1_5_2, httpotion_2_2_2 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_5_2, + httpotion_2_2_2 + }: + buildMix ({ name = "sparkpost"; version = "0.1.0"; src = fetchHex { @@ -44024,59 +26058,21 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/SparkPost/elixir-sparkpost"; }; - } + } // packageOverrides) ) {}; sparkpost = sparkpost_0_1_0; - spawndir_0_1_1 = callPackage - ( - { buildMix, fetchHex, exrm_0_14_2 }: - buildMix { - name = "spawndir"; - version = "0.1.1"; - src = fetchHex { - pkg = "spawndir"; - version = "0.1.1"; - sha256 = - "c407c9eb1f6f8ebb622df28b2f19a34447add6555f87208446a458b60ea9750c"; - }; - beamDeps = [ exrm_0_14_2 ]; - - meta = { - longDescription = ''# SpawnDir Spawns commands from the file - system. This exists to provide a simple - mechanism for spawning and managing processes: - simply add an executable, or a symbolic link to - one, to a monitored directory. The config allows - arguments to be specified by file or directory. - While not as flexible as upstart, monit, et al., - SpawnDir`s use of the filesystem provides a - simpler UNIX-ish interface. ## Usage To use the - escript executable: ./spawndir DIR [ARGS ...] - where `DIR` is the directory to be monitored, - and each command will be started with the - supplied `ARGS` To run using mix: mix run - --no-halt You can configure what is watched via - the `:spawndir` application environment - variables: :default_opts :: [opt] :watch :: [cmd - | {cmd, [opt]}] where opt :: string() cmd :: - string() ## Future Additions - Check for - executable flag - Package installation - Monitor - filesystem for commands being added/removed - Copyright (c) Thomas Moulia, 2014 ''; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/jtmoulia/spawndir"; - }; - } - ) {}; - - spawndir = spawndir_0_1_1; - spell_0_1_0 = callPackage ( - { buildMix, fetchHex, poison_1_4_0, msgpax_0_8_2 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_1_4_0, + msgpax_0_8_2 + }: + buildMix ({ name = "spell"; version = "0.1.0"; src = fetchHex { @@ -44094,15 +26090,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/MyMedsAndMe/spell"; }; - } + } // packageOverrides) ) {}; spell = spell_0_1_0; spf_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "spf"; version = "0.0.1"; src = fetchHex { @@ -44117,15 +26113,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/hex-sh/spf"; }; - } + } // packageOverrides) ) {}; spf = spf_0_0_1; spherical_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "spherical"; version = "0.0.1"; src = fetchHex { @@ -44140,65 +26136,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/arpunk/spherical"; }; - } + } // packageOverrides) ) {}; spherical = spherical_0_0_1; - spirit_0_0_1 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, plug_0_14_0, cowboy_1_0_4 }: - buildMix { - name = "spirit"; - version = "0.0.1"; - src = fetchHex { - pkg = "spirit"; - version = "0.0.1"; - sha256 = - "ffaa22ccfd4999eacaee60464eb494bb9da597a8dad0dcad575fb506e06ee3b6"; - }; - beamDeps = [ poison_1_5_2 plug_0_14_0 cowboy_1_0_4 ]; - - meta = { - description = ''Elixir microframework for web development.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/emancu/spirit"; - }; - } - ) {}; - - spirit = spirit_0_0_1; - - spotify_ex_0_0_4 = callPackage - ( - { - buildMix, fetchHex, poison_1_5_2, plug_1_1_3, httpoison_0_8_2 - }: - buildMix { - name = "spotify_ex"; - version = "0.0.4"; - src = fetchHex { - pkg = "spotify_ex"; - version = "0.0.4"; - sha256 = - "f2e8647410096d34d9baecf8d9622896214320641ed72c11c711f9a463e4a961"; - }; - beamDeps = [ poison_1_5_2 plug_1_1_3 httpoison_0_8_2 ]; - - meta = { - description = ''An Elixir wrapper for Spotify API O-Auth.''; - license = stdenv.lib.licenses.mit; - homepage = "https://www.github.com/jsncmgs1/spotify_ex"; - }; - } - ) {}; - - spotify_ex = spotify_ex_0_0_4; - spout_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "spout"; version = "0.0.1"; src = fetchHex { @@ -44214,257 +26160,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/Stratus3D/Spout"; }; - } + } // packageOverrides) ) {}; spout = spout_0_0_1; - spreedly_0_1_1 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "spreedly"; - version = "0.1.1"; - src = fetchHex { - pkg = "spreedly"; - version = "0.1.1"; - sha256 = - "a8aa76698a4fe95cb4c5cb77be2cfc4e085685570aacb25382fffdca4c7e1a6f"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''A wrapper for the Spreedly API.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/duff/spreedly-elixir"; - }; - } - ) {}; - - spreedly = spreedly_0_1_1; - - sql_dust_0_3_2 = callPackage - ( - { buildMix, fetchHex, inflex_1_5_0, ecto_2_0_0_beta_2 }: - buildMix { - name = "sql_dust"; - version = "0.3.2"; - src = fetchHex { - pkg = "sql_dust"; - version = "0.3.2"; - sha256 = - "58282299f10ac2cd2684f043052e0186979cf886d2a9e788d0555d9ef19c7bad"; - }; - beamDeps = [ inflex_1_5_0 ecto_2_0_0_beta_2 ]; - - meta = { - longDescription = ''Easy. Simple. Powerful. Generate (complex) - SQL queries using magical Elixir SQL dust.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/bettyblocks/sql_dust"; - }; - } - ) {}; - - sql_dust = sql_dust_0_3_2; - - sqlite3_1_1_5 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "sqlite3"; - version = "1.1.5"; - src = fetchHex { - pkg = "sqlite3"; - version = "1.1.5"; - sha256 = - "fc2beb8b09deec6cf68bd6203ecf28bf827d2073915bc7131c9cd56d5ff27260"; - }; - compilePorts = true; - - meta = { - description = ''SQLite3 Interface''; - license = stdenv.lib.licenses.epl10; - homepage = "https://github.com/processone/erlang-sqlite3"; - }; - } - ) {}; - - sqlite3 = sqlite3_1_1_5; - - sqlite_ecto_0_5_0 = callPackage - ( - { - buildMix, fetchHex, sqlitex_0_8_3, poison_1_5_2, ecto_0_15_0 - }: - buildMix { - name = "sqlite_ecto"; - version = "0.5.0"; - src = fetchHex { - pkg = "sqlite_ecto"; - version = "0.5.0"; - sha256 = - "cb26ae002ee444aa9b12d680ec11570204ba128631ccd7d2d6d3aafcd521880e"; - }; - beamDeps = [ sqlitex_0_8_3 poison_1_5_2 ecto_0_15_0 ]; - - meta = { - description = ''SQLite3 adapter for Ecto''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/jazzyb/sqlite_ecto"; - }; - } - ) {}; - - sqlite_ecto_1_1_0 = callPackage - ( - { - buildMix, - fetchHex, - sqlitex_0_8_3, - poison_1_5_2, - ecto_2_0_0_beta_2 - }: - buildMix { - name = "sqlite_ecto"; - version = "1.1.0"; - src = fetchHex { - pkg = "sqlite_ecto"; - version = "1.1.0"; - sha256 = - "88951b424e909d8047f0d03c13418c321df9e94560ac30241d8b1f7e48f49201"; - }; - beamDeps = [ sqlitex_0_8_3 poison_1_5_2 ecto_2_0_0_beta_2 ]; - - meta = { - description = ''SQLite3 adapter for Ecto''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/jazzyb/sqlite_ecto"; - }; - } - ) {}; - - sqlite_ecto = sqlite_ecto_1_1_0; - - sqlitex_0_8_3 = callPackage - ( - { - buildMix, fetchHex, pipe_0_0_2, esqlite_0_2_2, decimal_1_1_1 - }: - buildMix { - name = "sqlitex"; - version = "0.8.3"; - src = fetchHex { - pkg = "sqlitex"; - version = "0.8.3"; - sha256 = - "44daaeb135178165d0a6cd6754e4af05e56e5d2943c0b1108df7df718745ec0f"; - }; - beamDeps = [ pipe_0_0_2 esqlite_0_2_2 decimal_1_1_1 ]; - - meta = { - description = ''A thin Elixir wrapper around esqlite''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/mmmries/sqlitex"; - }; - } - ) {}; - - sqlitex_1_0_0 = callPackage - ( - { buildMix, fetchHex, esqlite_0_2_2, decimal_1_1_1 }: - buildMix { - name = "sqlitex"; - version = "1.0.0"; - src = fetchHex { - pkg = "sqlitex"; - version = "1.0.0"; - sha256 = - "cbd7310e900841aa2dc6071b497330e730de1cd9618003006e0af48afb24d5f8"; - }; - beamDeps = [ esqlite_0_2_2 decimal_1_1_1 ]; - - meta = { - description = ''A thin Elixir wrapper around esqlite''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/mmmries/sqlitex"; - }; - } - ) {}; - - sqlitex = sqlitex_1_0_0; - - ssdb_0_3_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "ssdb"; - version = "0.3.0"; - src = fetchHex { - pkg = "ssdb"; - version = "0.3.0"; - sha256 = - "a6b71533949a38ef193ccded89d620d2b6808b1b55a2e0f16dae7e1abad9874f"; - }; - - meta = { - description = ''SSDB client for Elixir''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/lidashuang/ssdb-elixir"; - }; - } - ) {}; - - ssdb = ssdb_0_3_0; - - ssdb_elixir_0_2_2 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "ssdb_elixir"; - version = "0.2.2"; - src = fetchHex { - pkg = "ssdb_elixir"; - version = "0.2.2"; - sha256 = - "3aa4d2b90b4a4c0f73b1fec3e67b90dfee081bce4653f942a05857082b65bc99"; - }; - - meta = { - description = ''SSDB client for Elixir''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/lidashuang/ssdb_elixir"; - }; - } - ) {}; - - ssdb_elixir = ssdb_elixir_0_2_2; - - sshex_1_1_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "sshex"; - version = "1.1.0"; - src = fetchHex { - pkg = "sshex"; - version = "1.1.0"; - sha256 = - "4e4415547e9dde608d08bf7fff094b6705614a584089356ffbdb6f97821f49ff"; - }; - - meta = { - description = ''Simple SSH helpers for Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/rubencaro/sshex"; - }; - } - ) {}; - sshex_2_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "sshex"; version = "2.1.0"; src = fetchHex { @@ -44479,84 +26183,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/rubencaro/sshex"; }; - } + } // packageOverrides) ) {}; sshex = sshex_2_1_0; - ssl_verify_fun_1_1_0 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "ssl_verify_fun"; - version = "1.1.0"; - src = fetchHex { - pkg = "ssl_verify_fun"; - version = "1.1.0"; - sha256 = - "6c0e0d857fdb031ba67b0a791202bee116bea2313db7b649839000847591ba1e"; - }; - - meta = { - description = ''SSL verification functions for Erlang''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/deadtrickster/ssl_verify_fun.erl"; - }; - } - ) {}; - - ssl_verify_fun = ssl_verify_fun_1_1_0; - - ssl_verify_hostname_1_0_5 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "ssl_verify_hostname"; - version = "1.0.5"; - src = fetchHex { - pkg = "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 - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "ssl_verify_hostname"; - version = "1.0.6"; - src = fetchHex { - pkg = "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; - stackd_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "stackd"; version = "0.0.1"; src = fetchHex { @@ -44570,15 +26205,15 @@ let description = ''Stackd''; }; - } + } // packageOverrides) ) {}; stackd = stackd_0_0_1; stash_1_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "stash"; version = "1.0.0"; src = fetchHex { @@ -44593,15 +26228,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/zackehh/stash"; }; - } + } // packageOverrides) ) {}; stash = stash_1_0_0; stathat_0_0_3 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "stathat"; version = "0.0.3"; src = fetchHex { @@ -44616,39 +26251,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/travisjeffery/stathat"; }; - } + } // packageOverrides) ) {}; stathat = stathat_0_0_3; - statistics_0_4_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "statistics"; - version = "0.4.0"; - src = fetchHex { - pkg = "statistics"; - version = "0.4.0"; - sha256 = - "550390b85fcb32dcf2e3498b06076352aa332b0a5002830b0438bb3fdb8da37a"; - }; - - meta = { - description = ''Functions for descriptive statistics and common - distributions''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/msharp/elixir-statistics"; - }; - } - ) {}; - - statistics = statistics_0_4_0; - statix_0_7_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "statix"; version = "0.7.0"; src = fetchHex { @@ -44664,7 +26275,7 @@ let license = stdenv.lib.licenses.isc; homepage = "https://github.com/lexmag/statix"; }; - } + } // packageOverrides) ) {}; statix = statix_0_7_0; @@ -44673,13 +26284,14 @@ let ( { buildMix, + packageOverrides ? {}, fetchHex, porcelain_2_0_1, poolboy_1_5_1, poison_1_5_2, fs_0_9_2 }: - buildMix { + buildMix ({ name = "std_json_io"; version = "0.1.0"; src = fetchHex { @@ -44696,40 +26308,15 @@ let IO servers via JSON''; }; - } + } // packageOverrides) ) {}; std_json_io = std_json_io_0_1_0; - steamex_0_0_5 = callPackage - ( - { buildMix, fetchHex, sweet_xml_0_6_1, httpoison_0_8_2 }: - buildMix { - name = "steamex"; - version = "0.0.5"; - src = fetchHex { - pkg = "steamex"; - version = "0.0.5"; - sha256 = - "4a290c432c0480cf372fece76cc4f09e231261fda64ef5027e8855e16aa5a2f6"; - }; - beamDeps = [ sweet_xml_0_6_1 httpoison_0_8_2 ]; - - meta = { - description = ''Steam API and Auth (with Phoenix/Plug - integration) for Elixir''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/antipax/steamex"; - }; - } - ) {}; - - steamex = steamex_0_0_5; - stemex_0_1_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "stemex"; version = "0.1.1"; src = fetchHex { @@ -44749,15 +26336,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/awetzel/stemex"; }; - } + } // packageOverrides) ) {}; stemex = stemex_0_1_1; stillir_1_0_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "stillir"; version = "1.0.0"; src = fetchHex { @@ -44772,87 +26359,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/heroku/stillir"; }; - } + } // packageOverrides) ) {}; stillir = stillir_1_0_0; - stmd_0_0_2 = callPackage - ( - { buildMix, fetchHex, ex_doc_0_11_4, earmark_0_2_1 }: - buildMix { - name = "stmd"; - version = "0.0.2"; - src = fetchHex { - pkg = "stmd"; - version = "0.0.2"; - sha256 = - "3b45578da652e881b1974bbe836d9b8e0e8db8d6ef0042aee69340d5eaf2d9b3"; - }; - beamDeps = [ ex_doc_0_11_4 earmark_0_2_1 ]; - - meta = { - description = ''[DEPRECATED] New package: cmark''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/asaaki/cmark.ex"; - }; - } - ) {}; - - stmd = stmd_0_0_2; - - stockastic_0_0_2 = callPackage - ( - { buildMix, fetchHex, httpoison_0_8_2, exjsx_3_2_0 }: - buildMix { - name = "stockastic"; - version = "0.0.2"; - src = fetchHex { - pkg = "stockastic"; - version = "0.0.2"; - sha256 = - "f180915a21d4aa4a64f660696b77c5788334d4bae2639a58814565af0d75ca56"; - }; - beamDeps = [ httpoison_0_8_2 exjsx_3_2_0 ]; - - meta = { - description = ''Simple Elixir wrapper for the Stockfighter API''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/shanewilton/stockastic"; - }; - } - ) {}; - - stockastic = stockastic_0_0_2; - - stockfighter_0_0_1 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "stockfighter"; - version = "0.0.1"; - src = fetchHex { - pkg = "stockfighter"; - version = "0.0.1"; - sha256 = - "d72726cf055068e2b62ef9091ec17ab9292b60bc7f4a7306c17cad6d022a3bd7"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''a simple wrapper of stockfighter http api''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/lerencao/stockfighter"; - }; - } - ) {}; - - stockfighter = stockfighter_0_0_1; - stopwatch_0_0_7 = callPackage ( - { buildMix, fetchHex, timex_1_0_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, timex_1_0_2 }: + buildMix ({ name = "stopwatch"; version = "0.0.7"; src = fetchHex { @@ -44869,39 +26384,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/matteosister/stopwatch"; }; - } + } // packageOverrides) ) {}; stopwatch = stopwatch_0_0_7; - strava_0_0_1 = callPackage - ( - { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: - buildMix { - name = "strava"; - version = "0.0.1"; - src = fetchHex { - pkg = "strava"; - version = "0.0.1"; - sha256 = - "f0b50d8c65fe769c08fd97afc4e3039eb1d3d2eb324adf8a52aaaa93685723e2"; - }; - beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; - - meta = { - description = ''Elixir wrapper for the Strava API (V3)''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/slashdotdash/strava"; - }; - } - ) {}; - - strava = strava_0_0_1; - stream_runner_1_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "stream_runner"; version = "1.1.0"; src = fetchHex { @@ -44916,15 +26407,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "stream_weaver"; version = "0.0.2"; src = fetchHex { @@ -44938,15 +26429,15 @@ let description = ''Library for working with streams''; }; - } + } // packageOverrides) ) {}; stream_weaver = stream_weaver_0_0_2; strftimerl_0_1_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "strftimerl"; version = "0.1.1"; src = fetchHex { @@ -44961,15 +26452,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/gmr/strftimerl"; }; - } + } // packageOverrides) ) {}; strftimerl = strftimerl_0_1_1; strict_comparison_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "strict_comparison"; version = "0.0.1"; src = fetchHex { @@ -44985,119 +26476,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/antipax/strict_comparison"; }; - } + } // packageOverrides) ) {}; strict_comparison = strict_comparison_0_0_1; - stringprep_1_0_3 = callPackage - ( - { buildRebar3, fetchHex, p1_utils_1_0_3 }: - buildRebar3 { - name = "stringprep"; - version = "1.0.3"; - src = fetchHex { - pkg = "stringprep"; - version = "1.0.3"; - sha256 = - "140c8300f29e33649580d9d2416f6684b00f386f690c76cc275b7ee43c735074"; - }; - compilePorts = true; - beamDeps = [ p1_utils_1_0_3 ]; - - meta = { - description = ''Fast Stringprep Erlang / Elixir implementation''; - license = with stdenv.lib.licenses; [ asl20 free ]; - homepage = "https://github.com/processone/stringprep"; - }; - } - ) {}; - - stringprep = stringprep_1_0_3; - - stripe_0_0_1 = callPackage - ( - { buildMix, fetchHex, jazz_0_2_1, httpotion_2_2_2 }: - buildMix { - name = "stripe"; - version = "0.0.1"; - src = fetchHex { - pkg = "stripe"; - version = "0.0.1"; - sha256 = - "99f9920ce562109abb70a1998a4f6b5bcd07f5063237cf28dd81387163df3f02"; - }; - beamDeps = [ jazz_0_2_1 httpotion_2_2_2 ]; - - meta = { - longDescription = ''Wrapper around Stripe`s API. Full - documentation can be found at - https://stripe.com/docs/api ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/SenecaSystems/stripe"; - }; - } - ) {}; - - stripe = stripe_0_0_1; - - stripex_0_1_0 = callPackage - ( - { buildMix, fetchHex, gateway_0_0_6 }: - buildMix { - name = "stripex"; - version = "0.1.0"; - src = fetchHex { - pkg = "stripex"; - version = "0.1.0"; - sha256 = - "49959c78e677d3e30edd808cce7a013a7120f337705d0e2fd646c000d9b30853"; - }; - beamDeps = [ gateway_0_0_6 ]; - - meta = { - longDescription = ''A much more ruby-stripe-like wrapper around - Stripe`s API (built with Poison). Full - documentation can be found at - https://stripe.com/docs/api''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/foxnewsnetwork/stripex"; - }; - } - ) {}; - - stripex = stripex_0_1_0; - - stripity_stripe_1_4_0 = callPackage - ( - { - buildMix, fetchHex, poison_2_0_1, httpoison_0_8_2, hackney_1_4_10 - }: - buildMix { - name = "stripity_stripe"; - version = "1.4.0"; - src = fetchHex { - pkg = "stripity_stripe"; - version = "1.4.0"; - sha256 = - "1ba06bf31efd899c03c09f1b6faa3ca5da3f48571202c8999f8ea6e5ca47c02f"; - }; - beamDeps = [ poison_2_0_1 httpoison_0_8_2 hackney_1_4_10 ]; - - meta = { - description = ''A Stripe Library for Elixir''; - license = stdenv.lib.licenses.free; - homepage = "https://github.com/robconery/stripity-stripe"; - }; - } - ) {}; - - stripity_stripe = stripity_stripe_1_4_0; - struct_fields_0_3_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "struct_fields"; version = "0.3.0"; src = fetchHex { @@ -45113,158 +26500,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/nTraum/struct_fields"; }; - } + } // packageOverrides) ) {}; struct_fields = struct_fields_0_3_0; - structurez_0_0_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "structurez"; - version = "0.0.1"; - src = fetchHex { - pkg = "structurez"; - version = "0.0.1"; - sha256 = - "acacce1dfcd92854e75f891468c264689aa8223c21c88064f5c6883e11f3ae12"; - }; - - meta = { - description = ''Additional Data Structures for use in Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/hamiltop/structurez"; - }; - } - ) {}; - - structurez = structurez_0_0_1; - - stun_1_0_1 = callPackage - ( - { buildRebar3, fetchHex, p1_utils_1_0_3, fast_tls_1_0_1 }: - buildRebar3 { - name = "stun"; - version = "1.0.1"; - src = fetchHex { - pkg = "stun"; - version = "1.0.1"; - sha256 = - "77c9713436dd51e334698ce1de3e17e3601552c40ced76e2bd321eb5eaa33374"; - }; - - beamDeps = [ p1_utils_1_0_3 fast_tls_1_0_1 ]; - - meta = { - description = ''STUN and TURN library for Erlang / Elixir''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/processone/stun"; - }; - } - ) {}; - - stun = stun_1_0_1; - - sugar_0_4_10 = callPackage - ( - { - buildMix, - fetchHex, - templates_0_0_5, - postgrex_0_11_1, - poison_1_5_2, - plugs_0_1_0, - plug_1_1_3, - http_router_0_0_8, - ecto_2_0_0_beta_2, - cowboy_1_0_4 - }: - buildMix { - name = "sugar"; - version = "0.4.10"; - src = fetchHex { - pkg = "sugar"; - version = "0.4.10"; - sha256 = - "6a0fe8e12032aa4c8932801c000bb361ddec4ea6cb64e756e56e26306ea08a99"; - }; - beamDeps = [ - templates_0_0_5 - postgrex_0_11_1 - poison_1_5_2 - plugs_0_1_0 - plug_1_1_3 - http_router_0_0_8 - ecto_2_0_0_beta_2 - cowboy_1_0_4 - ]; - - meta = { - description = ''Modular web framework''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/sugar-framework/sugar"; - }; - } - ) {}; - - sugar = sugar_0_4_10; - - supermemo_1_0_0 = callPackage - ( - { buildMix, fetchHex, timex_0_13_5 }: - buildMix { - name = "supermemo"; - version = "1.0.0"; - src = fetchHex { - pkg = "supermemo"; - version = "1.0.0"; - sha256 = - "d8afa9ed4f8d18d835eb60b68c36ef4ee8489d0abed5051fde20dc433ea8a076"; - }; - beamDeps = [ timex_0_13_5 ]; - - meta = { - longDescription = ''An Elixir implementation of the Supermemo 2 - Algorithm as described here: - http://www.supermemo.com/english/ol/sm2.htm. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/edubkendo/supermemo"; - }; - } - ) {}; - - supermemo = supermemo_1_0_0; - - supervisord_0_1_0 = callPackage - ( - { buildMix, fetchHex, xmlrpc_0_9_1, httpoison_0_7_5 }: - buildMix { - name = "supervisord"; - version = "0.1.0"; - src = fetchHex { - pkg = "supervisord"; - version = "0.1.0"; - sha256 = - "628bd1f94bff68048e270fec788250ca4adf888a9b9e20e6963958dec43f8ee0"; - }; - beamDeps = [ xmlrpc_0_9_1 httpoison_0_7_5 ]; - - meta = { - description = ''Supervisord library for Elixir''; - license = stdenv.lib.licenses.mit; - homepage = - "https://github.com/pocketberserker/elixir-supervisord"; - }; - } - ) {}; - - supervisord = supervisord_0_1_0; - supool_1_5_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "supool"; version = "1.5.1"; src = fetchHex { @@ -45279,87 +26523,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/okeuday/supool"; }; - } + } // packageOverrides) ) {}; supool = supool_1_5_1; - swaggerdoc_0_0_1 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, phoenix_1_0_4, ecto_1_0_7 }: - buildMix { - name = "swaggerdoc"; - version = "0.0.1"; - src = fetchHex { - pkg = "swaggerdoc"; - version = "0.0.1"; - sha256 = - "8131fc20821e2dc4f9dd3322dc2e0b8ff1cd25c36338c3eb7d725440edd01405"; - }; - beamDeps = [ poison_1_5_2 phoenix_1_0_4 ecto_1_0_7 ]; - - meta = { - longDescription = ''The SwaggerDoc module provides a convenience - task for generating Swagger API documentation - for Phoenix and Ecto-based projects.''; - license = stdenv.lib.licenses.mpl20; - homepage = "https://github.com/OpenAperture/swaggerdoc.git"; - }; - } - ) {}; - - swaggerdoc = swaggerdoc_0_0_1; - - swapi_1_0_0 = callPackage - ( - { buildMix, fetchHex, httpoison_0_8_2 }: - buildMix { - name = "swapi"; - version = "1.0.0"; - src = fetchHex { - pkg = "swapi"; - version = "1.0.0"; - sha256 = - "55b40ddd97d632b027463aefccb8d6fa9ffa77f224a25af5565bbaecff5c7a3c"; - }; - beamDeps = [ httpoison_0_8_2 ]; - - meta = { - description = ''An Elixir wrapper for the Star Wars API.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/twhitacre/swapi.ex"; - }; - } - ) {}; - - swapi = swapi_1_0_0; - - sweet_xml_0_4_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "sweet_xml"; - version = "0.4.0"; - src = fetchHex { - pkg = "sweet_xml"; - version = "0.4.0"; - sha256 = - "94b7134a34f95437ad444d9bc3d5d7e69eabec8196e1a36fe181e97123ec5eb4"; - }; - - meta = { - description = ''An sweet wrapper of :xmerl to help query xml - docs''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/awetzel/sweet_xml"; - }; - } - ) {}; - sweet_xml_0_5_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "sweet_xml"; version = "0.5.1"; src = fetchHex { @@ -45375,13 +26547,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/awetzel/sweet_xml"; }; - } + } // packageOverrides) ) {}; sweet_xml_0_6_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "sweet_xml"; version = "0.6.1"; src = fetchHex { @@ -45397,7 +26569,7 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/awetzel/sweet_xml"; }; - } + } // packageOverrides) ) {}; sweet_xml = sweet_xml_0_6_1; @@ -45406,13 +26578,14 @@ let ( { buildRebar3, + packageOverrides ? {}, fetchHex, lager_3_0_2, jsx_2_8_0, gproc_0_5_0, cowboy_1_0_4 }: - buildRebar3 { + buildRebar3 ({ name = "switchboard"; version = "0.3.2"; src = fetchHex { @@ -45422,6 +26595,8 @@ let "0b1debb284cd63e5220dc56462dafebd1418579bb40a5b8e51dfdf1f50bfbeb3"; }; + buildPlugins = [ rebar3_hex ]; + beamDeps = [ lager_3_0_2 jsx_2_8_0 gproc_0_5_0 cowboy_1_0_4 ]; meta = { @@ -45430,56 +26605,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/thusfresh/switchboard"; }; - } + } // packageOverrides) ) {}; switchboard = switchboard_0_3_2; - swoosh_0_1_0 = callPackage - ( - { - buildMix, - fetchHex, - poison_2_1_0, - plug_1_1_3, - httpoison_0_8_2, - gen_smtp_0_9_0, - cowboy_1_0_4 - }: - buildMix { - name = "swoosh"; - version = "0.1.0"; - src = fetchHex { - pkg = "swoosh"; - version = "0.1.0"; - sha256 = - "46488cbd7d158e4907869d7b097d7663d608405021c43aeb6a51a6c70cb7ee3b"; - }; - beamDeps = [ - poison_2_1_0 - plug_1_1_3 - httpoison_0_8_2 - gen_smtp_0_9_0 - cowboy_1_0_4 - ]; - - meta = { - longDescription = ''Compose, deliver and test your emails easily - in Elixir. Supports SMTP, Sendgrid, Mandrill, - Postmark and Mailgun out of the box. Works great - with Phoenix.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/swoosh/swoosh"; - }; - } - ) {}; - - swoosh = swoosh_0_1_0; - syn_1_2_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "syn"; version = "1.2.1"; src = fetchHex { @@ -45495,15 +26629,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/ostinelli/syn"; }; - } + } // packageOverrides) ) {}; syn = syn_1_2_1; syn_osc_0_1_0 = callPackage ( - { buildMix, fetchHex, osc_0_1_1 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, osc_0_1_1 }: + buildMix ({ name = "syn_osc"; version = "0.1.0"; src = fetchHex { @@ -45519,15 +26653,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "synthex"; version = "0.1.0"; src = fetchHex { @@ -45542,40 +26676,15 @@ let license = stdenv.lib.licenses.isc; homepage = "https://github.com/bitgamma/synthex"; }; - } + } // packageOverrides) ) {}; synthex = synthex_0_1_0; - syslog_1_0_2 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "syslog"; - version = "1.0.2"; - src = fetchHex { - pkg = "syslog"; - version = "1.0.2"; - sha256 = - "ca158a84afe482f77cb4668383a6108f1e9190fcdf3035858f426b91b2021bf6"; - }; - compilePorts = true; - - meta = { - description = ''Erlang port driver for interacting with syslog - via syslog''; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/Vagabond/erlang-syslog"; - }; - } - ) {}; - - syslog = syslog_1_0_2; - system_env_loader_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "system_env_loader"; version = "0.1.0"; src = fetchHex { @@ -45592,15 +26701,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "table"; version = "0.0.4"; src = fetchHex { @@ -45615,15 +26724,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/zweifisch/table"; }; - } + } // packageOverrides) ) {}; table = table_0_0_4; table_rex_0_4_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "table_rex"; version = "0.4.0"; src = fetchHex { @@ -45639,13 +26748,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/djm/table_rex"; }; - } + } // packageOverrides) ) {}; table_rex_0_8_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "table_rex"; version = "0.8.0"; src = fetchHex { @@ -45661,15 +26770,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "tabula"; version = "2.0.1"; src = fetchHex { @@ -45684,15 +26793,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/aerosol/Tabula"; }; - } + } // packageOverrides) ) {}; tabula = tabula_2_0_1; tachometer_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "tachometer"; version = "0.1.0"; src = fetchHex { @@ -45707,39 +26816,15 @@ let license = stdenv.lib.licenses.gpl3; homepage = "https://github.com/pavlos/tachometer"; }; - } + } // packageOverrides) ) {}; tachometer = tachometer_0_1_0; - tagplay_0_1_0 = callPackage - ( - { buildMix, fetchHex, httpoison_0_7_5, exjsx_3_1_0 }: - buildMix { - name = "tagplay"; - version = "0.1.0"; - src = fetchHex { - pkg = "tagplay"; - version = "0.1.0"; - sha256 = - "620561f030ad83fc9e9bafec7efb03ded24d9ed81ac32a9ef1bc56c0ab87d61f"; - }; - beamDeps = [ httpoison_0_7_5 exjsx_3_1_0 ]; - - meta = { - description = ''Tagplay.co API client. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/Tagplay/elixir-tagplay"; - }; - } - ) {}; - - tagplay = tagplay_0_1_0; - tail_1_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "tail"; version = "1.0.1"; src = fetchHex { @@ -45756,15 +26841,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "tane"; version = "0.3.1"; src = fetchHex { @@ -45779,78 +26864,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/Joe-noh/tane"; }; - } + } // packageOverrides) ) {}; tane = tane_0_3_1; - tanegashima_0_0_9 = callPackage - ( - { - buildMix, - fetchHex, - poison_2_1_0, - httpoison_0_8_2, - ex_doc_0_11_4, - earmark_0_2_1, - dialyze_0_2_1 - }: - buildMix { - name = "tanegashima"; - version = "0.0.9"; - src = fetchHex { - pkg = "tanegashima"; - version = "0.0.9"; - sha256 = - "91d0496f57e156a4f5b205ca4743f857cbf7739012b4b5eb704a31d00062cad6"; - }; - beamDeps = [ - poison_2_1_0 - httpoison_0_8_2 - ex_doc_0_11_4 - earmark_0_2_1 - dialyze_0_2_1 - ]; - - meta = { - description = ''Elixir wrapper for Pushbullet-API''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/massn/Tanegashima"; - }; - } - ) {}; - - tanegashima = tanegashima_0_0_9; - - tanuki_0_2_0 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "tanuki"; - version = "0.2.0"; - src = fetchHex { - pkg = "tanuki"; - version = "0.2.0"; - sha256 = - "f499d6bcb80fc29f2d0b68d16d8309cb25589583b1f4d0eb23cbc4fe5afbab8c"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''GitLab API wrapper in Elixir, named after GitLabs - mascot''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/ZJvandeWeg/Tanuki"; - }; - } - ) {}; - - tanuki = tanuki_0_2_0; - tap_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "tap"; version = "0.1.0"; src = fetchHex { @@ -45865,15 +26887,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/eproxus/tap"; }; - } + } // packageOverrides) ) {}; tap = tap_0_1_0; tau_0_0_6 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "tau"; version = "0.0.6"; src = fetchHex { @@ -45888,15 +26910,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/FranklinChen/tau"; }; - } + } // packageOverrides) ) {}; tau = tau_0_0_6; tds_0_5_4 = callPackage ( - { buildMix, fetchHex, decimal_1_1_1 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, decimal_1_1_1 }: + buildMix ({ name = "tds"; version = "0.5.4"; src = fetchHex { @@ -45912,41 +26934,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/livehelpnow/tds"; }; - } + } // packageOverrides) ) {}; tds = tds_0_5_4; - tds_ecto_1_0_2 = callPackage - ( - { - buildMix, fetchHex, tds_0_5_4, poison_1_5_2, ecto_2_0_0_beta_2 - }: - buildMix { - name = "tds_ecto"; - version = "1.0.2"; - src = fetchHex { - pkg = "tds_ecto"; - version = "1.0.2"; - sha256 = - "c592061c97b923fd3f2a7b212eefdd7a35ddb0dac94886b8995ed03b2b9dfd53"; - }; - beamDeps = [ tds_0_5_4 poison_1_5_2 ecto_2_0_0_beta_2 ]; - - meta = { - description = ''MSSQL / TDS Adapter for Ecto.''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/livehelpnow/tds_ecto"; - }; - } - ) {}; - - tds_ecto = tds_ecto_1_0_2; - tea_crypto_1_0_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "tea_crypto"; version = "1.0.0"; src = fetchHex { @@ -45961,15 +26957,15 @@ let homepage = "https://github.com/keichan34/tea_crypto"; }; - } + } // packageOverrides) ) {}; tea_crypto = tea_crypto_1_0_0; teacup_0_3_2 = callPackage ( - { buildRebar3, fetchHex, simpre_0_1_0 }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex, simpre_0_1_0 }: + buildRebar3 ({ name = "teacup"; version = "0.3.2"; src = fetchHex { @@ -45985,7 +26981,7 @@ let description = ''Simple TCP client library for Erlang''; license = stdenv.lib.licenses.mit; }; - } + } // packageOverrides) ) {}; teacup = teacup_0_3_2; @@ -45993,9 +26989,14 @@ let teacup_nats_0_3_1 = callPackage ( { - buildRebar3, fetchHex, teacup_0_3_2, nats_msg_0_4_1, jsx_2_8_0 + buildRebar3, + packageOverrides ? {}, + fetchHex, + teacup_0_3_2, + nats_msg_0_4_1, + jsx_2_8_0 }: - buildRebar3 { + buildRebar3 ({ name = "teacup_nats"; version = "0.3.1"; src = fetchHex { @@ -46009,17 +27010,18 @@ let meta = { description = ''Teacup based NATS Client for Erlang''; - license = stdenv.lib.licenses.mit; + 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "teamcity_exunit_formatter"; version = "0.2.0"; src = fetchHex { @@ -46036,40 +27038,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/lixhq/teamcity-exunit-formatter"; }; - } + } // packageOverrides) ) {}; teamcity_exunit_formatter = teamcity_exunit_formatter_0_2_0; - telebot_0_1_2 = callPackage - ( - { buildRebar3, fetchHex, poison_1_5_2, httpoison_0_7_5 }: - buildRebar3 { - name = "telebot"; - version = "0.1.2"; - src = fetchHex { - pkg = "telebot"; - version = "0.1.2"; - sha256 = - "cb1f3058dcf182357f1620f58ac289d685b277fb31082c1644bd5f3892ccaf78"; - }; - - beamDeps = [ poison_1_5_2 httpoison_0_7_5 ]; - - meta = { - description = ''A Telegram bot plugin system for Elixir.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/ottolin/telebot"; - }; - } - ) {}; - - telebot = telebot_0_1_2; - telehashname_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "telehashname"; version = "0.0.2"; src = fetchHex { @@ -46084,15 +27061,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/mwmiller/telehashname_ex"; }; - } + } // packageOverrides) ) {}; telehashname = telehashname_0_0_2; telephonist_0_1_2 = callPackage ( - { buildMix, fetchHex, immortal_0_2_0, ex_twiml_2_1_0 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + immortal_0_2_0, + ex_twiml_2_1_0 + }: + buildMix ({ name = "telephonist"; version = "0.1.2"; src = fetchHex { @@ -46107,15 +27090,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/danielberkompas/telephonist"; }; - } + } // packageOverrides) ) {}; telephonist = telephonist_0_1_2; temp_0_4_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "temp"; version = "0.4.0"; src = fetchHex { @@ -46131,40 +27114,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/tuvistavie/elixir-temp"; }; - } + } // packageOverrides) ) {}; temp = temp_0_4_0; - templates_0_0_5 = callPackage - ( - { buildMix, fetchHex, calliope_0_3_0 }: - buildMix { - name = "templates"; - version = "0.0.5"; - src = fetchHex { - pkg = "templates"; - version = "0.0.5"; - sha256 = - "b06a865acfb39fe17cb589ac64696127351015c9ff5d27bae0e223e770b27269"; - }; - beamDeps = [ calliope_0_3_0 ]; - - meta = { - description = ''A helper library for adding templating to web - applications ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/sugar-framework/templates"; - }; - } - ) {}; - - templates = templates_0_0_5; - temporary_env_1_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "temporary_env"; version = "1.0.1"; src = fetchHex { @@ -46180,63 +27138,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/lpil/temporary-env"; }; - } + } // packageOverrides) ) {}; temporary_env = temporary_env_1_0_1; - tentabucket_0_0_1 = callPackage - ( - { buildMix, fetchHex, httpoison_0_8_2, exjsx_3_2_0 }: - buildMix { - name = "tentabucket"; - version = "0.0.1"; - src = fetchHex { - pkg = "tentabucket"; - version = "0.0.1"; - sha256 = - "5784dad17f973efcc3c4ea7672927095864d58af1f830614e4c8f06c63d4822d"; - }; - beamDeps = [ httpoison_0_8_2 exjsx_3_2_0 ]; - - meta = { - description = ''Simple Bitbucket API client library for Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/duksis/tentabucket"; - }; - } - ) {}; - - tentabucket = tentabucket_0_0_1; - - tentacat_0_4_0 = callPackage - ( - { buildMix, fetchHex, httpoison_0_8_2, exjsx_3_2_0 }: - buildMix { - name = "tentacat"; - version = "0.4.0"; - src = fetchHex { - pkg = "tentacat"; - version = "0.4.0"; - sha256 = - "3fc0ab0b8f218fc3486d00f47d4b71ae70709c4137a8d8d573b44038b4ee43b3"; - }; - beamDeps = [ httpoison_0_8_2 exjsx_3_2_0 ]; - - meta = { - description = ''Simple Elixir wrapper for the GitHub API''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/edgurgel/tentacat"; - }; - } - ) {}; - - tentacat = tentacat_0_4_0; - term_table_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "term_table"; version = "0.0.2"; src = fetchHex { @@ -46251,15 +27161,15 @@ let 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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "termcap"; version = "0.1.0"; src = fetchHex { @@ -46273,15 +27183,15 @@ let description = ''Pure erlang termcap library''; license = stdenv.lib.licenses.mit; }; - } + } // packageOverrides) ) {}; termcap = termcap_0_1_0; tesla_0_2_1 = callPackage ( - { buildMix, fetchHex, exjsx_3_1_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, exjsx_3_1_0 }: + buildMix ({ name = "tesla"; version = "0.2.1"; src = fetchHex { @@ -46298,15 +27208,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/monterail/tesla"; }; - } + } // packageOverrides) ) {}; tesla = tesla_0_2_1; test_times_1_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "test_times"; version = "1.0.0"; src = fetchHex { @@ -46322,15 +27232,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "tfidf"; version = "0.1.2"; src = fetchHex { @@ -46346,15 +27256,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "the_fuzz"; version = "0.2.2"; src = fetchHex { @@ -46376,40 +27286,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/smashedtoatoms/the_fuzz"; }; - } + } // packageOverrides) ) {}; the_fuzz = the_fuzz_0_2_2; - theriac_0_0_1 = callPackage - ( - { buildMix, fetchHex, fitex_0_0_1 }: - buildMix { - name = "theriac"; - version = "0.0.1"; - src = fetchHex { - pkg = "theriac"; - version = "0.0.1"; - sha256 = - "c67162d0bb02629cf3502adba2680c59c058ecbc3dda821384ee00e903d6484f"; - }; - beamDeps = [ fitex_0_0_1 ]; - - meta = { - description = ''Implementation of clojure style transducers in - elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/timdeputter/theriac"; - }; - } - ) {}; - - theriac = theriac_0_0_1; - thermex_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "thermex"; version = "0.0.2"; src = fetchHex { @@ -46424,54 +27309,15 @@ let sensors''; }; - } + } // packageOverrides) ) {}; thermex = thermex_0_0_2; - thesis_0_0_8 = callPackage - ( - { - buildMix, - fetchHex, - plug_1_1_3, - phoenix_html_2_5_1, - phoenix_1_1_4, - html_sanitize_ex_0_1_2, - ecto_2_0_0_beta_2 - }: - buildMix { - name = "thesis"; - version = "0.0.8"; - src = fetchHex { - pkg = "thesis"; - version = "0.0.8"; - sha256 = - "8fc1a3fd06b66c695a270519009903f1d2d5bd586f5061a614c37d7b46df7896"; - }; - beamDeps = [ - plug_1_1_3 - phoenix_html_2_5_1 - phoenix_1_1_4 - html_sanitize_ex_0_1_2 - ecto_2_0_0_beta_2 - ]; - - meta = { - description = ''Thesis is a lightweight bolt-on content editing - system for Phoenix websites.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/infinite_red/thesis"; - }; - } - ) {}; - - thesis = thesis_0_0_8; - thrift_1_2_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "thrift"; version = "1.2.0"; src = fetchHex { @@ -46488,15 +27334,15 @@ let 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, fetchHex, timex_1_0_2 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, timex_1_0_2 }: + buildMix ({ name = "time_distance"; version = "0.0.1"; src = fetchHex { @@ -46514,15 +27360,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "time_seer"; version = "0.0.6"; src = fetchHex { @@ -46535,263 +27381,27 @@ let 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 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_0_12_9 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "timex"; - version = "0.12.9"; - src = fetchHex { - pkg = "timex"; - version = "0.12.9"; - sha256 = - "6d5be2480b6aa55b452acaffd1fc91e576ffb1e0bc0f04358c8869a47af9ec60"; - }; - - 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"; - }; - } - ) {}; - - timex_0_13_5 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "timex"; - version = "0.13.5"; - src = fetchHex { - pkg = "timex"; - version = "0.13.5"; - sha256 = - "2d553f9e4b5ed7f7f9743012b6be8fd5bdf5d727e93951cd5be220dcbf161f75"; - }; - - 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"; - }; - } - ) {}; - - timex_0_16_2 = callPackage - ( - { buildMix, fetchHex, tzdata_0_1_201603 }: - buildMix { - name = "timex"; - version = "0.16.2"; - src = fetchHex { - pkg = "timex"; - version = "0.16.2"; - sha256 = - "951b740468c5de3495ce750d33c9df313100de75060242fd2dfe308f40706793"; - }; - beamDeps = [ tzdata_0_1_201603 ]; - - 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"; - }; - } - ) {}; - - timex_0_19_5 = callPackage - ( - { buildMix, fetchHex, tzdata_0_5_7, combine_0_7_0 }: - buildMix { - name = "timex"; - version = "0.19.5"; - src = fetchHex { - pkg = "timex"; - version = "0.19.5"; - sha256 = - "be1985ab99a6aebc3672b1d82b27e409c9a7af4658f3cc5900fa8754e159b02c"; - }; - beamDeps = [ tzdata_0_5_7 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"; - }; - } - ) {}; - timex_1_0_0_rc4 = callPackage ( - { buildMix, fetchHex, tzdata_0_1_201603, combine_0_7_0 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + tzdata_0_1_201603, + combine_0_7_0 + }: + buildMix ({ name = "timex"; version = "1.0.0-rc4"; src = fetchHex { @@ -46817,9 +27427,9 @@ let 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 - + 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 @@ -46837,22 +27447,28 @@ let 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 + 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, fetchHex, tzdata_0_1_201603, combine_0_7_0 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + tzdata_0_1_201603, + combine_0_7_0 + }: + buildMix ({ name = "timex"; version = "1.0.2"; src = fetchHex { @@ -46878,9 +27494,9 @@ let 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 - + 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 @@ -46898,28 +27514,29 @@ let 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 + 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 { + buildMix ({ name = "timex"; version = "2.1.3"; src = fetchHex { @@ -46945,9 +27562,9 @@ let 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 - + 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 @@ -46965,49 +27582,24 @@ let 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 + 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_ecto_1_0_4 = callPackage - ( - { buildMix, fetchHex, timex_2_1_3, ecto_0_2_7 }: - buildMix { - name = "timex_ecto"; - version = "1.0.4"; - src = fetchHex { - pkg = "timex_ecto"; - version = "1.0.4"; - sha256 = - "98818bc66aad2234c78a879b57445ea329dea64d74d8bf67adc331eb4c504a74"; - }; - beamDeps = [ timex_2_1_3 ecto_0_2_7 ]; - - meta = { - description = ''A plugin for Ecto and Timex which allows use of - Timex types with Ecto''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/bitwalker/timex_ecto"; - }; - } - ) {}; - - timex_ecto = timex_ecto_1_0_4; - timex_interval_0_6_0 = callPackage ( - { buildMix, fetchHex, timex_1_0_0_rc4 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, timex_1_0_0_rc4 }: + buildMix ({ name = "timex_interval"; version = "0.6.0"; src = fetchHex { @@ -47024,15 +27616,15 @@ let 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, fetchHex }: - buildErlangMk { + { buildErlangMk, packageOverrides ? {}, fetchHex }: + buildErlangMk ({ name = "tinymt"; version = "0.3.1"; src = fetchHex { @@ -47047,15 +27639,15 @@ let 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, fetchHex, exjsx_3_2_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, exjsx_3_2_0 }: + buildMix ({ name = "tirexs"; version = "0.8.0-beta5"; src = fetchHex { @@ -47072,15 +27664,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/Zatvobor/tirexs"; }; - } + } // packageOverrides) ) {}; tirexs = tirexs_0_8_0_beta5; tlv_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "tlv"; version = "0.1.0"; src = fetchHex { @@ -47095,38 +27687,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/bitgamma/elixir_tlv"; }; - } + } // packageOverrides) ) {}; tlv = tlv_0_1_0; - tmdb_0_0_6 = callPackage - ( - { - buildRebar3, fetchHex, poison_1_4_0, httpoison_0_8_2, exjsx_3_1_0 - }: - buildRebar3 { - name = "tmdb"; - version = "0.0.6"; - src = fetchHex { - pkg = "tmdb"; - version = "0.0.6"; - sha256 = - "4cbad6ffa556a0eeecb22c3960d47451e918313e5651808439f039403dd38d3a"; - }; - - beamDeps = [ poison_1_4_0 httpoison_0_8_2 exjsx_3_1_0 ]; - - meta = { }; - } - ) {}; - - tmdb = tmdb_0_0_6; - todo_1_2_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "todo"; version = "1.2.0"; src = fetchHex { @@ -47141,62 +27710,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/niahoo/elixir-todo"; }; - } + } // packageOverrides) ) {}; todo = todo_1_2_0; - togglex_0_2_0 = callPackage - ( - { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: - buildMix { - name = "togglex"; - version = "0.2.0"; - src = fetchHex { - pkg = "togglex"; - version = "0.2.0"; - sha256 = - "725b4299c5aad1c87900e667d6a01c88ba18f8e545283f31d2f726745c174e30"; - }; - beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; - - meta = { - description = ''Simple Elixir wrapper for the Toggl API''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/diacode/togglex"; - }; - } - ) {}; - - togglex = togglex_0_2_0; - - tomlex_0_0_4 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "tomlex"; - version = "0.0.4"; - src = fetchHex { - pkg = "tomlex"; - version = "0.0.4"; - sha256 = - "4aa86ca5ede2147156697267a72bafb425fea2ad9c3a5c0bf6fe7f1e57e9ffa9"; - }; - - meta = { - description = ''A TOML parser for elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/zamith/tomlex"; - }; - } - ) {}; - - tomlex = tomlex_0_0_4; - toniq_1_0_5 = callPackage ( - { buildMix, fetchHex, uuid_1_1_3, exredis_0_2_3 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + uuid_1_1_3, + exredis_0_2_3 + }: + buildMix ({ name = "toniq"; version = "1.0.5"; src = fetchHex { @@ -47215,15 +27743,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/joakimk/toniq"; }; - } + } // packageOverrides) ) {}; toniq = toniq_1_0_5; towel_0_2_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "towel"; version = "0.2.1"; src = fetchHex { @@ -47239,15 +27767,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/knrz/towel"; }; - } + } // packageOverrides) ) {}; towel = towel_0_2_1; tqdm_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "tqdm"; version = "0.0.1"; src = fetchHex { @@ -47264,40 +27792,16 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/antipax/tqdm_elixir"; }; - } + } // packageOverrides) ) {}; tqdm = tqdm_0_0_1; - tracker_request_0_0_4 = callPackage - ( - { buildMix, fetchHex, bencoder_0_0_7 }: - buildMix { - name = "tracker_request"; - version = "0.0.4"; - src = fetchHex { - pkg = "tracker_request"; - version = "0.0.4"; - sha256 = - "5a4b20ed43589e9a7bd66ae1a72e5df983489b2d07ae990b32758e3353281584"; - }; - beamDeps = [ bencoder_0_0_7 ]; - - meta = { - description = ''Deal with bittorrent tracker requests and - responses''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/alehander42/tracker_request"; - }; - } - ) {}; - - tracker_request = tracker_request_0_0_4; - trackline_0_0_1 = callPackage ( { buildMix, + packageOverrides ? {}, fetchHex, timex_1_0_2, exml_0_1_0, @@ -47305,7 +27809,7 @@ let erlsom_1_2_1, apex_0_3_7 }: - buildMix { + buildMix ({ name = "trackline"; version = "0.0.1"; src = fetchHex { @@ -47327,54 +27831,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/andrewhao/trackline"; }; - } + } // packageOverrides) ) {}; trackline = trackline_0_0_1; - tractor_0_1_0 = callPackage - ( - { - buildMix, - fetchHex, - postgrex_0_11_1, - phoenix_ecto_3_0_0_beta_2, - phoenix_1_1_4, - gettext_0_10_0, - cowboy_1_0_4 - }: - buildMix { - name = "tractor"; - version = "0.1.0"; - src = fetchHex { - pkg = "tractor"; - version = "0.1.0"; - sha256 = - "f88e92d512b9c696bb250c0caa1bd85f60893bbf855eb34d622e0aae156f3063"; - }; - beamDeps = [ - postgrex_0_11_1 - phoenix_ecto_3_0_0_beta_2 - phoenix_1_1_4 - gettext_0_10_0 - cowboy_1_0_4 - ]; - - meta = { - description = ''A fast and scalable pure Elixir BitTorrent - tracker.''; - license = stdenv.lib.licenses.mpl20; - homepage = "https://github.com/folz/tractor"; - }; - } - ) {}; - - tractor = tractor_0_1_0; - tradie_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "tradie"; version = "0.0.1"; src = fetchHex { @@ -47392,15 +27857,21 @@ let 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, fetchHex, plug_1_1_3, cowboy_1_0_4 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + plug_1_1_3, + cowboy_1_0_4 + }: + buildMix ({ name = "trailing_format_plug"; version = "0.0.4"; src = fetchHex { @@ -47418,53 +27889,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "http://github.com/mschae/trailing_format_plug"; }; - } + } // packageOverrides) ) {}; trailing_format_plug = trailing_format_plug_0_0_4; - traitify_elixir_0_1_1 = callPackage - ( - { - buildMix, - fetchHex, - poison_1_1_1, - httpoison_0_7_5, - hackney_1_4_8, - exvcr_0_3_9, - ex_conf_0_1_3 - }: - buildMix { - name = "traitify_elixir"; - version = "0.1.1"; - src = fetchHex { - pkg = "traitify_elixir"; - version = "0.1.1"; - sha256 = - "ff8568415b70f2fe6548add244cb06c9a9d8c03f0e3d9568730b926f6a9cdd95"; - }; - beamDeps = [ - poison_1_1_1 - httpoison_0_7_5 - hackney_1_4_8 - exvcr_0_3_9 - ex_conf_0_1_3 - ]; - - meta = { - description = ''An Elixir client library for the Traitify API ''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/traitify/traitify_elixir"; - }; - } - ) {}; - - traitify_elixir = traitify_elixir_0_1_1; - transducer_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "transducer"; version = "0.1.0"; src = fetchHex { @@ -47489,66 +27922,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/garyposter/elixir-transducer"; }; - } + } // packageOverrides) ) {}; transducer = transducer_0_1_0; - travis_ex_0_0_2 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "travis_ex"; - version = "0.0.2"; - src = fetchHex { - pkg = "travis_ex"; - version = "0.0.2"; - sha256 = - "80589ec01596dfc1e02cef61ce0adc3c9b73977b56a528e214c37af079efa10a"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''Travis-ci API client library for Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/duksis/travis_ex"; - }; - } - ) {}; - - travis_ex = travis_ex_0_0_2; - - tributary_0_0_2 = callPackage - ( - { buildMix, fetchHex, ecto_2_0_0_beta_2 }: - buildMix { - name = "tributary"; - version = "0.0.2"; - src = fetchHex { - pkg = "tributary"; - version = "0.0.2"; - sha256 = - "f35f7f025b7db0555d4477ddf10622972f9200523355b09bdbb9ecf0f6c95d73"; - }; - beamDeps = [ ecto_2_0_0_beta_2 ]; - - meta = { - longDescription = ''A simple stream generation library for Ecto - queries that facilitates more efficient paging - of queries both in the database and in your - Ecto-reliant applicaton.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/davidantaramian/tributary"; - }; - } - ) {}; - - tributary = tributary_0_0_2; - trie_1_5_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "trie"; version = "1.5.0"; src = fetchHex { @@ -47563,13 +27945,13 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/okeuday/trie"; }; - } + } // packageOverrides) ) {}; trie_1_5_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "trie"; version = "1.5.1"; src = fetchHex { @@ -47584,7 +27966,7 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/okeuday/trie"; }; - } + } // packageOverrides) ) {}; trie = trie_1_5_1; @@ -47593,6 +27975,7 @@ let ( { buildMix, + packageOverrides ? {}, fetchHex, poison_1_5_2, plug_heartbeat_0_2_0, @@ -47600,7 +27983,7 @@ let cowboy_1_0_4, calliope_0_3_0 }: - buildMix { + buildMix ({ name = "trot"; version = "0.5.3"; src = fetchHex { @@ -47623,15 +28006,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/hexedpackets/trot"; }; - } + } // packageOverrides) ) {}; trot = trot_0_5_3; tsuru_1_4_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "tsuru"; version = "1.4.0"; src = fetchHex { @@ -47646,112 +28029,15 @@ let applications''; license = stdenv.lib.licenses.mit; }; - } + } // packageOverrides) ) {}; tsuru = tsuru_1_4_0; - tubex_0_0_7 = callPackage - ( - { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: - buildMix { - name = "tubex"; - version = "0.0.7"; - src = fetchHex { - pkg = "tubex"; - version = "0.0.7"; - sha256 = - "8b34ade3d0484ee5ebb1155c16454d545284d0c215bf999a206cbcc198acea83"; - }; - beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; - - meta = { - description = ''Elixir wrapper of YouTube Data API v3''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/yoavlt/tubex"; - }; - } - ) {}; - - tubex = tubex_0_0_7; - - tuco_tuco_0_8_1 = callPackage - ( - { buildMix, fetchHex, webdriver_0_8_1 }: - buildMix { - name = "tuco_tuco"; - version = "0.8.1"; - src = fetchHex { - pkg = "tuco_tuco"; - version = "0.8.1"; - sha256 = - "9c61ae99070047928940100e4bc4808583eae656cfaae03e7d6b7a3b3cc23c74"; - }; - beamDeps = [ webdriver_0_8_1 ]; - - meta = { - description = ''Testing tool for web applications''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/stuart/tuco-tuco"; - }; - } - ) {}; - - tuco_tuco = tuco_tuco_0_8_1; - - twittertex_0_1_0 = callPackage - ( - { buildMix, fetchHex, phoenix_html_2_5_1 }: - buildMix { - name = "twittertex"; - version = "0.1.0"; - src = fetchHex { - pkg = "twittertex"; - version = "0.1.0"; - sha256 = - "76548d5cc68c098e7b04d2cb5846859ac38adb20aa9c3925436b9967ce785503"; - }; - beamDeps = [ phoenix_html_2_5_1 ]; - - meta = { - description = ''Formats a tweet as HTML, using the entities from - its JSON structure.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/tomtaylor/twittertex"; - }; - } - ) {}; - - twittertex = twittertex_0_1_0; - - twittex_0_0_4 = callPackage - ( - { buildMix, fetchHex, oauther_1_0_2, oauth2_0_6_0 }: - buildMix { - name = "twittex"; - version = "0.0.4"; - src = fetchHex { - pkg = "twittex"; - version = "0.0.4"; - sha256 = - "2cfe144fe70ed0d0fcfbc18f232a54a844d1ef79db74cd385c8640e40ea30aa7"; - }; - beamDeps = [ oauther_1_0_2 oauth2_0_6_0 ]; - - meta = { - description = ''Twitter client library for Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/almightycouch/twittex"; - }; - } - ) {}; - - twittex = twittex_0_0_4; - type_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "type"; version = "0.0.2"; src = fetchHex { @@ -47766,40 +28052,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/jeffreybaird/type"; }; - } + } // packageOverrides) ) {}; type = type_0_0_2; - typeformx_0_0_1 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "typeformx"; - version = "0.0.1"; - src = fetchHex { - pkg = "typeformx"; - version = "0.0.1"; - sha256 = - "8f6f1613f53f8c5012eb6d05276f5d305bdb9d4b0e94926680b536d0e1d94a62"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''An Elixir client library for the Typeform API - (typeform.io)''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/netflakes/TypeformX"; - }; - } - ) {}; - - typeformx = typeformx_0_0_1; - tzdata_0_1_201603 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "tzdata"; version = "0.1.201603"; src = fetchHex { @@ -47815,63 +28076,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/lau/tzdata"; }; - } + } // packageOverrides) ) {}; - tzdata_0_5_7 = callPackage - ( - { buildMix, fetchHex, hackney_1_6_0 }: - buildMix { - name = "tzdata"; - version = "0.5.7"; - src = fetchHex { - pkg = "tzdata"; - version = "0.5.7"; - sha256 = - "1747ca537ddd0861a56a5f37f9fa480a66eb7dfc0f5f1fcdd0b08ba300c87743"; - }; - beamDeps = [ hackney_1_6_0 ]; - - meta = { - description = ''Tzdata is a parser and library for the tz - database.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/lau/tzdata"; - }; - } - ) {}; - - tzdata = tzdata_0_5_7; - - u2f_0_1_3 = callPackage - ( - { buildRebar3, fetchHex, jiffy_0_14_7, base64url_0_0_1 }: - buildRebar3 { - name = "u2f"; - version = "0.1.3"; - src = fetchHex { - pkg = "u2f"; - version = "0.1.3"; - sha256 = - "2a781f1664fac6a4de53b25115c1b00a143e02d7b7bdb583e1965a061d20e30c"; - }; - - beamDeps = [ jiffy_0_14_7 base64url_0_0_1 ]; - - meta = { - description = ''Server-side U2F library''; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/sharpfin/u2f-erl"; - }; - } - ) {}; - - u2f = u2f_0_1_3; - ua_inspector_0_11_0 = callPackage ( - { buildMix, fetchHex, poolboy_1_5_1 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, poolboy_1_5_1 }: + buildMix ({ name = "ua_inspector"; version = "0.11.0"; src = fetchHex { @@ -47887,15 +28098,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "uber"; version = "0.1.0"; src = fetchHex { @@ -47911,63 +28122,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/gamache/uber.ex"; }; - } + } // packageOverrides) ) {}; uber = uber_0_1_0; - ucol_2_0_0 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "ucol"; - version = "2.0.0"; - src = fetchHex { - pkg = "ucol"; - version = "2.0.0"; - sha256 = - "b544b88ce034d1d1ab58e093744cbded9a1e8b05006870b4d3865d6cd5066a21"; - }; - compilePorts = true; - - meta = { - description = ''ICU based collation module''; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/refuge/ucol_nif"; - }; - } - ) {}; - - ucol = ucol_2_0_0; - - ucol_nif_1_1_5 = callPackage - ( - { buildRebar3, fetchHex }: - buildRebar3 { - name = "ucol_nif"; - version = "1.1.5"; - src = fetchHex { - pkg = "ucol_nif"; - version = "1.1.5"; - sha256 = - "a6fad2b92dfe84a2654a085163de39cae88762d14c414cdeaeb66ac41d5c156e"; - }; - compilePorts = true; - - meta = { - description = ''ICU based collation module''; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/refuge/ucol_nif"; - }; - } - ) {}; - - ucol_nif = ucol_nif_1_1_5; - udpflux_0_0_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "udpflux"; version = "0.0.2"; src = fetchHex { @@ -47982,15 +28145,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/timbuchwaldt/udpflux"; }; - } + } // packageOverrides) ) {}; udpflux = udpflux_0_0_2; ueberauth_0_2_0 = callPackage ( - { buildMix, fetchHex, plug_1_1_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ name = "ueberauth"; version = "0.2.0"; src = fetchHex { @@ -48007,115 +28170,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/ueberauth/ueberauth"; }; - } + } // packageOverrides) ) {}; ueberauth = ueberauth_0_2_0; - ueberauth_facebook_0_3_2 = callPackage - ( - { buildMix, fetchHex, ueberauth_0_2_0, oauth2_0_6_0 }: - buildMix { - name = "ueberauth_facebook"; - version = "0.3.2"; - src = fetchHex { - pkg = "ueberauth_facebook"; - version = "0.3.2"; - sha256 = - "d766a41a0b26bccfc1371b776bfcfb760f09639ac3de9aa8885023af9e5641c5"; - }; - beamDeps = [ ueberauth_0_2_0 oauth2_0_6_0 ]; - - meta = { - description = ''An Uberauth strategy for Facebook - authentication.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/ueberauth/ueberauth_facebook"; - }; - } - ) {}; - - ueberauth_facebook = ueberauth_facebook_0_3_2; - - ueberauth_fitbit_0_2_1 = callPackage - ( - { buildMix, fetchHex, ueberauth_0_2_0, oauth2_0_6_0 }: - buildMix { - name = "ueberauth_fitbit"; - version = "0.2.1"; - src = fetchHex { - pkg = "ueberauth_fitbit"; - version = "0.2.1"; - sha256 = - "669e2bba8f498651dc4c31fbb978179b9d344264ace2ff8f53e007cc6d243956"; - }; - beamDeps = [ ueberauth_0_2_0 oauth2_0_6_0 ]; - - meta = { - description = ''An Ueberauth strategy for Fitbit OAuth2 - authentication''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/vinniefranco/ueberauth_fitbit"; - }; - } - ) {}; - - ueberauth_fitbit = ueberauth_fitbit_0_2_1; - - ueberauth_github_0_2_0 = callPackage - ( - { buildMix, fetchHex, ueberauth_0_2_0, oauth2_0_6_0 }: - buildMix { - name = "ueberauth_github"; - version = "0.2.0"; - src = fetchHex { - pkg = "ueberauth_github"; - version = "0.2.0"; - sha256 = - "b12b3dae8c097d5cd57a3e1cd97286b796ee36794b031f92a76e848f572cb4ab"; - }; - beamDeps = [ ueberauth_0_2_0 oauth2_0_6_0 ]; - - meta = { - description = ''An Ueberauth strategy for using Github to - authenticate your users.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/ueberauth/ueberauth_github"; - }; - } - ) {}; - - ueberauth_github = ueberauth_github_0_2_0; - - ueberauth_google_0_2_0 = callPackage - ( - { buildMix, fetchHex, ueberauth_0_2_0, oauth2_0_6_0 }: - buildMix { - name = "ueberauth_google"; - version = "0.2.0"; - src = fetchHex { - pkg = "ueberauth_google"; - version = "0.2.0"; - sha256 = - "b57f13534f37b7062df5a696976453af1faabc00d608ccdce29f9289164fce44"; - }; - beamDeps = [ ueberauth_0_2_0 oauth2_0_6_0 ]; - - meta = { - description = ''An Uberauth strategy for Google - authentication.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/ueberauth/ueberauth_google"; - }; - } - ) {}; - - ueberauth_google = ueberauth_google_0_2_0; - ueberauth_identity_0_2_3 = callPackage ( - { buildMix, fetchHex, ueberauth_0_2_0, plug_1_1_3 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + ueberauth_0_2_0, + plug_1_1_3 + }: + buildMix ({ name = "ueberauth_identity"; version = "0.2.3"; src = fetchHex { @@ -48132,64 +28201,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/ueberauth/ueberauth_identity"; }; - } + } // packageOverrides) ) {}; ueberauth_identity = ueberauth_identity_0_2_3; - ueberauth_slack_0_2_0 = callPackage - ( - { buildMix, fetchHex, ueberauth_0_2_0, oauth2_0_6_0 }: - buildMix { - name = "ueberauth_slack"; - version = "0.2.0"; - src = fetchHex { - pkg = "ueberauth_slack"; - version = "0.2.0"; - sha256 = - "1b109ed50d34b3a18d5db04234475baa3ae08893b46a7b5a1726fec4adb6753b"; - }; - beamDeps = [ ueberauth_0_2_0 oauth2_0_6_0 ]; - - meta = { - description = ''An Ueberauth strategy for using Slack to - authenticate your users''; - - }; - } - ) {}; - - ueberauth_slack = ueberauth_slack_0_2_0; - - ueberauth_twitter_0_2_2 = callPackage - ( - { buildMix, fetchHex, ueberauth_0_2_0, httpoison_0_8_2 }: - buildMix { - name = "ueberauth_twitter"; - version = "0.2.2"; - src = fetchHex { - pkg = "ueberauth_twitter"; - version = "0.2.2"; - sha256 = - "911a227b8290e8d65cee8d45015477d4ea51dbcf637c8a41ff88b34fcc5ab65a"; - }; - beamDeps = [ ueberauth_0_2_0 httpoison_0_8_2 ]; - - meta = { - description = ''An Uberauth strategy for Twitter - authentication.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/ueberauth/ueberauth_twitter"; - }; - } - ) {}; - - ueberauth_twitter = ueberauth_twitter_0_2_2; - ui_0_1_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "ui"; version = "0.1.1"; src = fetchHex { @@ -48199,19 +28219,22 @@ let "492da59ca39055c0dfc794a2ebd564adb9ed635402c7b46659981f32aa9d94c1"; }; + buildPlugins = [ rebar3_hex ]; + + meta = { description = ''An OTP application''; }; - } + } // packageOverrides) ) {}; ui = ui_0_1_1; uk_postcode_0_3_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "uk_postcode"; version = "0.3.0"; src = fetchHex { @@ -48228,15 +28251,15 @@ let 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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "ulitos"; version = "0.3.0"; src = fetchHex { @@ -48251,15 +28274,15 @@ let homepage = "https://github.com/palkan/ulitos"; }; - } + } // packageOverrides) ) {}; ulitos = ulitos_0_3_0; unit_fun_0_5_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "unit_fun"; version = "0.5.1"; src = fetchHex { @@ -48275,15 +28298,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "units"; version = "1.0.0"; src = fetchHex { @@ -48298,88 +28321,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/solatis/units"; }; - } + } // packageOverrides) ) {}; units = units_1_0_0; - unsplash_0_3_0 = callPackage - ( - { - buildMix, fetchHex, poison_1_5_2, oauth2_0_6_0, httpoison_0_8_2 - }: - buildMix { - name = "unsplash"; - version = "0.3.0"; - src = fetchHex { - pkg = "unsplash"; - version = "0.3.0"; - sha256 = - "609ded0d452729df1d6272ca7997a6bd6fb65821606f17d078c73a1b2ecbc37a"; - }; - beamDeps = [ poison_1_5_2 oauth2_0_6_0 httpoison_0_8_2 ]; - - meta = { - description = ''Unsplash API in Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/waynehoover/unsplash-elixir"; - }; - } - ) {}; - - unsplash = unsplash_0_3_0; - - untappd_0_0_1 = callPackage - ( - { buildMix, fetchHex, httpoison_0_8_2, exjsx_3_2_0 }: - buildMix { - name = "untappd"; - version = "0.0.1"; - src = fetchHex { - pkg = "untappd"; - version = "0.0.1"; - sha256 = - "f4560612cd78002202234660cf248f004c91ade8c10dc87ad136eb5d8f49d66a"; - }; - beamDeps = [ httpoison_0_8_2 exjsx_3_2_0 ]; - - meta = { - description = ''Elixir wrapper for the Untappd API''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/nimi/untappd"; - }; - } - ) {}; - - untappd = untappd_0_0_1; - - upyun_0_0_1 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "upyun"; - version = "0.0.1"; - src = fetchHex { - pkg = "upyun"; - version = "0.0.1"; - sha256 = - "a5276f371b667efb1da6e48828279963b23d6eb4b5a5225e6f3e19c77c4e4851"; - }; - - meta = { - description = ''UPYun sdk for Elixir. ''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/Hor/upyun-elixir"; - }; - } - ) {}; - - upyun = upyun_0_0_1; - uri_0_1_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "uri"; version = "0.1.0"; src = fetchHex { @@ -48393,37 +28343,15 @@ let description = ''URI Parsing/Encoding Library''; }; - } + } // packageOverrides) ) {}; uri = uri_0_1_0; - uri_template_1_2_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "uri_template"; - version = "1.2.0"; - src = fetchHex { - pkg = "uri_template"; - version = "1.2.0"; - sha256 = - "c1c97235b8571703926e77449cb272f8ae3a0710b6c91099ec6f66f44425a8c0"; - }; - - meta = { - description = ''RFC 6570 complient URI template processor''; - license = stdenv.lib.licenses.free; - }; - } - ) {}; - - uri_template = uri_template_1_2_0; - urilib_0_1_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "urilib"; version = "0.1.1"; src = fetchHex { @@ -48439,63 +28367,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/gmr/urilib"; }; - } + } // packageOverrides) ) {}; urilib = urilib_0_1_1; - url_unroller_0_0_3 = callPackage - ( - { buildMix, fetchHex, httpoison_0_8_2 }: - buildMix { - name = "url_unroller"; - version = "0.0.3"; - src = fetchHex { - pkg = "url_unroller"; - version = "0.0.3"; - sha256 = - "65a46b7335060111bdc5ad164548361f3c7ff5a39ff9493a9109dd20b98498b9"; - }; - beamDeps = [ httpoison_0_8_2 ]; - - meta = { - description = ''A simple url unroller/unshortener''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/semanticart/url_unroller"; - }; - } - ) {}; - - url_unroller = url_unroller_0_0_3; - - urna_0_1_4 = callPackage - ( - { buildMix, fetchHex, cauldron_0_1_5, jazz_0_2_1 }: - buildMix { - name = "urna"; - version = "0.1.4"; - src = fetchHex { - pkg = "urna"; - version = "0.1.4"; - sha256 = - "46f531370376bd4730cf7c17eede9b9b92ce46c5a57e9ce1e129fcc17a2b2848"; - }; - beamDeps = [ cauldron_0_1_5 jazz_0_2_1 ]; - - meta = { - description = ''REST in peace''; - license = stdenv.lib.licenses.wtfpl; - homepage = "https://github.com/meh/urna"; - }; - } - ) {}; - - urna = urna_0_1_4; - uuid_1_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "uuid"; version = "1.0.0"; src = fetchHex { @@ -48510,13 +28390,13 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/zyro/elixir-uuid"; }; - } + } // packageOverrides) ) {}; uuid_1_1_3 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "uuid"; version = "1.1.3"; src = fetchHex { @@ -48531,40 +28411,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/zyro/elixir-uuid"; }; - } + } // packageOverrides) ) {}; uuid = uuid_1_1_3; - uuid_erl_1_5_1 = callPackage - ( - { buildRebar3, fetchHex, quickrand_1_5_1 }: - buildRebar3 { - name = "uuid_erl"; - version = "1.5.1"; - src = fetchHex { - pkg = "uuid_erl"; - version = "1.5.1"; - sha256 = - "fd2a8d90693631455073d4ae2b34fdb9d58da30c0ee0e63149fbf320c71b74fa"; - }; - - beamDeps = [ quickrand_1_5_1 ]; - - meta = { - description = ''Erlang UUID Implementation''; - license = stdenv.lib.licenses.bsd3; - homepage = "https://github.com/okeuday/uuid"; - }; - } - ) {}; - - uuid_erl = uuid_erl_1_5_1; - vagrant_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "vagrant"; version = "0.0.1"; src = fetchHex { @@ -48579,40 +28434,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/mobileoverlord/vagrant"; }; - } + } // packageOverrides) ) {}; vagrant = vagrant_0_0_1; - valid_field_0_3_0 = callPackage - ( - { buildMix, fetchHex, ecto_2_0_0_beta_2 }: - buildMix { - name = "valid_field"; - version = "0.3.0"; - src = fetchHex { - pkg = "valid_field"; - version = "0.3.0"; - sha256 = - "258591717d45835be4f3b299a2c332dc33702876c272f2fff455956c4a5409dc"; - }; - beamDeps = [ ecto_2_0_0_beta_2 ]; - - meta = { - description = ''ValidField aids unit testing a changeset for - valid (and invalid) fields''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/dockyard/valid_field"; - }; - } - ) {}; - - valid_field = valid_field_0_3_0; - varpool_1_5_1 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "varpool"; version = "1.5.1"; src = fetchHex { @@ -48627,15 +28457,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/okeuday/varpool"; }; - } + } // packageOverrides) ) {}; varpool = varpool_1_5_1; vector_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "vector"; version = "0.1.0"; src = fetchHex { @@ -48651,13 +28481,13 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/pkinney/vector_ex"; }; - } + } // packageOverrides) ) {}; vector_0_2_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "vector"; version = "0.2.1"; src = fetchHex { @@ -48673,43 +28503,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/pkinney/vector_ex"; }; - } + } // packageOverrides) ) {}; vector = vector_0_2_1; - velkoz_0_0_1 = callPackage - ( - { - buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2, ex_rated_1_2_2 - }: - buildMix { - name = "velkoz"; - version = "0.0.1"; - src = fetchHex { - pkg = "velkoz"; - version = "0.0.1"; - sha256 = - "3eaa4d2f1b1904d57811e42a841735eb2eb74eb4ea93c7182e1c0b1e0a01a7e8"; - }; - beamDeps = [ poison_2_1_0 httpoison_0_8_2 ex_rated_1_2_2 ]; - - meta = { - longDescription = ''Velkoz is an api wrapper for the game leauge - of legends. You can find the api documentation - :: https://developer.riotgames.com/api''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/tesseract-tech/velkoz"; - }; - } - ) {}; - - velkoz = velkoz_0_0_1; - verify_origin_0_1_0 = callPackage ( - { buildMix, fetchHex, plug_1_1_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ name = "verify_origin"; version = "0.1.0"; src = fetchHex { @@ -48726,7 +28528,7 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/danmcclain/verify_origin"; }; - } + } // packageOverrides) ) {}; verify_origin = verify_origin_0_1_0; @@ -48735,6 +28537,7 @@ let ( { buildMix, + packageOverrides ? {}, fetchHex, watcher_1_0_0, timex_1_0_2, @@ -48742,7 +28545,7 @@ let poolboy_1_5_1, poison_1_5_2 }: - buildMix { + buildMix ({ name = "verk"; version = "0.9.11"; src = fetchHex { @@ -48765,53 +28568,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/edgurgel/verk"; }; - } + } // packageOverrides) ) {}; verk = verk_0_9_11; - verk_web_0_9_4 = callPackage - ( - { - buildMix, - fetchHex, - verk_0_9_11, - phoenix_html_2_5_1, - phoenix_1_1_4, - gettext_0_10_0, - cowboy_1_0_4 - }: - buildMix { - name = "verk_web"; - version = "0.9.4"; - src = fetchHex { - pkg = "verk_web"; - version = "0.9.4"; - sha256 = - "58c5c58515d435eda9f2ddb42d418b8e189b624f2b365e0a70fcd18880c8cb07"; - }; - beamDeps = [ - verk_0_9_11 - phoenix_html_2_5_1 - phoenix_1_1_4 - gettext_0_10_0 - cowboy_1_0_4 - ]; - - meta = { - description = ''A Verk dashboard''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/edgurgel/verk_web"; - }; - } - ) {}; - - verk_web = verk_web_0_9_4; - vex_0_5_5 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "vex"; version = "0.5.5"; src = fetchHex { @@ -48827,88 +28592,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/CargoSense/vex"; }; - } + } // packageOverrides) ) {}; vex = vex_0_5_5; - viktor_0_0_9 = callPackage - ( - { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: - buildMix { - name = "viktor"; - version = "0.0.9"; - src = fetchHex { - pkg = "viktor"; - version = "0.0.9"; - sha256 = - "876c3b9dbac7503640144fc9850c80e56148daa3aa28029f5d8fb44b35b999ff"; - }; - beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; - - meta = { - description = ''Client API wrapper for League of Legends API.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/josephyi/viktor"; - }; - } - ) {}; - - viktor = viktor_0_0_9; - - vimeo_0_0_2 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_7_5 }: - buildMix { - name = "vimeo"; - version = "0.0.2"; - src = fetchHex { - pkg = "vimeo"; - version = "0.0.2"; - sha256 = - "62adf724e67b6fefa2ecc2fcc770e320f4133676cf67cd68a39e5ca45ddd3377"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_7_5 ]; - - meta = { - description = ''Vimeo API v3 client library for Elixir.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/lilfaf/vimeo.ex"; - }; - } - ) {}; - - vimeo = vimeo_0_0_2; - - virus_total_0_0_1 = callPackage - ( - { buildMix, fetchHex, jsx_2_8_0, httpoison_0_8_2 }: - buildMix { - name = "virus_total"; - version = "0.0.1"; - src = fetchHex { - pkg = "virus_total"; - version = "0.0.1"; - sha256 = - "bed3680d17c98f978a90f5b443b6e269ee0a3f2239d2262502d8d10ee042ebfa"; - }; - beamDeps = [ jsx_2_8_0 httpoison_0_8_2 ]; - - meta = { - description = ''Elixir OTP application for the VirusTotal Public - API v2.0''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/dtykocki/virus_total"; - }; - } - ) {}; - - virus_total = virus_total_0_0_1; - voorhees_0_1_1 = callPackage ( - { buildMix, fetchHex, poison_2_1_0, ex_doc_0_11_4 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + poison_2_1_0, + ex_doc_0_11_4 + }: + buildMix ({ name = "voorhees"; version = "0.1.1"; src = fetchHex { @@ -48924,15 +28622,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/danmcclain/voorhees"; }; - } + } // packageOverrides) ) {}; voorhees = voorhees_0_1_1; voxpop_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "voxpop"; version = "0.0.1"; src = fetchHex { @@ -48948,51 +28646,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/zovafit/voxpop"; }; - } + } // packageOverrides) ) {}; voxpop = voxpop_0_0_1; - wallaby_0_1_0 = callPackage - ( - { - buildMix, - fetchHex, - poolboy_1_5_1, - poison_2_1_0, - httpoison_0_8_2, - dialyze_0_2_1 - }: - buildMix { - name = "wallaby"; - version = "0.1.0"; - src = fetchHex { - pkg = "wallaby"; - version = "0.1.0"; - sha256 = - "836fd7f97f1f70befc6e2e3a9bc785ff70b5de053d2e9ca021a5918edfa0a099"; - }; - beamDeps = [ - poolboy_1_5_1 - poison_2_1_0 - httpoison_0_8_2 - dialyze_0_2_1 - ]; - - meta = { - description = ''Concurrent feature tests for elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/keathley/wallaby"; - }; - } - ) {}; - - wallaby = wallaby_0_1_0; - watcher_1_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "watcher"; version = "1.0.0"; src = fetchHex { @@ -49007,38 +28669,22 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/edgurgel/watcher"; }; - } + } // packageOverrides) ) {}; watcher = watcher_1_0_0; - wayback_archiver_0_0_1 = callPackage - ( - { buildMix, fetchHex, httpotion_2_2_2, floki_0_8_0 }: - buildMix { - name = "wayback_archiver"; - version = "0.0.1"; - src = fetchHex { - pkg = "wayback_archiver"; - version = "0.0.1"; - sha256 = - "9f8bea06d6dcac6c017a3a41859373c10a1b46fb133db47300c2ae7c9fada590"; - }; - beamDeps = [ httpotion_2_2_2 floki_0_8_0 ]; - - meta = { - description = ''Send URLs to Wayback Machine''; - license = stdenv.lib.licenses.free; - }; - } - ) {}; - - wayback_archiver = wayback_archiver_0_0_1; - web_socket_0_0_1 = callPackage ( - { buildMix, fetchHex, poison_1_4_0, plug_0_12_2, cowboy_1_0_4 }: - buildMix { + { + 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 { @@ -49054,15 +28700,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "webassembly"; version = "0.6.1"; src = fetchHex { @@ -49084,111 +28730,15 @@ let license = stdenv.lib.licenses.bsd3; homepage = "https://github.com/herenowcoder/webassembly"; }; - } + } // packageOverrides) ) {}; webassembly = webassembly_0_6_1; - webdriver_0_8_1 = callPackage - ( - { buildMix, fetchHex, jazz_0_2_1, httpotion_2_2_2 }: - buildMix { - name = "webdriver"; - version = "0.8.1"; - src = fetchHex { - pkg = "webdriver"; - version = "0.8.1"; - sha256 = - "fe2009920fb210cd50df3a7d2bb40cd6f2844a538d52a48952f18008e1c5f3d3"; - }; - beamDeps = [ jazz_0_2_1 httpotion_2_2_2 ]; - - meta = { - description = ''Webdriver protocol for driving web browsers.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/stuart/elixir-webdriver"; - }; - } - ) {}; - - webdriver = webdriver_0_8_1; - - weber_0_1_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "weber"; - version = "0.1.0"; - src = fetchHex { - pkg = "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; - - webmentions_0_0_5 = callPackage - ( - { buildMix, fetchHex, httpotion_2_2_2, floki_0_7_2 }: - buildMix { - name = "webmentions"; - version = "0.0.5"; - src = fetchHex { - pkg = "webmentions"; - version = "0.0.5"; - sha256 = - "8240363589044572bc1ceddef0843d03ccb23e7ca5bb660e9dd11fb7c9e06414"; - }; - beamDeps = [ httpotion_2_2_2 floki_0_7_2 ]; - - meta = { - description = ''A Webmentions - (https://indiewebcamp.com/Webmention) module for - Elixir''; - license = stdenv.lib.licenses.agpl3; - homepage = "https://github.com/ckruse/webmentions-elixir"; - }; - } - ) {}; - - webmentions = webmentions_0_0_5; - - webpay_0_0_4 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "webpay"; - version = "0.0.4"; - src = fetchHex { - pkg = "webpay"; - version = "0.0.4"; - sha256 = - "abab40fc7fda25a55d3a3dce4327d3f322df378432a9ed5e7c43e553989f467e"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''Elixir Webpay API wrapper''; - - }; - } - ) {}; - - webpay = webpay_0_0_4; - websocket_client_1_1_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "websocket_client"; version = "1.1.0"; src = fetchHex { @@ -49203,15 +28753,15 @@ let 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, fetchHex, plug_1_1_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ name = "wechat_check_signature"; version = "0.0.1"; src = fetchHex { @@ -49227,15 +28777,15 @@ let 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, fetchHex, plug_1_1_3 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, plug_1_1_3 }: + buildMix ({ name = "wechatex"; version = "0.0.1"; src = fetchHex { @@ -49251,39 +28801,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/octocandy/wechatex"; }; - } + } // packageOverrides) ) {}; wechatex = wechatex_0_0_1; - weebo_0_1_2 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "weebo"; - version = "0.1.2"; - src = fetchHex { - pkg = "weebo"; - version = "0.1.2"; - sha256 = - "335367353f5675f3ce0ced41512b554da0f986efc4064479d403726c0a169231"; - }; - - meta = { - description = ''An XML-RPC parser/formatter for Elixir, with full - support for datatype mapping!''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/stevenschobert/weebo"; - }; - } - ) {}; - - weebo = weebo_0_1_2; - white_bread_2_5_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "white_bread"; version = "2.5.0"; src = fetchHex { @@ -49300,68 +28826,21 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/meadsteve/white-bread"; }; - } + } // packageOverrides) ) {}; white_bread = white_bread_2_5_0; - wifi_0_2_0 = callPackage - ( - { buildMix, fetchHex, poison_1_4_0, httpoison_0_8_2 }: - buildMix { - name = "wifi"; - version = "0.2.0"; - src = fetchHex { - pkg = "wifi"; - version = "0.2.0"; - sha256 = - "0060d0dda9308e9dc652e83f7646485d932188a11e17fb814125ccd7449effc5"; - }; - beamDeps = [ poison_1_4_0 httpoison_0_8_2 ]; - - meta = { - longDescription = ''Various utility functions for working with - the local Wifi network in Elixir. These - functions are mostly useful in scripts that - could benefit from knowing the current location - of the computer or the Wifi surroundings.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/gausby/wifi"; - }; - } - ) {}; - - wifi = wifi_0_2_0; - - wire_0_2_0 = callPackage - ( - { buildMix, fetchHex, bencoder_0_0_7 }: - buildMix { - name = "wire"; - version = "0.2.0"; - src = fetchHex { - pkg = "wire"; - version = "0.2.0"; - sha256 = - "0a2ce1329c321bd675a79152e3ed2e99cc59b3747112498e62b14bf686ca7fba"; - }; - beamDeps = [ bencoder_0_0_7 ]; - - meta = { - description = ''Encode and decode bittorrent peer wire protocol - messages''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/alehander42/wire"; - }; - } - ) {}; - - wire = wire_0_2_0; - witchcraft_0_4_2 = callPackage ( - { buildMix, fetchHex, quark_1_0_2, algae_0_10_0 }: - buildMix { + { + buildMix, + packageOverrides ? {}, + fetchHex, + quark_1_0_2, + algae_0_10_0 + }: + buildMix ({ name = "witchcraft"; version = "0.4.2"; src = fetchHex { @@ -49377,15 +28856,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/robot-overlord/witchcraft"; }; - } + } // packageOverrides) ) {}; witchcraft = witchcraft_0_4_2; wizard_0_1_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "wizard"; version = "0.1.0"; src = fetchHex { @@ -49401,40 +28880,17 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/raywan/wizard"; }; - } + } // packageOverrides) ) {}; wizard = wizard_0_1_0; - wizardry_0_0_1 = callPackage - ( - { buildMix, fetchHex, plug_1_1_3, comeonin_1_6_0 }: - buildMix { - name = "wizardry"; - version = "0.0.1"; - src = fetchHex { - pkg = "wizardry"; - version = "0.0.1"; - sha256 = - "4a85b8c3e5813dee20aa0d5503811568743644883723c9b226436616c9a779a3"; - }; - beamDeps = [ plug_1_1_3 comeonin_1_6_0 ]; - - meta = { - description = ''Simple, low-level user account framework for - Phoenix Framework''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/knrz/wizardry"; - }; - } - ) {}; - - wizardry = wizardry_0_0_1; - work_queue_0_0_3 = callPackage ( - { buildMix, fetchHex, pipe_while_ok_0_0_2 }: - buildMix { + { + buildMix, packageOverrides ? {}, fetchHex, pipe_while_ok_0_0_2 + }: + buildMix ({ name = "work_queue"; version = "0.0.3"; src = fetchHex { @@ -49451,15 +28907,15 @@ let 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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "worker_pool"; version = "1.0.4"; src = fetchHex { @@ -49474,15 +28930,15 @@ let 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, fetchHex, exactor_2_2_0 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, exactor_2_2_0 }: + buildMix ({ name = "workex"; version = "0.10.0"; src = fetchHex { @@ -49499,15 +28955,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/sasa1977/workex"; }; - } + } // packageOverrides) ) {}; workex = workex_0_10_0; workshop_0_5_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "workshop"; version = "0.5.1"; src = fetchHex { @@ -49524,15 +28980,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/gausby/workshop"; }; - } + } // packageOverrides) ) {}; workshop = workshop_0_5_1; world_json_0_1_6 = callPackage ( - { buildMix, fetchHex, poison_1_3_1 }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex, poison_1_3_1 }: + buildMix ({ name = "world_json"; version = "0.1.6"; src = fetchHex { @@ -49549,147 +29005,22 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/camshaft/world_json_ex"; }; - } + } // packageOverrides) ) {}; world_json = world_json_0_1_6; - wpa_supplicant_0_1_0 = callPackage - ( - { buildMix, fetchHex }: - buildMix { - name = "wpa_supplicant"; - version = "0.1.0"; - src = fetchHex { - pkg = "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; - - wykop_api_0_0_4 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "wykop_api"; - version = "0.0.4"; - src = fetchHex { - pkg = "wykop_api"; - version = "0.0.4"; - sha256 = - "0c2acade581168e5cdf3d1dbde53183bc1c49882c8ba8793e045f20d5a9a26d0"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''Library for Wykop API.''; - license = stdenv.lib.licenses.cc0; - homepage = "https://github.com/remiq/wykop_api_elixir"; - }; - } - ) {}; - - wykop_api = wykop_api_0_0_4; - - xe_0_0_1 = callPackage - ( - { buildMix, fetchHex, httpoison_0_8_2, floki_0_8_0 }: - buildMix { - name = "xe"; - version = "0.0.1"; - src = fetchHex { - pkg = "xe"; - version = "0.0.1"; - sha256 = - "53d693612db1343c36a7bbe6286c23f7ccfdbd44500c2a38970743238d230a77"; - }; - beamDeps = [ httpoison_0_8_2 floki_0_8_0 ]; - - meta = { - description = ''Real time conversion for currencies''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/paulodiniz/xe"; - }; - } - ) {}; - - xe = xe_0_0_1; - - xfighter_0_2_1 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "xfighter"; - version = "0.2.1"; - src = fetchHex { - pkg = "xfighter"; - version = "0.2.1"; - sha256 = - "67bb43379cd89b4b95f65f02ad5421719723d262fdbe7e399fb82ac7f3b490a8"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''An API wrapper for the programming game - Stockfighter.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/bitchef/xfighter"; - }; - } - ) {}; - - xfighter = xfighter_0_2_1; - - xkcd_0_0_1 = callPackage - ( - { buildMix, fetchHex, poison_2_1_0, httpoison_0_8_2 }: - buildMix { - name = "xkcd"; - version = "0.0.1"; - src = fetchHex { - pkg = "xkcd"; - version = "0.0.1"; - sha256 = - "1c757360b9c5ff3d098e9c04874ed273289ea890e4d87e7dd99164633fe061b5"; - }; - beamDeps = [ poison_2_1_0 httpoison_0_8_2 ]; - - meta = { - longDescription = ''Uses the XKCD JSON API to retrieve the - random, specific and the latest XKCD comic.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/notdevinclark/xkcd"; - }; - } - ) {}; - - xkcd = xkcd_0_0_1; - xlsx_parser_0_0_4 = callPackage ( { buildMix, + packageOverrides ? {}, fetchHex, timex_1_0_2, sweet_xml_0_5_1, simple_agent_0_0_7 }: - buildMix { + buildMix ({ name = "xlsx_parser"; version = "0.0.4"; src = fetchHex { @@ -49707,7 +29038,7 @@ let homepage = "https://github.com/TheFirstAvenger/elixir-xlsx_parser.git"; }; - } + } // packageOverrides) ) {}; xlsx_parser = xlsx_parser_0_0_4; @@ -49715,9 +29046,14 @@ let xlsxir_0_0_2 = callPackage ( { - buildMix, fetchHex, sweet_xml_0_6_1, ex_doc_0_11_4, earmark_0_2_1 + buildMix, + packageOverrides ? {}, + fetchHex, + sweet_xml_0_6_1, + ex_doc_0_11_4, + earmark_0_2_1 }: - buildMix { + buildMix ({ name = "xlsxir"; version = "0.0.2"; src = fetchHex { @@ -49735,15 +29071,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/kennellroxco/xlsxir"; }; - } + } // packageOverrides) ) {}; xlsxir = xlsxir_0_0_2; xml_builder_0_0_8 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "xml_builder"; version = "0.0.8"; src = fetchHex { @@ -49758,15 +29094,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "xmlrpc"; version = "0.9.1"; src = fetchHex { @@ -49784,41 +29120,17 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/ewildgoose/elixir-xml_rpc"; }; - } + } // packageOverrides) ) {}; xmlrpc = xmlrpc_0_9_1; - xoauth2_0_0_3 = callPackage - ( - { - buildMix, fetchHex, poison_1_5_2, mock_0_1_3, httpoison_0_8_2 - }: - buildMix { - name = "xoauth2"; - version = "0.0.3"; - src = fetchHex { - pkg = "xoauth2"; - version = "0.0.3"; - sha256 = - "4a43a0bca1707b579c6a141524666006dd25ed2efdc19aee5d6eeedf6efc3418"; - }; - beamDeps = [ poison_1_5_2 mock_0_1_3 httpoison_0_8_2 ]; - - meta = { - description = ''A simple XOAuth2 module for Elixir''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/craigp/elixir_xoauth2"; - }; - } - ) {}; - - xoauth2 = xoauth2_0_0_3; - xref_runner_0_2_5 = callPackage ( - { buildErlangMk, fetchHex, getopt_0_8_2 }: - buildErlangMk { + { + buildErlangMk, packageOverrides ? {}, fetchHex, getopt_0_8_2 + }: + buildErlangMk ({ name = "xref_runner"; version = "0.2.5"; src = fetchHex { @@ -49834,15 +29146,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "xxhash"; version = "0.2.0"; src = fetchHex { @@ -49857,40 +29169,15 @@ let license = stdenv.lib.licenses.free; homepage = "https://github.com/ttvd/elixir-xxhash"; }; - } + } // packageOverrides) ) {}; xxhash = xxhash_0_2_0; - yahoo_fx_0_2_0 = callPackage - ( - { buildMix, fetchHex, time_seer_0_0_6, httpoison_0_8_2 }: - buildMix { - name = "yahoo_fx"; - version = "0.2.0"; - src = fetchHex { - pkg = "yahoo_fx"; - version = "0.2.0"; - sha256 = - "e06b6986c483cad62081e19fba3089f3eab4a4f1e1cc06cd17aa45d34dd14913"; - }; - beamDeps = [ time_seer_0_0_6 httpoison_0_8_2 ]; - - meta = { - longDescription = ''YahooFx is an Elixir library for getting - currency exchange rates from Yahoo Finance''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/lau/yahoo_fx"; - }; - } - ) {}; - - yahoo_fx = yahoo_fx_0_2_0; - yaml_elixir_1_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "yaml_elixir"; version = "1.0.0"; src = fetchHex { @@ -49906,40 +29193,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/KamilLelonek/yaml-elixir"; }; - } + } // packageOverrides) ) {}; yaml_elixir = yaml_elixir_1_0_0; - yar_0_1_0 = callPackage - ( - { buildMix, fetchHex, socket_0_3_1 }: - buildMix { - name = "yar"; - version = "0.1.0"; - src = fetchHex { - pkg = "yar"; - version = "0.1.0"; - sha256 = - "23cdbe07714deee32a3d4be77e7c392ef57ab8ad28d10e053edf1cb0a136c2e6"; - }; - beamDeps = [ socket_0_3_1 ]; - - meta = { - description = ''Yet Another Redis client (implemented in pure - elixir)''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/dantswain/yar"; - }; - } - ) {}; - - yar = yar_0_1_0; - yes_msg_0_1_0 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "yes_msg"; version = "0.1.0"; src = fetchHex { @@ -49954,143 +29216,15 @@ let Erlang.''; license = stdenv.lib.licenses.mit; }; - } + } // packageOverrides) ) {}; yes_msg = yes_msg_0_1_0; - yggdrasil_1_1_1 = callPackage - ( - { buildMix, fetchHex, exredis_0_2_3, amqp_0_1_4 }: - buildMix { - name = "yggdrasil"; - version = "1.1.1"; - src = fetchHex { - pkg = "yggdrasil"; - version = "1.1.1"; - sha256 = - "0e83184601187cfc2a7a101085eed98b31911279e442dd761bdbc692b6c87a40"; - }; - beamDeps = [ exredis_0_2_3 amqp_0_1_4 ]; - - meta = { - longDescription = ''Yggdrasil is an app to manage subscriptions - to several brokers. It has simple - implementations for Redis and RabbitMQ, but they - can easily be extended. Also provides a - `behaviour` to define custom brokers.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/gmtprime/yggdrasil"; - }; - } - ) {}; - - yggdrasil = yggdrasil_1_1_1; - - yocingo_0_0_2 = callPackage - ( - { - buildMix, fetchHex, httpoison_0_8_2, exjsx_3_2_0, earmark_0_2_1 - }: - buildMix { - name = "yocingo"; - version = "0.0.2"; - src = fetchHex { - pkg = "yocingo"; - version = "0.0.2"; - sha256 = - "3ce350bb833e72edc684dc6ece956146161d4b7215cd9557f95bb2d7dcb1abf4"; - }; - beamDeps = [ httpoison_0_8_2 exjsx_3_2_0 earmark_0_2_1 ]; - - meta = { - longDescription = ''This is a full Telegram Bot API. With this - module you can create your own Telegram Bot.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/Yawolf/yocingo"; - }; - } - ) {}; - - yocingo = yocingo_0_0_2; - - yodlee_0_1_4 = callPackage - ( - { - buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2, hackney_1_4_10 - }: - buildMix { - name = "yodlee"; - version = "0.1.4"; - src = fetchHex { - pkg = "yodlee"; - version = "0.1.4"; - sha256 = - "a5ecf2c7ec42611f7f6cdaf0980da6028f5881e23484b2bf001d75fb6f0525df"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 hackney_1_4_10 ]; - - meta = { - description = ''Yodlee API''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/levanto-financial/yodlee-elixir"; - }; - } - ) {}; - - yodlee = yodlee_0_1_4; - - yomel_0_5_0 = callPackage - ( - { buildErlangMk, fetchHex }: - buildErlangMk { - name = "yomel"; - version = "0.5.0"; - src = fetchHex { - pkg = "yomel"; - version = "0.5.0"; - sha256 = - "737be278c9ae9ed40b24a45a461ea47b4979429e1d51b28961d43ee3a6426827"; - }; - - meta = { - description = ''Decodes yaml into elixir terms''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/Joe-noh/yomel"; - }; - } - ) {}; - - yomel = yomel_0_5_0; - - ytx_0_0_5 = callPackage - ( - { buildMix, fetchHex, rapidax_0_0_3 }: - buildMix { - name = "ytx"; - version = "0.0.5"; - src = fetchHex { - pkg = "ytx"; - version = "0.0.5"; - sha256 = - "a30877517201e1c964627782345273fa7ae2157591d1ae6f5663333f370db6f6"; - }; - beamDeps = [ rapidax_0_0_3 ]; - - meta = { - description = ''Youtube API Client for Elixir''; - license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/victorlcampos/ytx"; - }; - } - ) {}; - - ytx = ytx_0_0_5; - yubico_0_1_4 = callPackage ( - { buildRebar3, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "yubico"; version = "0.1.4"; src = fetchHex { @@ -50106,15 +29240,15 @@ let 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, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "yuri"; version = "1.0.0"; src = fetchHex { @@ -50129,15 +29263,15 @@ let license = stdenv.lib.licenses.wtfpl; homepage = "https://github.com/kemonomachi/yuri"; }; - } + } // packageOverrides) ) {}; yuri = yuri_1_0_0; yyid_0_1_2 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "yyid"; version = "0.1.2"; src = fetchHex { @@ -50153,39 +29287,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/janlelis/yyid.ex"; }; - } + } // packageOverrides) ) {}; yyid = yyid_0_1_2; - zanox_0_0_1 = callPackage - ( - { buildMix, fetchHex, poison_1_5_0, httpoison_0_8_0 }: - buildMix { - name = "zanox"; - version = "0.0.1"; - src = fetchHex { - pkg = "zanox"; - version = "0.0.1"; - sha256 = - "30af29400aaa0ff207ca4f24849d563c1691185faf86fc2c7f534b550175dee2"; - }; - beamDeps = [ poison_1_5_0 httpoison_0_8_0 ]; - - meta = { - description = ''Zanox API''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/rafaelss/zanox"; - }; - } - ) {}; - - zanox = zanox_0_0_1; - zarex_0_2_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "zarex"; version = "0.2.0"; src = fetchHex { @@ -50200,15 +29310,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/ricn/zarex"; }; - } + } // packageOverrides) ) {}; zarex = zarex_0_2_0; zbase32_1_0_0 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "zbase32"; version = "1.0.0"; src = fetchHex { @@ -50236,40 +29346,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/pspdfkit-labs/zbase32"; }; - } + } // packageOverrides) ) {}; zbase32 = zbase32_1_0_0; - zencoder_1_0_1 = callPackage - ( - { buildMix, fetchHex, poison_1_4_0, httpotion_2_2_2 }: - buildMix { - name = "zencoder"; - version = "1.0.1"; - src = fetchHex { - pkg = "zencoder"; - version = "1.0.1"; - sha256 = - "b2220575aa2ee1da5101774c82e1d68f2e5f86d6cefd6f04811c882fc05473bc"; - }; - beamDeps = [ poison_1_4_0 httpotion_2_2_2 ]; - - meta = { - description = ''Elixir API wrapper for the Zencoder video - transcoding API.''; - license = stdenv.lib.licenses.mit; - homepage = "https://github.com/zencoder/zencoder-ex"; - }; - } - ) {}; - - zencoder = zencoder_1_0_1; - zigzag_0_0_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "zigzag"; version = "0.0.1"; src = fetchHex { @@ -50285,38 +29370,15 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/utkarshkukreti/zigzag.ex"; }; - } + } // packageOverrides) ) {}; zigzag = zigzag_0_0_1; - zipcloudx_0_0_2 = callPackage - ( - { buildMix, fetchHex, poison_1_5_2, httpoison_0_8_2 }: - buildMix { - name = "zipcloudx"; - version = "0.0.2"; - src = fetchHex { - pkg = "zipcloudx"; - version = "0.0.2"; - sha256 = - "1e474ec0229b6dd1404c34fbd2a851d136d9549d5ecccbd01d017baac64b264e"; - }; - beamDeps = [ poison_1_5_2 httpoison_0_8_2 ]; - - meta = { - description = ''Elixir zipcloud API wrapper''; - - }; - } - ) {}; - - zipcloudx = zipcloudx_0_0_2; - zipper_0_2_0 = callPackage ( - { buildErlangMk, fetchHex }: - buildErlangMk { + { buildErlangMk, packageOverrides ? {}, fetchHex }: + buildErlangMk ({ name = "zipper"; version = "0.2.0"; src = fetchHex { @@ -50331,15 +29393,15 @@ let license = stdenv.lib.licenses.asl20; homepage = "https://github.com/inaka/zipper"; }; - } + } // packageOverrides) ) {}; zipper = zipper_0_2_0; zipper_tree_0_1_1 = callPackage ( - { buildMix, fetchHex }: - buildMix { + { buildMix, packageOverrides ? {}, fetchHex }: + buildMix ({ name = "zipper_tree"; version = "0.1.1"; src = fetchHex { @@ -50355,15 +29417,15 @@ let 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, fetchHex }: - buildRebar3 { + { buildRebar3, packageOverrides ? {}, fetchHex }: + buildRebar3 ({ name = "zlist"; version = "1.0.1"; src = fetchHex { @@ -50378,50 +29440,10 @@ let license = stdenv.lib.licenses.mit; homepage = "https://github.com/egobrain/zlist"; }; - } + } // packageOverrides) ) {}; zlist = zlist_1_0_1; - zuppler_users_client_0_0_5 = callPackage - ( - { - buildMix, - fetchHex, - poolboy_1_5_1, - phoenix_1_1_4, - oauth2_0_6_0, - lru_cache_0_1_0, - httpotion_2_2_2 - }: - buildMix { - name = "zuppler_users_client"; - version = "0.0.5"; - src = fetchHex { - pkg = "zuppler_users_client"; - version = "0.0.5"; - sha256 = - "519d87847b792db04bf97b6c6d56b26724b65f83b0f5ee17b83e82c5fb371557"; - }; - beamDeps = [ - poolboy_1_5_1 - phoenix_1_1_4 - oauth2_0_6_0 - lru_cache_0_1_0 - httpotion_2_2_2 - ]; - - meta = { - description = ''An Elixir OAuth 2.0 Client Library to protect - Zuppler API''; - license = stdenv.lib.licenses.mit; - homepage = - "https://github.com/zuppler/zuppler-users-client-elixir.git"; - }; - } - ) {}; - - zuppler_users_client = zuppler_users_client_0_0_5; - }; in stdenv.lib.fix' (stdenv.lib.extends overrides packages) \ No newline at end of file From 658a49b81d74fedd654be620c18d442e0f4fd1d8 Mon Sep 17 00:00:00 2001 From: Eric Merritt Date: Fri, 22 Apr 2016 11:03:39 -0700 Subject: [PATCH 11/96] rebar3: 3.0.0-beta.4 -> 3.1.0 --- .../tools/build-managers/rebar3/default.nix | 42 ++--- .../rebar3/hermetic-bootstrap.patch | 147 ++++++++++++++---- .../rebar3/hermetic-rebar3.patch | 67 ++++---- 3 files changed, 161 insertions(+), 95 deletions(-) diff --git a/pkgs/development/tools/build-managers/rebar3/default.nix b/pkgs/development/tools/build-managers/rebar3/default.nix index 2b5eee407a4..6fa5578ed67 100644 --- a/pkgs/development/tools/build-managers/rebar3/default.nix +++ b/pkgs/development/tools/build-managers/rebar3/default.nix @@ -3,16 +3,16 @@ tree, fetchFromGitHub, hexRegistrySnapshot }: let - version = "3.0.0-beta.4"; + 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, "0.19.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 { @@ -20,17 +20,17 @@ let version = "1.0.5"; sha256 = "1gzavzqzljywx4l59gvhkjbr1dip4kxzjjz1s4wsn42f2kk13jzj"; }; - # {certifi, "0.1.1"}, + # {certifi, "0.4.0"}, certifi = fetchHex { pkg = "certifi"; - version = "0.1.1"; - sha256 = "0afylwqg74gprbg116asz0my2nipmki0512c8mdiq6xdiyjdvlg6"; + version = "0.4.0"; + sha256 = "04bnvsbssdcf6b9h9bfglflds7j0gx6q5igl1xxhx6fnwaz37hhw"; }; - # {providers, "1.5.0"}, + # {providers, "1.6.0"}, providers = fetchHex { pkg = "providers"; - version = "1.5.0"; - sha256 = "1hc8sp2l1mmx9dfpmh1f8j9hayfg7541rmx05wb9cmvxvih7zyvf"; + version = "1.6.0"; + sha256 = "0byfa1h57n46jilz4q132j0vk3iqc0v1vip89li38gb1k997cs0g"; }; # {getopt, "0.8.2"}, getopt = fetchHex { @@ -44,11 +44,11 @@ let version = "1.0.4"; sha256 = "04lvwm7f78x8bys0js33higswjkyimbygp4n72cxz1kfnryx9c03"; }; - # {relx, "3.8.0"}, + # {relx, "3.17.0"}, relx = fetchHex { pkg = "relx"; - version = "3.8.0"; - sha256 = "0y89iirjz3kc1rzkdvc6p3ssmwcm2hqgkklhgm4pkbc14fcz57hq"; + version = "3.17.0"; + sha256 = "1xjybi93m8gj9f9z3lkc7xbg3k5cw56yl78rcz5qfirr0223sby2"; }; # {cf, "0.2.1"}, cf = fetchHex { @@ -56,19 +56,19 @@ let version = "0.2.1"; sha256 = "19d0yvg8wwa57cqhn3vqfvw978nafw8j2rvb92s3ryidxjkrmvms"; }; - # {cth_readable, "1.1.0"}, + # {cth_readable, "1.2.2"}, 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, "0.3.1"} 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, "1.12.0"} rebar3_hex = fetchHex { pkg = "rebar3_hex"; version = "1.12.0"; @@ -82,7 +82,7 @@ stdenv.mkDerivation { src = fetchurl { url = "https://github.com/rebar/rebar3/archive/${version}.tar.gz"; - sha256 = "0px66scjdia9aaa5z36qzxb848r56m0k98g0bxw065a2narsh4xy"; + sha256 = "0r4wpnpi81ha4iirv9hcif3vrgc82qd51kah7rnhvpym55wcy9ml"; }; inherit bootstrapper; 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} -> From b26ecaf3caf0c3ad5d36f832b76e7e7a3d801897 Mon Sep 17 00:00:00 2001 From: Eric Merritt Date: Wed, 20 Apr 2016 14:07:58 -0700 Subject: [PATCH 12/96] hex2nix: 0.0.3 -> 0.0.5 --- pkgs/development/tools/erlang/hex2nix/default.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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; From 585c1a8f96bf27fd26cced5015e3e9d3dc434a8a Mon Sep 17 00:00:00 2001 From: Eric Merritt Date: Sat, 23 Apr 2016 18:57:39 -0700 Subject: [PATCH 13/96] beam-modules: refactor - remove commented out code --- pkgs/development/beam-modules/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/beam-modules/default.nix b/pkgs/development/beam-modules/default.nix index 8a79a0b3e40..1fd899c53c9 100644 --- a/pkgs/development/beam-modules/default.nix +++ b/pkgs/development/beam-modules/default.nix @@ -1,4 +1,4 @@ -{ stdenv, pkgs }: #? import {} }: +{ stdenv, pkgs }: let self = rec { From 2f6cd0ce335b71ba0adf6e3988f7ce3d01396908 Mon Sep 17 00:00:00 2001 From: Eric Litak Date: Fri, 22 Apr 2016 07:52:25 -0700 Subject: [PATCH 14/96] rtl8723bs: improved build --- pkgs/os-specific/linux/rtl8723bs/default.nix | 53 +++++++++++--------- 1 file changed, 30 insertions(+), 23 deletions(-) diff --git a/pkgs/os-specific/linux/rtl8723bs/default.nix b/pkgs/os-specific/linux/rtl8723bs/default.nix index 6d55c5522f4..88981c5cf40 100644 --- a/pkgs/os-specific/linux/rtl8723bs/default.nix +++ b/pkgs/os-specific/linux/rtl8723bs/default.nix @@ -1,36 +1,43 @@ -{ 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 = "c517f2bf8bcc3d57311252ea7cd49ae81466eead"; + src = fetchFromGitHub { owner = "hadess"; repo = "rtl8723bs"; - rev = "c517f2bf8bcc3d57311252ea7cd49ae81466eead"; + inherit rev; sha256 = "0phzrhq85g52pi2b74a9sr9l2x6dzlz714k3pix486w2x5axw4xb"; }; - - 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 ]; + + 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 + + mkdir -p "$out/lib/firmware/rtlwifi" + cp rtl8723bs_nic.bin "$out/lib/firmware/rtlwifi" + cp rtl8723bs_wowlan.bin "$out/lib/firmware/rtlwifi" + + nuke-refs $(find $out -name "*.ko") ''; - - preInstall = '' - mkdir -p "$out/lib/modules/${kernel.modDirVersion}/kernel/net/wireless/" - mkdir -p "$out/lib/firmware/rtlwifi" - ''; - + 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 ]; }; } From 4c415e59a427ab18336da21bc6a2b762e3b3ee4e Mon Sep 17 00:00:00 2001 From: Eric Litak Date: Fri, 22 Apr 2016 07:54:11 -0700 Subject: [PATCH 15/96] rtl8723bs-firmware: init, split off from rtl8723bs --- nixos/modules/hardware/all-firmware.nix | 6 +++++- .../firmware/rtl8723bs-firmware/default.nix | 21 +++++++++++++++++++ pkgs/os-specific/linux/rtl8723bs/default.nix | 4 ---- pkgs/top-level/all-packages.nix | 2 ++ 4 files changed, 28 insertions(+), 5 deletions(-) create mode 100644 pkgs/os-specific/linux/firmware/rtl8723bs-firmware/default.nix 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/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/rtl8723bs/default.nix b/pkgs/os-specific/linux/rtl8723bs/default.nix index 88981c5cf40..05822c4cb42 100644 --- a/pkgs/os-specific/linux/rtl8723bs/default.nix +++ b/pkgs/os-specific/linux/rtl8723bs/default.nix @@ -25,10 +25,6 @@ stdenv.mkDerivation rec { mkdir -p $out/lib/modules/${kernel.modDirVersion}/kernel/drivers/net/wireless cp r8723bs.ko $out/lib/modules/${kernel.modDirVersion}/kernel/drivers/net/wireless - mkdir -p "$out/lib/firmware/rtlwifi" - cp rtl8723bs_nic.bin "$out/lib/firmware/rtlwifi" - cp rtl8723bs_wowlan.bin "$out/lib/firmware/rtlwifi" - nuke-refs $(find $out -name "*.ko") ''; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f4de0702e2b..29f055ef5d6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11015,6 +11015,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 { }; From 62551b53185d8c90e58bade93be0fe9d23ad5060 Mon Sep 17 00:00:00 2001 From: Eric Litak Date: Fri, 22 Apr 2016 08:00:56 -0700 Subject: [PATCH 16/96] rtl8723bs: version bump --- pkgs/os-specific/linux/rtl8723bs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/rtl8723bs/default.nix b/pkgs/os-specific/linux/rtl8723bs/default.nix index 05822c4cb42..e8cc1f40067 100644 --- a/pkgs/os-specific/linux/rtl8723bs/default.nix +++ b/pkgs/os-specific/linux/rtl8723bs/default.nix @@ -2,13 +2,13 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "rtl8723bs-${kernel.version}-${rev}"; - rev = "c517f2bf8bcc3d57311252ea7cd49ae81466eead"; + rev = "6918e9b2ff297b1cc7fde193e72452c33c10e1c8"; src = fetchFromGitHub { owner = "hadess"; repo = "rtl8723bs"; inherit rev; - sha256 = "0phzrhq85g52pi2b74a9sr9l2x6dzlz714k3pix486w2x5axw4xb"; + sha256 = "07srd457wnz29nvvq02wz66s387bhjbydnmbs3qr7ljprabhsgmi"; }; buildInputs = [ nukeReferences ]; From 3895a0b7dd7886f7ad8e1a339f6e18e58334c011 Mon Sep 17 00:00:00 2001 From: Christoph Hrdinka Date: Mon, 25 Apr 2016 12:12:05 +0200 Subject: [PATCH 17/96] qtpass: 1.1.0 -> 1.1.1 Updates qtpass and fixes the current installation method. It further installs the desktop file and application icon. --- pkgs/applications/misc/qtpass/default.nix | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/pkgs/applications/misc/qtpass/default.nix b/pkgs/applications/misc/qtpass/default.nix index 15f249ac906..342a03f8984 100644 --- a/pkgs/applications/misc/qtpass/default.nix +++ b/pkgs/applications/misc/qtpass/default.nix @@ -1,15 +1,17 @@ -{ stdenv, fetchurl, git, gnupg, makeQtWrapper, pass, qtbase, qtsvg, qttools, qmakeHook }: +{ 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 qmakeHook ]; + buildInputs = [ git gnupg pass qtbase qtsvg qttools ]; + + nativeBuildInputs = [ makeQtWrapper qmakeHook ]; preConfigure = '' qmakeFlags="$qmakeFlags CONFIG+=release DESTDIR=$out" @@ -18,9 +20,12 @@ stdenv.mkDerivation rec { 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 \ @@ -29,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; From cd27abe7513791280a5a450839ee5879241c0b7b Mon Sep 17 00:00:00 2001 From: Eric Merritt Date: Mon, 25 Apr 2016 07:55:34 -0700 Subject: [PATCH 18/96] rebar3: refactor cleanup up the code quite a bit in the bootstrapper --- .../tools/build-managers/rebar3/default.nix | 12 ---- .../rebar3/rebar3-nix-bootstrap | 61 +++++++++---------- 2 files changed, 30 insertions(+), 43 deletions(-) diff --git a/pkgs/development/tools/build-managers/rebar3/default.nix b/pkgs/development/tools/build-managers/rebar3/default.nix index 6fa5578ed67..d8938e2d468 100644 --- a/pkgs/development/tools/build-managers/rebar3/default.nix +++ b/pkgs/development/tools/build-managers/rebar3/default.nix @@ -7,68 +7,56 @@ let bootstrapper = ./rebar3-nix-bootstrap; - # TODO: all these below probably should go into nixpkgs.erlangModules.sources.* - # {erlware_commons, "0.19.0"}, erlware_commons = fetchHex { pkg = "erlware_commons"; 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.4.0"}, certifi = fetchHex { pkg = "certifi"; version = "0.4.0"; sha256 = "04bnvsbssdcf6b9h9bfglflds7j0gx6q5igl1xxhx6fnwaz37hhw"; }; - # {providers, "1.6.0"}, providers = fetchHex { pkg = "providers"; 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.17.0"}, relx = fetchHex { pkg = "relx"; version = "3.17.0"; sha256 = "1xjybi93m8gj9f9z3lkc7xbg3k5cw56yl78rcz5qfirr0223sby2"; }; - # {cf, "0.2.1"}, cf = fetchHex { pkg = "cf"; version = "0.2.1"; sha256 = "19d0yvg8wwa57cqhn3vqfvw978nafw8j2rvb92s3ryidxjkrmvms"; }; - # {cth_readable, "1.2.2"}, cth_readable = fetchHex { pkg = "cth_readable"; version = "1.2.2"; sha256 = "0kb9v4998liwyidpjkhcg1nin6djjzxcx6b313pbjicbp4r58n3p"; }; - # {eunit_formatters, "0.3.1"} eunit_formatters = fetchHex { pkg = "eunit_formatters"; version = "0.3.1"; sha256 = "0cg9dasv60v09q3q4wja76pld0546mhmlpb0khagyylv890hg934"; }; - # {rebar3_hex, "1.12.0"} rebar3_hex = fetchHex { pkg = "rebar3_hex"; version = "1.12.0"; diff --git a/pkgs/development/tools/build-managers/rebar3/rebar3-nix-bootstrap b/pkgs/development/tools/build-managers/rebar3/rebar3-nix-bootstrap index d75d69f054d..4784f2224cc 100755 --- a/pkgs/development/tools/build-managers/rebar3/rebar3-nix-bootstrap +++ b/pkgs/development/tools/build-managers/rebar3/rebar3-nix-bootstrap @@ -38,15 +38,14 @@ main(Args) -> {ok, ArgData} = parse_args(Args), {ok, RequiredData} = gather_required_data_from_the_environment(ArgData), - do(RequiredData). + do_the_bootstrap(RequiredData). -%% @doc -%% This actually runs the command. There are two modes 'register_only' -%% where the register is created from hex and everything else. --spec do(#data{}) -> ok. -do(RequiredData = #data{registry_only = true}) -> +%% @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(RequiredData) -> +do_the_bootstrap(RequiredData) -> ok = bootstrap_registry(RequiredData), ok = bootstrap_configs(RequiredData), ok = bootstrap_plugins(RequiredData), @@ -55,10 +54,15 @@ do(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, "register-only" and "compile-ports" +%% 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) -> - {ok, #data{registry_only = lists:member("registry-only", Args)}}. + io:format("Unexpected command line arguments passed in: ~p~n", [Args]), + erlang:halt(120). -spec bootstrap_configs(#data{}) -> ok. bootstrap_configs(RequiredData)-> @@ -76,7 +80,7 @@ bootstrap_plugins(#data{plugins = Plugins}) -> gather_dependency(Path) ++ Acc end, [], Paths), lists:foreach(fun (Path) -> - link_app(Path, Target) + ok = link_app(Path, Target) end, CopiableFiles). -spec bootstrap_libs(#data{}) -> ok. @@ -89,7 +93,7 @@ bootstrap_libs(#data{erl_libs = ErlLibs}) -> gather_directory_contents(Path) ++ Acc end, [], Paths), lists:foreach(fun (Path) -> - link_app(Path, Target) + ok = link_app(Path, Target) end, CopiableFiles). -spec gather_dependency(string()) -> [{string(), string()}]. @@ -199,21 +203,20 @@ guard_env(Name) -> %% include the 'pc' plugin. -spec if_compile_ports_add_pc_plugin(#data{}) -> ok. if_compile_ports_add_pc_plugin(#data{compile_ports = true}) -> - ConfigTerms = update_config(read_rebar_config()), + 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 update_config([term()]) -> [term()]. -update_config(Config) -> - case lists:keysearch(plugins, 1, Config) of - {ok, {plugins, PluginList}} -> - lists:keystore(plugins, 1, Config, {plugins, [Config | PluginList]}); - _ -> - [{plugins, [pc]} | Config] - end. +-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() -> @@ -229,10 +232,13 @@ read_rebar_config() -> -spec if_single_app_project_update_app_src_version(#data{}) -> ok. if_single_app_project_update_app_src_version(#data{name = Name, version = Version}) -> - case app_src_exists(Name) of - {true, SrcFile} -> + SrcFile = filename:join("src", + lists:concat([Name, ".app.src"])), + + case filelib:is_file(SrcFile) of + true -> update_app_src_with_version(SrcFile, Version); - {false, _} -> + false -> ok end. @@ -240,14 +246,7 @@ if_single_app_project_update_app_src_version(#data{name = Name, update_app_src_with_version(SrcFile, Version) -> {ok, [{application, Name, Details}]} = file:consult(SrcFile), NewDetails = lists:keyreplace(vsn, 1, Details, {vsn, Version}), - file:write_file(SrcFile, io_lib:fwrite("~p.\n", [{application, Name, NewDetails}])). - --spec app_src_exists(string()) -> boolean(). -app_src_exists(Name) -> - FileName = filename:join("src", - lists:concat([Name, ".app.src"])), - {filelib:is_file(FileName), FileName}. - + ok = file:write_file(SrcFile, io_lib:fwrite("~p.\n", [{application, Name, NewDetails}])). %% @doc %% Write the result of the format string out to stderr. From 983f300d74852b5a4a810085a508d413d9c56a1f Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 25 Apr 2016 17:46:06 +0200 Subject: [PATCH 19/96] pythonPackages.numpy: don't propagate blas --- pkgs/development/python-modules/numpy.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/numpy.nix b/pkgs/development/python-modules/numpy.nix index 141c8b14fa6..0276d9ede3d 100644 --- a/pkgs/development/python-modules/numpy.nix +++ b/pkgs/development/python-modules/numpy.nix @@ -9,8 +9,8 @@ in buildPythonPackage (args // rec { name = "numpy-${version}"; disabled = isPyPy; - buildInputs = args.buildInputs or [ gfortran nose ]; - propagatedBuildInputs = args.propagatedBuildInputs or [ passthru.blas ]; + buildInputs = args.buildInputs or [ gfortran nose passthru.blas ]; + propagatedBuildInputs = args.propagatedBuildInputs or [ ]; preConfigure = '' sed -i 's/-faltivec//' numpy/distutils/system_info.py From d05783a8d7cc07760542f7f2fc30be576cb29ce6 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 25 Apr 2016 17:46:15 +0200 Subject: [PATCH 20/96] pythonPackages.scipy: don't propagate blas --- pkgs/development/python-modules/scipy.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/scipy.nix b/pkgs/development/python-modules/scipy.nix index ae312cd32d5..b31f539ebdd 100644 --- a/pkgs/development/python-modules/scipy.nix +++ b/pkgs/development/python-modules/scipy.nix @@ -9,8 +9,8 @@ in buildPythonPackage (args // rec { name = "scipy-${version}"; - buildInputs = (args.buildInputs or [ gfortran nose ]); - propagatedBuildInputs = (args.propagatedBuildInputs or [ passthru.blas numpy]); + buildInputs = (args.buildInputs or [ gfortran nose passthru.blas ]); + propagatedBuildInputs = (args.propagatedBuildInputs or [ numpy]); preConfigure = '' sed -i '0,/from numpy.distutils.core/s//import setuptools;from numpy.distutils.core/' setup.py From 291ec17c5872a1d197581c40f8b71ca6921a40fe Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 25 Apr 2016 17:47:05 +0200 Subject: [PATCH 21/96] pythonPackages.qutip: use numpy.blas --- pkgs/top-level/python-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 429acdd6347..62aafc3f652 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18717,7 +18717,7 @@ in modules // { propagatedBuildInputs = with self; [ numpy scipy matplotlib pyqt4 cython ]; - buildInputs = [ pkgs.gcc pkgs.qt4 pkgs.blas self.nose ]; + buildInputs = [ pkgs.gcc pkgs.qt4 numpy.blas self.nose ]; meta = { description = "QuTiP - Quantum Toolbox in Python"; From 18396e8273cad2870a135a8a8c58a04cbb56deb1 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 25 Apr 2016 17:47:25 +0200 Subject: [PATCH 22/96] pythonPackages.scikitlearn: don't propagate blas --- pkgs/top-level/python-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 62aafc3f652..d3aa9ee9b17 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18717,7 +18717,7 @@ in modules // { propagatedBuildInputs = with self; [ numpy scipy matplotlib pyqt4 cython ]; - buildInputs = [ pkgs.gcc pkgs.qt4 numpy.blas self.nose ]; + buildInputs = [ pkgs.gcc pkgs.qt4 self.numpy.blas self.nose ]; meta = { description = "QuTiP - Quantum Toolbox in Python"; @@ -19629,8 +19629,8 @@ in modules // { sha256 = "9f4cf58e57d81783289fc503caaed1f210bab49b7a6f680bf3c04b1e0a96e5f0"; }; - buildInputs = with self; [ nose pillow pkgs.gfortran pkgs.glibcLocales ]; - propagatedBuildInputs = with self; [ numpy scipy numpy.blas ]; + buildInputs = with self; [ numpy.blas nose pillow pkgs.gfortran pkgs.glibcLocales ]; + propagatedBuildInputs = with self; [ numpy scipy ]; LC_ALL="en_US.UTF-8"; From 564978837139e4f86bccfa0115715c0e70717650 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 25 Apr 2016 17:58:15 +0200 Subject: [PATCH 23/96] pythonPackages.scipy_0_16: use correct numpy --- pkgs/top-level/python-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d3aa9ee9b17..20184bfd8d4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -19586,7 +19586,7 @@ in modules // { url = "https://pypi.python.org/packages/source/s/scipy/scipy-${version}.tar.gz"; sha256 = "ecd1efbb1c038accb0516151d1e6679809c6010288765eb5da6051550bf52260"; }; - numpy = self.numpy_1_10; + numpy = self.numpy; }; scipy_0_17 = self.buildScipyPackage rec { From 8262d7bdd480367b9afd1b8dede4c4635a192a3f Mon Sep 17 00:00:00 2001 From: Matt McHenry Date: Mon, 25 Apr 2016 12:04:57 -0400 Subject: [PATCH 24/96] crashplan: always overwrite binaries in /var/lib/ to ensure that updates are applied fully --- nixos/modules/services/backup/crashplan.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) 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 ''; From 2177bf30740933ae44644643a24e6fde506ee4d0 Mon Sep 17 00:00:00 2001 From: Eric Seidel Date: Mon, 25 Apr 2016 09:07:32 -0700 Subject: [PATCH 25/96] fossil: add libiconv on darwin --- pkgs/applications/version-management/fossil/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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; From 7e92ae903e10cec92f33e288050cc9b5d004fc16 Mon Sep 17 00:00:00 2001 From: Eric Seidel Date: Mon, 25 Apr 2016 09:13:06 -0700 Subject: [PATCH 26/96] fish: only use kbd on linux --- pkgs/shells/fish/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/shells/fish/default.nix b/pkgs/shells/fish/default.nix index 5bb7100a620..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" From 344f1c19aa9d606a327edbd07d1bd220b1afcc28 Mon Sep 17 00:00:00 2001 From: Matt McHenry Date: Mon, 25 Apr 2016 11:41:28 -0400 Subject: [PATCH 27/96] crashplan: 4.6.0-r2 -> 4.6.0-r3 --- pkgs/applications/backup/crashplan/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ]; From b48e1dd601adebddbdcbf31efff454343c5f07ff Mon Sep 17 00:00:00 2001 From: Allen Nelson Date: Mon, 25 Apr 2016 11:14:22 -0500 Subject: [PATCH 28/96] lsof: stop configure script from searching /usr paths --- pkgs/development/tools/misc/lsof/default.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) 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/ From e16851b900cb62528427186e80f173c1954659b6 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Thu, 7 Apr 2016 17:30:41 +0200 Subject: [PATCH 29/96] networking module: Add some missing `literalExample` --- nixos/modules/tasks/network-interfaces.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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"; }; From a8f1a965402469476e849d86cca1badaa3eb1f9f Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 12 Apr 2016 20:32:25 +0200 Subject: [PATCH 30/96] libeatmydata: 82 -> 105 --- pkgs/development/libraries/libeatmydata/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ]; From 3dc10d62deebfe5ef3733fa4d2f0790768d88493 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 25 Apr 2016 18:19:13 +0200 Subject: [PATCH 31/96] Revert "pythonPackages.scikitlearn: don't propagate blas" This reverts commit 18396e8273cad2870a135a8a8c58a04cbb56deb1. --- pkgs/top-level/python-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 23aa0c8d3ce..0564fc9870a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18718,7 +18718,7 @@ in modules // { propagatedBuildInputs = with self; [ numpy scipy matplotlib pyqt4 cython ]; - buildInputs = [ pkgs.gcc pkgs.qt4 self.numpy.blas self.nose ]; + buildInputs = [ pkgs.gcc pkgs.qt4 numpy.blas self.nose ]; meta = { description = "QuTiP - Quantum Toolbox in Python"; @@ -19630,8 +19630,8 @@ in modules // { sha256 = "9f4cf58e57d81783289fc503caaed1f210bab49b7a6f680bf3c04b1e0a96e5f0"; }; - buildInputs = with self; [ numpy.blas nose pillow pkgs.gfortran pkgs.glibcLocales ]; - propagatedBuildInputs = with self; [ numpy scipy ]; + buildInputs = with self; [ nose pillow pkgs.gfortran pkgs.glibcLocales ]; + propagatedBuildInputs = with self; [ numpy scipy numpy.blas ]; LC_ALL="en_US.UTF-8"; From 164ef75dcc1d42a22800df64cb42e8fa3b95e793 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 25 Apr 2016 18:19:37 +0200 Subject: [PATCH 32/96] Revert "pythonPackages.qutip: use numpy.blas" This reverts commit 291ec17c5872a1d197581c40f8b71ca6921a40fe. --- pkgs/top-level/python-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 0564fc9870a..846e07c9ac4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18718,7 +18718,7 @@ in modules // { propagatedBuildInputs = with self; [ numpy scipy matplotlib pyqt4 cython ]; - buildInputs = [ pkgs.gcc pkgs.qt4 numpy.blas self.nose ]; + buildInputs = [ pkgs.gcc pkgs.qt4 pkgs.blas self.nose ]; meta = { description = "QuTiP - Quantum Toolbox in Python"; From 443ac8970d61f2140e13a70cbe005adcfe386650 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 25 Apr 2016 18:19:50 +0200 Subject: [PATCH 33/96] Revert "pythonPackages.scipy: don't propagate blas" This reverts commit d05783a8d7cc07760542f7f2fc30be576cb29ce6. --- pkgs/development/python-modules/scipy.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/scipy.nix b/pkgs/development/python-modules/scipy.nix index b31f539ebdd..ae312cd32d5 100644 --- a/pkgs/development/python-modules/scipy.nix +++ b/pkgs/development/python-modules/scipy.nix @@ -9,8 +9,8 @@ in buildPythonPackage (args // rec { name = "scipy-${version}"; - buildInputs = (args.buildInputs or [ gfortran nose passthru.blas ]); - propagatedBuildInputs = (args.propagatedBuildInputs or [ numpy]); + buildInputs = (args.buildInputs or [ gfortran nose ]); + propagatedBuildInputs = (args.propagatedBuildInputs or [ passthru.blas numpy]); preConfigure = '' sed -i '0,/from numpy.distutils.core/s//import setuptools;from numpy.distutils.core/' setup.py From f2f7ec3f973badf953d53c1e91146003d1e06cb6 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 25 Apr 2016 18:20:01 +0200 Subject: [PATCH 34/96] Revert "pythonPackages.numpy: don't propagate blas" This reverts commit 983f300d74852b5a4a810085a508d413d9c56a1f. --- pkgs/development/python-modules/numpy.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/numpy.nix b/pkgs/development/python-modules/numpy.nix index 0276d9ede3d..141c8b14fa6 100644 --- a/pkgs/development/python-modules/numpy.nix +++ b/pkgs/development/python-modules/numpy.nix @@ -9,8 +9,8 @@ in buildPythonPackage (args // rec { name = "numpy-${version}"; disabled = isPyPy; - buildInputs = args.buildInputs or [ gfortran nose passthru.blas ]; - propagatedBuildInputs = args.propagatedBuildInputs or [ ]; + buildInputs = args.buildInputs or [ gfortran nose ]; + propagatedBuildInputs = args.propagatedBuildInputs or [ passthru.blas ]; preConfigure = '' sed -i 's/-faltivec//' numpy/distutils/system_info.py From a4ad51f0c1e676975b87d28e3dfc50be319c72b5 Mon Sep 17 00:00:00 2001 From: Ben Darwin Date: Mon, 25 Apr 2016 12:33:31 -0400 Subject: [PATCH 35/96] switch from pkgs.blas to numpy.blas --- pkgs/top-level/python-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d10a64c588d..3bc71adfb6c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -20105,7 +20105,7 @@ in modules // { # 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 pkgs.blas ] ++ (with self; [ nose numpy pydot_ng scipy six ]); + propagatedBuildInputs = [ stdenv ] ++ (with self; [ nose numpy numpy.blas pydot_ng scipy six ]); meta = { homepage = http://deeplearning.net/software/theano/; From 0ec4627d8a407d03233c86c285ca0cf2d331ed18 Mon Sep 17 00:00:00 2001 From: Markus Hauck Date: Mon, 25 Apr 2016 18:38:23 +0200 Subject: [PATCH 36/96] asciinema: 1.1.1 -> 1.2.0 --- pkgs/top-level/go-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 00d5f44128a..17edad071fe 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -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 { From 88a1b69090106c24d06e23e46ff3986fe9a81fd5 Mon Sep 17 00:00:00 2001 From: Allen Nelson Date: Mon, 25 Apr 2016 12:03:23 -0500 Subject: [PATCH 37/96] ordereddict: do not restrict to python2.6 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9e3605827d3..ee06f17a163 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -13659,8 +13659,8 @@ 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"; From 618c75de7b15d159f0414ce2b940c30ad13efa6c Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 25 Apr 2016 20:36:03 +0300 Subject: [PATCH 38/96] tdesktop: fix build --- .../networking/instant-messengers/telegram/tdesktop/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix index e734ddc5700..41a3c690f7b 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix @@ -31,7 +31,7 @@ in stdenv.mkDerivation rec { buildInputs = [ breakpad ffmpeg openalSoft openssl zlib libexif lzma libopus gtk2 glib libappindicator-gtk2 libunity cairo pango gdk_pixbuf atk - dee libdbusmenu-glib libva qmakeHook + dee libdbusmenu-glib libva qtbase qmakeHook # Qt dependencies libxcb xcbutilwm xcbutilimage xcbutilkeysyms libxkbcommon libpng libjpeg freetype harfbuzz pcre16 xproto libX11 From 74a47fcd4079f12c15550dff51684d9e49610298 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 25 Apr 2016 20:07:10 +0200 Subject: [PATCH 39/96] perlPackages.EncodeEUCJPASCII: fix build Fixes #14986. --- pkgs/top-level/perl-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index aed9a82d85b..89706545031 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -4409,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 ]; From 79a215e78d9c3dec421a7a6a088431b2153f3532 Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Mon, 25 Apr 2016 20:18:26 +0200 Subject: [PATCH 40/96] dir2opus: 0.12.1 -> 0.12.2 --- pkgs/tools/audio/dir2opus/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 +} From ede605e4f1b651ac61f913638fe69698dd7a33ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 25 Apr 2016 20:37:47 +0200 Subject: [PATCH 41/96] calibre: fix #14938 build Thanks to a hack and qmake help from @ttuegel. --- pkgs/applications/misc/calibre/default.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/calibre/default.nix b/pkgs/applications/misc/calibre/default.nix index d7ab712dae6..7c6f3cfdffb 100644 --- a/pkgs/applications/misc/calibre/default.nix +++ b/pkgs/applications/misc/calibre/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, python, pyqt5, sip_4_16, poppler_utils, pkgconfig, libpng -, imagemagick, libjpeg, fontconfig, podofo, qtbase, icu, sqlite +, imagemagick, libjpeg, fontconfig, podofo, qtbase, qmakeHook, icu, sqlite , makeWrapper, unrarSupport ? false, chmlib, pythonPackages, xz, libusb1, libmtp , xdg_utils }: @@ -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 From 088601cb51c5c3126f7051aa54baee2a162231d2 Mon Sep 17 00:00:00 2001 From: Dmitry Kalinkin Date: Mon, 25 Apr 2016 17:38:19 -0400 Subject: [PATCH 42/96] root: fix chrooted build, workaround 491f7f017c4dd (cmake: set LIBDIR and INCLUDEDIR for multiple outputs) --- pkgs/applications/science/misc/root/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/applications/science/misc/root/default.nix b/pkgs/applications/science/misc/root/default.nix index 583ba397487..94572301dd2 100644 --- a/pkgs/applications/science/misc/root/default.nix +++ b/pkgs/applications/science/misc/root/default.nix @@ -12,8 +12,14 @@ stdenv.mkDerivation rec { buildInputs = [ cmake pkgconfig python libX11 libXpm libXft libXext zlib lzma ]; + 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"; From 8bfff4282fd0e85be45699fc58ee283c1c4f9966 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 25 Apr 2016 23:43:34 +0200 Subject: [PATCH 43/96] fmit: 1.0.8 -> 1.0.13 --- pkgs/applications/audio/fmit/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/fmit/default.nix b/pkgs/applications/audio/fmit/default.nix index 83367b83e48..d99e2e577eb 100644 --- a/pkgs/applications/audio/fmit/default.nix +++ b/pkgs/applications/audio/fmit/default.nix @@ -9,10 +9,10 @@ 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"; From d8faa585b04866e53536881155b78ba6054f8bce Mon Sep 17 00:00:00 2001 From: Charles Strahan Date: Tue, 4 Aug 2015 04:40:42 -0400 Subject: [PATCH 44/96] dbus-map: init 2015-05-28 --- pkgs/tools/misc/dbus-map/default.nix | 26 ++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 28 insertions(+) create mode 100644 pkgs/tools/misc/dbus-map/default.nix 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/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d278b5d2419..35f3bb523a1 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16167,6 +16167,8 @@ in enableAllFeatures = true; }); + dbus-map = callPackage ../tools/misc/dbus-map { }; + dosbox = callPackage ../misc/emulators/dosbox { }; dpkg = callPackage ../tools/package-management/dpkg { }; From 3a542c737414d8cc4d8759997983f596fcd6a6a1 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Tue, 26 Apr 2016 00:50:10 +0000 Subject: [PATCH 45/96] ostree: v2015.3 -> v2016.5 --- pkgs/tools/misc/ostree/default.nix | 66 ++++++++++++++++++++---------- 1 file changed, 45 insertions(+), 21 deletions(-) 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 - ''; } + From cd69c05a5021f8fcf613ed7fb18df5b208c2e915 Mon Sep 17 00:00:00 2001 From: Chris Martin Date: Fri, 8 Apr 2016 20:22:09 -0700 Subject: [PATCH 46/96] pythonPackages.closure-linter: init at 2.3.19 --- pkgs/top-level/python-packages.nix | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9e3605827d3..270c5c1b4ae 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3266,6 +3266,30 @@ 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"; From 4c10d404e7f3d68fb818b6dddc98b162b0d00832 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Tue, 26 Apr 2016 09:14:39 +0200 Subject: [PATCH 47/96] github PR template: reformulate the sandboxing help It's been reported that when running through nix daemon, sandboxing can't be turned on by passing `--option` (silently ignored), so let's not suggest that way. https://github.com/NixOS/nixpkgs/issues/14866#issuecomment-214619909 --- .github/PULL_REQUEST_TEMPLATE.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 324c5f17f7a..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-sandbox true` or [nix.useSandbox](http://nixos.org/nixos/manual/options.html#opt-nix.useSandbox) 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 From 272c87fbdf45cc4a0bf9e58eaeb4e837ed83ecee Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Tue, 26 Apr 2016 10:45:48 +0200 Subject: [PATCH 48/96] antimicro 2.18 -> 2.18.2 The original repo was deleted by it's author. I took the one with the most recent releases I could find. See: https://github.com/Ryochan7/antimicro-packaging/issues/1#issuecomment-205949365 --- pkgs/tools/misc/antimicro/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) 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 = [ From 3748cdc791b990ab6df6ee9f66f457f10cd5c949 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Tue, 26 Apr 2016 11:15:28 +0200 Subject: [PATCH 49/96] awstats: fix build after closure-size merge --- pkgs/tools/system/awstats/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 From d7f032e8053a046f03fb8a0f24339e03bc174bd0 Mon Sep 17 00:00:00 2001 From: Allen Nelson Date: Tue, 26 Apr 2016 05:24:25 -0500 Subject: [PATCH 50/96] Add new package "lsi" (#12780) --- lib/maintainers.nix | 1 + pkgs/top-level/python-packages.nix | 34 +++++++++++++++++++++++++++++- 2 files changed, 34 insertions(+), 1 deletion(-) diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 6dad71ad564..ae38b7acf6a 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 "; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index fe97b927b8d..f00952a4090 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10441,6 +10441,38 @@ in modules // { }; }; + colored = buildPythonPackage rec { + name = "colored-${version}"; + version = "1.1.5"; + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/c/colored/${name}.tar.gz"; + sha256 = "1r1vsypk8v7az82d66bidbxlndx1h7xd4m43hpg1a6hsjr30wrm3"; + }; + }; + + + lsi = buildPythonPackage rec { + name = "lsi-${version}"; + version = "0.2.2"; + disabled = isPy3k; + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/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"; @@ -20118,7 +20150,7 @@ in modules // { disabled = isPyPy || isPy26 || isPy27; checkPhase = '' - ${python.interpreter} test/*.py + ${python.interpreter} test/*.py #*/ ''; meta = { description = "Simple and extensible IRC bot"; From ae8a3a14f03cda32340dd55905b4d8c1b18b0446 Mon Sep 17 00:00:00 2001 From: Philipp Hausmann Date: Tue, 26 Apr 2016 12:49:10 +0200 Subject: [PATCH 51/96] elasticsearch: 2.2.0 -> 2.3.1 (#14993) --- pkgs/servers/search/elasticsearch/2.x.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/search/elasticsearch/2.x.nix b/pkgs/servers/search/elasticsearch/2.x.nix index a37703ae7fd..33a05267395 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 ]; From dfe608c8a2ecfdf0ab2838a967440207250a0b95 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 26 Apr 2016 15:10:42 +0300 Subject: [PATCH 52/96] symlinkJoin: accept set as an argument with additional options --- nixos/modules/services/logging/logcheck.nix | 5 ++++- nixos/modules/services/mail/dovecot.nix | 6 ++++-- pkgs/build-support/trivial-builders.nix | 14 +++++++++++--- pkgs/desktops/kde-5/plasma-5.5/default.nix | 6 ++++-- 4 files changed, 23 insertions(+), 8 deletions(-) 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/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/desktops/kde-5/plasma-5.5/default.nix b/pkgs/desktops/kde-5/plasma-5.5/default.nix index a4f5c7c2320..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 {}; From 5690c6ca071e388e1ff9f9981a6def0a45349be0 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 26 Apr 2016 15:26:15 +0300 Subject: [PATCH 53/96] deadbeef-with-plugins: use symlinkJoin --- pkgs/applications/audio/deadbeef/wrapper.nix | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) 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 ]; }) +} From 41b6a178260ad1fe627c0a9faf795920b4dd68dc Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 26 Apr 2016 15:26:23 +0300 Subject: [PATCH 54/96] puredata-with-plugins: use symlinkJoin --- pkgs/applications/audio/puredata/wrapper.nix | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) 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 ]; }) +} From d04dafd64eaaff5b55ba277662a7ec376cc2f10f Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 26 Apr 2016 15:26:45 +0300 Subject: [PATCH 55/96] gimp: add version to derivation, use symlinkJoin for a wrapper --- pkgs/applications/graphics/gimp/2.8.nix | 3 ++- pkgs/applications/graphics/gimp/wrapper.nix | 19 ++++++------------- 2 files changed, 8 insertions(+), 14 deletions(-) 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 ]; }) +} From d40e636bdc27341ca8dc72b0dd6763126930138c Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 26 Apr 2016 15:26:55 +0300 Subject: [PATCH 56/96] k3b: use symlinkJoin --- pkgs/applications/misc/k3b/wrapper.nix | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/pkgs/applications/misc/k3b/wrapper.nix b/pkgs/applications/misc/k3b/wrapper.nix index d5c98a2affa..486d3fb7ddf 100644 --- a/pkgs/applications/misc/k3b/wrapper.nix +++ b/pkgs/applications/misc/k3b/wrapper.nix @@ -1,22 +1,14 @@ -{ lib, buildEnv, k3b-original, cdrtools, makeWrapper }: +{ lib, symlinkJoin, k3b-original, cdrtools, makeWrapper }: let binPath = lib.makeBinPath [ cdrtools ]; -in buildEnv { +in symlinkJoin { name = "k3b-${k3b-original.version}"; paths = [ k3b-original ]; 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 ${k3b-original}/bin/*; do - ln -s $i $out/bin - done - fi wrapProgram $out/bin/k3b \ --prefix PATH ':' ${binPath} ''; From c1e9ea6c86343541978593fe1af068d9d62d4e2a Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 26 Apr 2016 15:27:05 +0300 Subject: [PATCH 57/96] rxvt_unicode-with-plugins: use symlinkJoin --- .../misc/rxvt_unicode/wrapper.nix | 33 ++++++++----------- 1 file changed, 13 insertions(+), 20 deletions(-) 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" + ''; +} From 1f89dbd46b9aa6c8ca3877e2fb4463dd61cf217b Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 26 Apr 2016 15:27:17 +0300 Subject: [PATCH 58/96] pidgin-with-plugins: use symlinkJoin --- .../instant-messengers/pidgin/wrapper.nix | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) 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 ]; }) +} From 7b4fc0f5a97aca61a08643938f5104254cc6a39b Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 26 Apr 2016 15:27:25 +0300 Subject: [PATCH 59/96] avidemux: use symlinkJoin --- pkgs/applications/video/avidemux/wrapper.nix | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) 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 From aa1a40b63d30e994232bcf69fbadb8873743a1c9 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 26 Apr 2016 15:27:48 +0300 Subject: [PATCH 60/96] dwarf-therapist: add version to derivation, use symlinkJoin --- .../dwarf-therapist/default.nix | 6 ++--- .../dwarf-therapist/wrapper.nix | 22 +++++-------------- 2 files changed, 7 insertions(+), 21 deletions(-) diff --git a/pkgs/games/dwarf-fortress/dwarf-therapist/default.nix b/pkgs/games/dwarf-fortress/dwarf-therapist/default.nix index 6c094ff20f8..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, 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"; 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) From 73db7887edc223bde336e84e4001ce692c8a922f Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 26 Apr 2016 15:27:59 +0300 Subject: [PATCH 61/96] brasero: use symlinkJoin --- pkgs/tools/cd-dvd/brasero/wrapper.nix | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/pkgs/tools/cd-dvd/brasero/wrapper.nix b/pkgs/tools/cd-dvd/brasero/wrapper.nix index 021e0da0e72..839cc1d604e 100644 --- a/pkgs/tools/cd-dvd/brasero/wrapper.nix +++ b/pkgs/tools/cd-dvd/brasero/wrapper.nix @@ -1,22 +1,14 @@ -{ lib, buildEnv, brasero-original, cdrtools, makeWrapper }: +{ lib, symlinkJoin, brasero-original, cdrtools, makeWrapper }: let binPath = lib.makeBinPath [ cdrtools ]; -in buildEnv { +in symlinkJoin { name = "brasero-${brasero-original.version}"; paths = [ brasero-original ]; 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 ${brasero-original}/bin/*; do - ln -s $i $out/bin - done - fi wrapProgram $out/bin/brasero \ --prefix PATH ':' ${binPath} ''; From 8415fa35c79214fc2093882ed688f98f9abf7048 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 26 Apr 2016 15:28:06 +0300 Subject: [PATCH 62/96] fcitx-with-plugins: use symlinkJoin --- pkgs/tools/inputmethods/fcitx/wrapper.nix | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) 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 ]; }) +} From d5e6a4494a2eb00e52b309fc7a196d84ff8625ec Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 26 Apr 2016 14:38:03 +0200 Subject: [PATCH 63/96] Python: use PyPI mirror (#15001) * mirrors: add pypi * Python: Use pypi mirror for all PyPI packages --- doc/languages-frameworks/python.md | 14 +- pkgs/applications/misc/electrum/default.nix | 2 +- pkgs/applications/misc/khal/default.nix | 2 +- pkgs/applications/misc/pitz/default.nix | 2 +- pkgs/applications/science/spyder/default.nix | 2 +- .../bugseverywhere/default.nix | 2 +- .../window-managers/i3/pystatus.nix | 2 +- pkgs/build-support/fetchurl/mirrors.nix | 5 + pkgs/development/arduino/ino/default.nix | 2 +- pkgs/development/compilers/julia/git.nix | 2 +- .../python-modules/buildout-nix/default.nix | 2 +- .../python-modules/h5py/default.nix | 2 +- .../python-modules/matplotlib/default.nix | 2 +- .../python-modules/pycrypto/default.nix | 2 +- .../python-modules/setuptools/default.nix | 2 +- .../python-modules/tables/default.nix | 2 +- .../python-modules/yolk/default.nix | 2 +- .../build-managers/buildbot-slave/default.nix | 2 +- .../tools/build-managers/buildbot/default.nix | 2 +- .../tools/devpi-client/default.nix | 2 +- pkgs/servers/matrix-synapse/default.nix | 2 +- pkgs/tools/admin/cli53/default.nix | 2 +- pkgs/tools/admin/salt/default.nix | 2 +- pkgs/tools/admin/salt/testing.nix | 2 +- pkgs/tools/backup/borg/default.nix | 2 +- pkgs/tools/networking/httpie/default.nix | 2 +- .../networking/speedtest-cli/default.nix | 2 +- pkgs/tools/package-management/nox/default.nix | 2 +- pkgs/tools/security/sshuttle/default.nix | 2 +- pkgs/tools/text/grin/default.nix | 2 +- pkgs/tools/video/vnc2flv/default.nix | 2 +- pkgs/top-level/python-packages.nix | 1978 ++++++++--------- 32 files changed, 1030 insertions(+), 1025 deletions(-) diff --git a/doc/languages-frameworks/python.md b/doc/languages-frameworks/python.md index fc0a0ba987a..81da5c70439 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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/servers/matrix-synapse/default.nix b/pkgs/servers/matrix-synapse/default.nix index ee0e66baa95..7a558a03031 100644 --- a/pkgs/servers/matrix-synapse/default.nix +++ b/pkgs/servers/matrix-synapse/default.nix @@ -5,7 +5,7 @@ let version = "0.6.8"; src = fetchurl { - url = "https://pypi.python.org/packages/source/m/matrix-angular-sdk/matrix-angular-sdk-${version}.tar.gz"; + url = "mirror://pypi/m/matrix-angular-sdk/matrix-angular-sdk-${version}.tar.gz"; sha256 = "0gmx4y5kqqphnq3m7xk2vpzb0w2a4palicw7wfdr1q2schl9fhz2"; }; }; 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/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/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/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/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/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/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/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/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/python-packages.nix b/pkgs/top-level/python-packages.nix index f00952a4090..20fe3795742 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"; }; @@ -203,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"; }; @@ -335,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"; }; @@ -361,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"; }; @@ -415,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"; }; @@ -440,7 +440,7 @@ in modules // { version = "0.21.5"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/a/aiohttp/${name}.tar.gz"; + url = "mirror://pypi/a/aiohttp/${name}.tar.gz"; sha256 = "0n8517wc8b6yc925f7zhgl4wqf4ay1w2fzar0pj1h20yfa1wiids"; }; @@ -462,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"; }; @@ -483,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"; }; @@ -502,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"; }; @@ -517,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"; }; @@ -540,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"; }; @@ -634,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"; }; @@ -653,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"; }; @@ -752,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"; }; @@ -769,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"; }; @@ -800,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"; }; @@ -838,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"; }; @@ -853,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"; }; @@ -874,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"; }; @@ -907,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"; }; @@ -921,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"; }; @@ -937,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"; }; @@ -951,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"; }; @@ -978,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"; }; }; @@ -988,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 ]; @@ -1008,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"; }; @@ -1024,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"; }; @@ -1057,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"; }; @@ -1079,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"; }; @@ -1097,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"; }; @@ -1131,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"; }; @@ -1155,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"; }; @@ -1179,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"; }; @@ -1195,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"; }; @@ -1212,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"; }; @@ -1232,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"; }; @@ -1272,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 @@ -1303,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"; }; @@ -1321,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 = { @@ -1337,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 ]; @@ -1356,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 ]; @@ -1376,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 = '' @@ -1396,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 = '' @@ -1416,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 ]; @@ -1432,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 = '' @@ -1452,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 = '' @@ -1472,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 ]; @@ -1491,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 ]; @@ -1510,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"; }; @@ -1525,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"; }; @@ -1544,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"; }; @@ -1562,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"; }; @@ -1582,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"; }; @@ -1602,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"; }; @@ -1638,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"; }; @@ -1660,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"; }; @@ -1711,7 +1711,7 @@ in modules // { name = "betamax-0.6.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/b/betamax/${name}.tar.gz"; + url = "mirror://pypi/b/betamax/${name}.tar.gz"; sha256 = "0vw4d53jbbb2kdl7l891h8iyxklqcd6ldvgcyhw9hl40ljdhv1wz"; }; @@ -1730,7 +1730,7 @@ in modules // { version = "0.3.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/b/betamax-matchers/${name}.tar.gz"; + url = "mirror://pypi/b/betamax-matchers/${name}.tar.gz"; sha256 = "039kvqsdcvvlfxjc3n1x2xvjg6qkqbql0p7rc4z7bnxm9kcm88la"; }; @@ -1812,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 = { @@ -1838,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"; }; @@ -1880,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"; }; @@ -1894,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"; }; @@ -1914,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"; }; @@ -1947,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; @@ -1970,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"; }; @@ -1998,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"; }; @@ -2017,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 ]; @@ -2028,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"; }; }; @@ -2060,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"; }; @@ -2071,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"; }; @@ -2085,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"; }; @@ -2099,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"; }; @@ -2113,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"; }; @@ -2131,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"; }; @@ -2149,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"; }; @@ -2168,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"; }; @@ -2188,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"; }; @@ -2206,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"; }; @@ -2245,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"; }; @@ -2320,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"; }; @@ -2383,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"; }; @@ -2412,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"; }; @@ -2519,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"; }; @@ -2550,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"; }; @@ -2571,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"; }; @@ -2596,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"; }; @@ -2641,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"; }; @@ -2672,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"; }; @@ -2691,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"; }; @@ -2715,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"; }; @@ -2733,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"; }; @@ -2751,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"; }; @@ -2778,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 }; @@ -2798,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; @@ -2809,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"; }; @@ -2862,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"; }; @@ -2880,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"; }; @@ -2923,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"; }; @@ -2967,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"; }; @@ -2990,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"; }; @@ -3006,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"; }; @@ -3021,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"; }; @@ -3067,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"; }; @@ -3105,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"; }; @@ -3122,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"; }; @@ -3148,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"; }; @@ -3177,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"; }; @@ -3198,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"; }; @@ -3217,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"; }; @@ -3235,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"; }; @@ -3253,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"; }; @@ -3295,7 +3295,7 @@ in modules // { 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"; }; @@ -3321,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"; }; @@ -3343,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"; }; @@ -3360,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"; }; @@ -3381,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"; }; }; @@ -3392,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"; }; @@ -3415,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"; }; @@ -3437,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"; }; @@ -3453,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"; }; @@ -3472,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"; }; @@ -3517,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"; }; @@ -3537,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"; }; @@ -3556,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"; }; }; @@ -3589,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"; }; @@ -3606,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"; }; @@ -3624,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 = { @@ -3636,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 = { @@ -3677,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"; }; @@ -3709,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"; }; @@ -3726,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"; }; @@ -3746,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"; }; }; @@ -3756,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"; }; @@ -3775,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"; }; @@ -3798,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"; }; @@ -3855,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"; }; @@ -3873,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"; }; @@ -3894,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"; }; @@ -3921,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"; }; @@ -4006,7 +4006,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"; }; @@ -4032,7 +4032,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"; }; @@ -4049,7 +4049,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"; }; @@ -4064,7 +4064,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"; }; @@ -4080,7 +4080,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"; }; @@ -4098,7 +4098,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"; }; @@ -4121,7 +4121,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"; }; @@ -4145,7 +4145,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"; }; @@ -4165,7 +4165,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"; }; @@ -4184,7 +4184,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"; }; @@ -4209,7 +4209,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"; }; }; @@ -4217,7 +4217,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"; }; @@ -4235,7 +4235,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"; }; @@ -4251,7 +4251,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"; }; @@ -4269,7 +4269,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"; }; @@ -4287,7 +4287,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"; }; @@ -4311,7 +4311,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"; }; @@ -4331,7 +4331,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"; }; @@ -4348,7 +4348,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"; }; @@ -4365,7 +4365,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"; }; @@ -4383,7 +4383,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"; }; @@ -4406,7 +4406,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"; }; @@ -4427,7 +4427,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"; }; @@ -4454,7 +4454,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' @@ -4465,7 +4465,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"; }; @@ -4488,7 +4488,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"; }; @@ -4516,7 +4516,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"; }; @@ -4543,7 +4543,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"; }; @@ -4568,7 +4568,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"; }; @@ -4588,7 +4588,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"; }; @@ -4606,7 +4606,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"; }; @@ -4633,7 +4633,7 @@ in modules // { version = "0.3.1"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/N/NeuroTools/${name}.tar.gz"; + url = "mirror://pypi/N/NeuroTools/${name}.tar.gz"; sha256 = "0ly6qa87l3afhksab06vp1iimlbm1kdnsw98mxcnpzz9q07l4nd4"; }; @@ -4667,7 +4667,7 @@ in modules // { 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"; }; @@ -4712,7 +4712,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"; }; @@ -4732,7 +4732,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"; }; @@ -4750,7 +4750,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"; }; @@ -4793,7 +4793,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"; }; @@ -4808,7 +4808,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"; }; @@ -4835,7 +4835,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"; }; @@ -4863,7 +4863,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"; }; @@ -4886,7 +4886,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"; }; @@ -4912,7 +4912,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"; }; @@ -4962,7 +4962,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"; }; @@ -4982,7 +4982,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"; }; @@ -5000,10 +5000,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"; }; @@ -5024,7 +5024,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"; }; @@ -5044,7 +5044,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"; }; @@ -5062,7 +5062,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"; }; @@ -5087,7 +5087,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"; }; @@ -5117,7 +5117,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"; }; @@ -5133,7 +5133,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"; }; @@ -5152,7 +5152,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"; }; @@ -5169,7 +5169,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"; }; @@ -5186,7 +5186,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"; }; @@ -5246,7 +5246,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"; }; @@ -5283,7 +5283,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"; }; @@ -5301,7 +5301,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"; }; @@ -5322,7 +5322,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"; }; @@ -5349,7 +5349,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"; }; @@ -5365,7 +5365,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"; }; @@ -5388,7 +5388,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"; }; @@ -5413,7 +5413,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"; }; @@ -5437,7 +5437,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"; }; @@ -5495,7 +5495,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"; }; @@ -5547,7 +5547,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"; }; @@ -5565,7 +5565,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"; }; @@ -5580,7 +5580,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 ]; @@ -5596,7 +5596,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 = { @@ -5612,7 +5612,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; @@ -5654,7 +5654,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"; }; @@ -5670,7 +5670,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"; }; @@ -5687,7 +5687,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 ]; @@ -5703,7 +5703,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"; }; }; @@ -5713,7 +5713,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"; }; @@ -5738,7 +5738,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"; }; @@ -5752,7 +5752,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"; }; @@ -5840,7 +5840,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"; }; @@ -5860,7 +5860,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"; }; @@ -5882,7 +5882,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"; }; @@ -5916,7 +5916,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"; }; @@ -5929,7 +5929,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"; }; @@ -5940,7 +5940,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"; }; @@ -5967,7 +5967,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"; }; @@ -6072,7 +6072,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"; }; @@ -6147,7 +6147,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"; }; @@ -6165,7 +6165,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"; }; @@ -6189,7 +6189,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"; }; @@ -6212,7 +6212,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"; }; @@ -6231,7 +6231,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"; }; @@ -6275,7 +6275,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"; }; @@ -6291,7 +6291,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"; }; @@ -6314,7 +6314,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"; }; @@ -6375,7 +6375,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"; }; @@ -6392,7 +6392,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"; }; @@ -6435,7 +6435,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"; }; @@ -6466,7 +6466,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"; }; @@ -6484,7 +6484,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"; }; @@ -6510,7 +6510,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"; }; @@ -6536,7 +6536,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"; }; @@ -6566,7 +6566,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"; }; @@ -6616,7 +6616,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"; }; @@ -6732,7 +6732,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"; }; @@ -6792,7 +6792,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"; }; @@ -6824,7 +6824,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"; }; @@ -6844,7 +6844,7 @@ in modules // { 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"; }; @@ -6861,7 +6861,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"; }; @@ -6885,7 +6885,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"; }; @@ -6904,7 +6904,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"; }; @@ -6922,7 +6922,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"; }; @@ -6939,7 +6939,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"; }; @@ -6957,7 +6957,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"; }; @@ -6979,7 +6979,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"; }; @@ -7000,7 +7000,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"; }; @@ -7020,7 +7020,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"; }; @@ -7040,7 +7040,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"; }; @@ -7068,7 +7068,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"; }; @@ -7086,7 +7086,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"; }; @@ -7107,7 +7107,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"; }; @@ -7127,7 +7127,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"; }; @@ -7169,7 +7169,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"; }; @@ -7213,7 +7213,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"; }; @@ -7231,7 +7231,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"; }; @@ -7253,7 +7253,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"; }; @@ -7271,7 +7271,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"; }; @@ -7284,7 +7284,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"; }; @@ -7297,7 +7297,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"; }; @@ -7314,7 +7314,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"; }; @@ -7331,7 +7331,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"; }; @@ -7379,7 +7379,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"; }; @@ -7410,7 +7410,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"; }; @@ -7428,7 +7428,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"; }; @@ -7449,7 +7449,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"; }; @@ -7461,7 +7461,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"; }; @@ -7498,7 +7498,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"; }; @@ -7517,7 +7517,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"; }; @@ -7534,7 +7534,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"; }; @@ -7550,7 +7550,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"; }; @@ -7566,7 +7566,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"; }; @@ -7580,7 +7580,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"; }; @@ -7605,7 +7605,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 ]; @@ -7622,7 +7622,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"; }; @@ -7636,7 +7636,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"; }; @@ -7656,7 +7656,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"; }; @@ -7672,7 +7672,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"; }; @@ -7694,7 +7694,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"; }; @@ -7710,7 +7710,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"; }; @@ -7727,7 +7727,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"; }; @@ -7742,7 +7742,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"; }; }; @@ -7796,7 +7796,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"; }; @@ -7813,7 +7813,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"; }; @@ -7830,7 +7830,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"; }; @@ -7846,7 +7846,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"; }; @@ -7888,7 +7888,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"; }; @@ -7915,7 +7915,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"; }; @@ -7931,7 +7931,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 = '' @@ -7946,7 +7946,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"; }; }; @@ -7956,7 +7956,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"; }; @@ -7972,7 +7972,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"; }; @@ -7989,7 +7989,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"; }; @@ -8007,7 +8007,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"; }; @@ -8026,7 +8026,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"; }; @@ -8089,7 +8089,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"; }; @@ -8108,7 +8108,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"; }; @@ -8256,7 +8256,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"; }; @@ -8275,7 +8275,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"; }; @@ -8297,7 +8297,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"; }; @@ -8316,7 +8316,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"; }; @@ -8333,7 +8333,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"; }; @@ -8354,7 +8354,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"; }; @@ -8375,7 +8375,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"; }; @@ -8393,7 +8393,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"; }; @@ -8414,7 +8414,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"; }; @@ -8433,7 +8433,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"; }; @@ -8452,7 +8452,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"; }; @@ -8476,7 +8476,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"; }; @@ -8495,7 +8495,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"; }; @@ -8527,7 +8527,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"; }; @@ -8544,7 +8544,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"; }; @@ -8563,7 +8563,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"; }; @@ -8579,7 +8579,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"; }; }); @@ -8607,7 +8607,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"; }; @@ -8626,7 +8626,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"; }; @@ -8645,7 +8645,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"; }; @@ -8670,7 +8670,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"; }; @@ -8691,7 +8691,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"; }; @@ -8744,7 +8744,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"; }; @@ -8762,7 +8762,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"; }; @@ -8782,7 +8782,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 ]; @@ -8802,7 +8802,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"; }; @@ -8823,7 +8823,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"; }; @@ -8839,7 +8839,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"; }; @@ -8857,7 +8857,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"; }; @@ -8888,7 +8888,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"; }; @@ -8912,7 +8912,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"; }; @@ -8932,7 +8932,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"; }; @@ -8953,7 +8953,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"; }; @@ -8974,7 +8974,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"; }; @@ -8991,7 +8991,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"; }; @@ -9019,7 +9019,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"; }; @@ -9050,7 +9050,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"; }; @@ -9070,7 +9070,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"; }; @@ -9091,7 +9091,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"; }; @@ -9109,7 +9109,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"; }; @@ -9128,7 +9128,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"; }; @@ -9146,7 +9146,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"; }; @@ -9165,7 +9165,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"; }; @@ -9188,7 +9188,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"; }; @@ -9213,7 +9213,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"; }; @@ -9233,7 +9233,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"; }; @@ -9251,7 +9251,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"; }; @@ -9272,7 +9272,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"; }; @@ -9290,7 +9290,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"; }; @@ -9313,7 +9313,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"; }; @@ -9347,7 +9347,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"; }; @@ -9375,7 +9375,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"; }; @@ -9397,7 +9397,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"; }; @@ -9415,7 +9415,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"; }; @@ -9428,7 +9428,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"; }; @@ -9451,7 +9451,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"; }; @@ -9479,7 +9479,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"; }; @@ -9492,7 +9492,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"; }; @@ -9538,7 +9538,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"; }; @@ -9586,7 +9586,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"; }; @@ -9601,7 +9601,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"; }; @@ -9652,7 +9652,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"; }; @@ -9717,7 +9717,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"; }; @@ -9744,7 +9744,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"; }; }; @@ -9753,7 +9753,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"; }; @@ -9833,7 +9833,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"; }; @@ -9860,7 +9860,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"; }; @@ -9878,7 +9878,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"; }; @@ -9891,7 +9891,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"; }; @@ -9903,7 +9903,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"; }; @@ -9935,7 +9935,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"; }; @@ -9961,7 +9961,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"; }; @@ -10007,7 +10007,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"; }; @@ -10037,7 +10037,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"; }; @@ -10081,7 +10081,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"; }; @@ -10110,7 +10110,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"; }; @@ -10132,7 +10132,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"; }; @@ -10148,7 +10148,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"; }; @@ -10198,7 +10198,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"; }; @@ -10220,7 +10220,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"; }; @@ -10248,7 +10248,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"; }; @@ -10293,7 +10293,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"; }; @@ -10346,7 +10346,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"; }; @@ -10363,7 +10363,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"; }; @@ -10381,7 +10381,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"; }; @@ -10401,7 +10401,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"; }; @@ -10445,7 +10445,7 @@ in modules // { name = "colored-${version}"; version = "1.1.5"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/colored/${name}.tar.gz"; + url = "mirror://pypi/c/colored/${name}.tar.gz"; sha256 = "1r1vsypk8v7az82d66bidbxlndx1h7xd4m43hpg1a6hsjr30wrm3"; }; }; @@ -10456,7 +10456,7 @@ in modules // { version = "0.2.2"; disabled = isPy3k; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/l/lsi/${name}.tar.gz"; + url = "mirror://pypi/l/lsi/${name}.tar.gz"; sha256 = "0429iilb06yhsmvj3xp6wyhfh1rp4ndxlhwrm80r97z0w7plrk94"; }; propagatedBuildInputs = [ @@ -10480,7 +10480,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"; }; @@ -10512,7 +10512,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"; }; @@ -10535,7 +10535,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"; }; }; @@ -10544,7 +10544,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"; }; @@ -10629,7 +10629,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"; }; */ @@ -10653,7 +10653,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"; }; @@ -10670,7 +10670,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"; }; @@ -10688,7 +10688,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"; }; @@ -10706,7 +10706,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"; }; @@ -10736,7 +10736,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"; }; @@ -10762,7 +10762,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"; }; @@ -10796,7 +10796,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"; }; @@ -10821,7 +10821,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"; }; @@ -10841,7 +10841,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"; }; @@ -10856,7 +10856,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"; }; @@ -10877,7 +10877,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 ]; @@ -10886,7 +10886,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 ]; @@ -10923,7 +10923,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"; }; @@ -10944,7 +10944,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"; }; @@ -10962,7 +10962,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"; }; @@ -10988,7 +10988,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"; }; @@ -11006,7 +11006,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"; }; @@ -11033,7 +11033,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"; }; @@ -11058,7 +11058,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"; }; @@ -11078,7 +11078,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"; }; @@ -11099,7 +11099,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"; }; @@ -11126,7 +11126,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"; }; @@ -11155,7 +11155,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"; }; @@ -11180,7 +11180,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"; }; @@ -11228,7 +11228,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"; }; @@ -11278,7 +11278,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"; }; }); @@ -11288,7 +11288,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"; }; @@ -11307,7 +11307,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"; }; @@ -11325,7 +11325,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"; }; @@ -11371,7 +11371,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"; }; @@ -11395,7 +11395,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"; }; @@ -11420,7 +11420,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"; }; @@ -11441,7 +11441,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"; }; @@ -11459,7 +11459,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"; }; @@ -11487,7 +11487,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"; }; @@ -11507,7 +11507,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"; }; @@ -11563,7 +11563,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"; }; @@ -11575,7 +11575,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"; }; @@ -11596,7 +11596,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"; }; @@ -11615,7 +11615,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"; }; @@ -11663,7 +11663,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"; }; @@ -11686,7 +11686,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"; }; @@ -11709,7 +11709,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"; }; @@ -11726,7 +11726,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"; }; @@ -11744,7 +11744,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"; }; @@ -11812,7 +11812,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"; }; @@ -11841,7 +11841,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"; }; @@ -11863,7 +11863,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"; }; @@ -11882,7 +11882,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"; }; @@ -11899,7 +11899,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"; @@ -11918,7 +11918,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"; }; @@ -12005,7 +12005,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"; }; @@ -12051,7 +12051,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"; }; @@ -12097,7 +12097,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"; }; @@ -12146,7 +12146,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"; }; @@ -12168,7 +12168,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"; }; @@ -12205,7 +12205,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"; }; @@ -12265,7 +12265,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"; }; @@ -12288,7 +12288,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"; }; @@ -12304,7 +12304,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"; }; @@ -12328,7 +12328,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 ]; @@ -12348,7 +12348,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"; }; @@ -12372,7 +12372,7 @@ in modules // { version = "0.4.6"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/m/msgpack-python/${name}.tar.gz"; + url = "mirror://pypi/m/msgpack-python/${name}.tar.gz"; sha256 = "bfcc581c9dbbf07cc2f951baf30c3249a57e20dcbd60f7e6ffc43ab3cc614794"; }; @@ -12398,7 +12398,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"; }; @@ -12414,7 +12414,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"; }; @@ -12434,7 +12434,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"; }; @@ -12472,7 +12472,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"; }; @@ -12584,7 +12584,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"; }; @@ -12625,7 +12625,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"; }; @@ -12642,7 +12642,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"; }; @@ -12661,7 +12661,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"; }; @@ -12681,7 +12681,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"; }; @@ -12739,7 +12739,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"; }; @@ -12755,7 +12755,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"; }; @@ -12783,7 +12783,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"; }; @@ -12821,7 +12821,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"; }; @@ -12839,7 +12839,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"; }; @@ -12857,7 +12857,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"; }; @@ -12875,7 +12875,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"; }; @@ -12890,7 +12890,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"; }; @@ -12915,7 +12915,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"; }; @@ -12936,7 +12936,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"; }; @@ -12977,7 +12977,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"; }; @@ -13007,7 +13007,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"; }; @@ -13036,7 +13036,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"; }; @@ -13060,7 +13060,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"; }; @@ -13080,7 +13080,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"; }; @@ -13095,7 +13095,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 = { @@ -13111,7 +13111,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"; }; @@ -13131,7 +13131,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"; }; @@ -13149,7 +13149,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 ]; @@ -13165,7 +13165,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"; }; @@ -13181,7 +13181,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"; }; @@ -13262,7 +13262,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"; }; @@ -13301,7 +13301,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"; }; @@ -13316,7 +13316,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"; }; @@ -13352,7 +13352,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"; }; @@ -13397,7 +13397,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"; }; }; @@ -13405,7 +13405,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"; }; }; @@ -13415,7 +13415,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"; }; @@ -13434,7 +13434,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"; }; @@ -13453,7 +13453,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"; }; @@ -13509,7 +13509,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"; }; @@ -13526,7 +13526,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"; }; @@ -13550,7 +13550,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"; }; @@ -13616,7 +13616,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"; }; @@ -13637,7 +13637,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"; }; @@ -13661,7 +13661,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; @@ -13672,7 +13672,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"; }; @@ -13719,7 +13719,7 @@ in modules // { 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"; }; @@ -13759,7 +13759,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"; }; @@ -13817,7 +13817,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"; }; @@ -13833,7 +13833,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"; }; @@ -13854,7 +13854,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"; }; @@ -13879,7 +13879,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"; }; @@ -13896,7 +13896,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"; }; @@ -13913,7 +13913,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"; }; @@ -13931,7 +13931,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"; }; @@ -13959,7 +13959,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"; }; @@ -13976,7 +13976,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"; }; @@ -14002,7 +14002,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"; }; @@ -14026,7 +14026,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"; }; @@ -14040,7 +14040,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"; }; @@ -14062,7 +14062,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"; }; @@ -14089,7 +14089,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"; }; @@ -14115,7 +14115,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"; }; @@ -14136,7 +14136,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"; }; @@ -14161,7 +14161,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"; }; @@ -14190,7 +14190,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"; }; @@ -14211,7 +14211,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"; }; @@ -14234,7 +14234,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"; }; @@ -14252,7 +14252,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"; }; @@ -14277,7 +14277,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"; }; @@ -14304,7 +14304,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"; }; @@ -14326,7 +14326,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"; }; @@ -14356,7 +14356,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"; }; @@ -14376,7 +14376,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"; }; @@ -14398,7 +14398,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"; }; @@ -14429,7 +14429,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"; }; }; @@ -14439,7 +14439,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"; }; @@ -14467,7 +14467,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"; }; @@ -14496,7 +14496,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"; }; @@ -14525,7 +14525,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"; }; @@ -14552,7 +14552,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"; }; @@ -14580,7 +14580,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"; }; @@ -14601,7 +14601,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"; }; @@ -14622,7 +14622,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"; }; @@ -14648,7 +14648,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"; }; @@ -14683,7 +14683,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"; }; @@ -14704,7 +14704,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"; }; @@ -14729,7 +14729,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"; }; }; @@ -14739,7 +14739,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"; }; @@ -14755,7 +14755,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"; }; }; @@ -14765,7 +14765,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"; }; @@ -14782,7 +14782,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"; }; @@ -14800,7 +14800,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"; }; @@ -14826,7 +14826,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"; }; @@ -14845,7 +14845,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"; }; @@ -14869,7 +14869,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"; }; @@ -14893,7 +14893,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"; }; @@ -14912,7 +14912,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"; }; @@ -14928,7 +14928,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"; }; @@ -14944,7 +14944,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"; }; @@ -14960,7 +14960,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"; }; @@ -14977,7 +14977,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"; }; @@ -14999,7 +14999,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"; }; @@ -15017,7 +15017,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"; }; @@ -15034,7 +15034,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"; }; @@ -15051,7 +15051,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 = '' @@ -15070,7 +15070,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"; }; }; @@ -15081,7 +15081,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"; }; }; @@ -15096,7 +15096,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"; }; @@ -15165,7 +15165,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"; }; @@ -15180,7 +15180,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"; }; @@ -15198,7 +15198,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"; }; @@ -15215,7 +15215,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"; }; @@ -15233,7 +15233,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"; }; }; @@ -15242,7 +15242,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"; }; @@ -15277,7 +15277,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"; }; @@ -15296,7 +15296,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"; }; @@ -15316,7 +15316,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"; }; @@ -15334,7 +15334,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"; }; @@ -15355,7 +15355,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"; }; @@ -15371,7 +15371,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"; }; @@ -15394,7 +15394,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"; }; @@ -15412,7 +15412,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"; }; @@ -15432,7 +15432,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"; }; @@ -15495,7 +15495,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"; }; @@ -15531,7 +15531,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"; }; @@ -15550,7 +15550,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"; }; @@ -15567,7 +15567,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"; }; @@ -15602,7 +15602,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"; }; @@ -15674,7 +15674,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"; }; @@ -15693,7 +15693,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"; }; @@ -15712,7 +15712,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"; }; @@ -15728,7 +15728,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 ]; @@ -15743,7 +15743,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"; }; @@ -15762,7 +15762,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"; }; @@ -15785,7 +15785,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"; }; @@ -15802,7 +15802,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"; }; @@ -15825,7 +15825,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"; }; @@ -15855,7 +15855,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 ]; @@ -15868,7 +15868,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 = '' @@ -15890,7 +15890,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"; }; @@ -15947,7 +15947,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"; }; @@ -15976,7 +15976,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"; }; }; @@ -16047,7 +16047,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"; }; @@ -16076,7 +16076,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"; }; @@ -16099,7 +16099,7 @@ in modules // { src = pkgs.fetchurl { sha256 = "1yq9nis1b2rgpndi2rqh4divf6j22jjva83r5z8jf7iffywmr8hs"; - url = "https://pypi.python.org/packages/source/p/prompt_toolkit/${name}.tar.gz"; + url = "mirror://pypi/p/prompt_toolkit/${name}.tar.gz"; }; buildInputs = with self; [ jedi ipython pygments ]; @@ -16123,7 +16123,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. @@ -16176,7 +16176,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"; }; @@ -16200,7 +16200,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"; }; }); @@ -16213,7 +16213,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"; }; @@ -16232,7 +16232,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"; }; @@ -16249,7 +16249,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"; }; @@ -16268,7 +16268,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"; }; @@ -16294,7 +16294,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"; }; @@ -16330,7 +16330,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"; }; @@ -16349,7 +16349,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"; }; @@ -16369,7 +16369,7 @@ in modules // { version = "3.0.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pysaml2/${name}.tar.gz"; + url = "mirror://pypi/p/pysaml2/${name}.tar.gz"; sha256 = "0y2iw1dddcvi13xjh3l52z1mvnrbc41ik9k4nn7lwj8x5kimnk9n"; }; @@ -16398,7 +16398,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"; }; @@ -16418,7 +16418,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"; }; @@ -16470,7 +16470,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"; }; @@ -16490,7 +16490,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"; }; @@ -16511,7 +16511,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"; }; @@ -16540,7 +16540,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"; }; @@ -16561,7 +16561,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"; }; @@ -16613,7 +16613,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"; }; @@ -16651,7 +16651,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"; }; @@ -16676,7 +16676,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"; }; @@ -16716,7 +16716,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"; }; @@ -16815,7 +16815,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]; @@ -16829,7 +16829,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"; }; @@ -16853,7 +16853,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"; }; @@ -16875,7 +16875,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"; }; @@ -16899,7 +16899,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"; }; @@ -16926,7 +16926,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"; }; @@ -16970,7 +16970,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"; }; @@ -17002,7 +17002,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"; }; @@ -17020,7 +17020,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"; }; @@ -17040,7 +17040,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"; }; @@ -17061,7 +17061,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"; }; @@ -17085,7 +17085,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"; }; @@ -17108,7 +17108,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"; }; }; @@ -17141,7 +17141,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"; }; @@ -17167,7 +17167,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"; }; @@ -17186,7 +17186,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"; }; @@ -17204,7 +17204,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"; }; @@ -17242,7 +17242,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"; }; @@ -17313,7 +17313,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"; }; @@ -17332,7 +17332,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"; }; @@ -17421,7 +17421,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"; }; @@ -17439,7 +17439,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"; }; @@ -17501,7 +17501,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 = { @@ -17517,7 +17517,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"; }; @@ -17537,7 +17537,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"; }; @@ -17564,7 +17564,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"; }; @@ -17585,7 +17585,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"; }; @@ -17602,7 +17602,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"; }; @@ -17624,7 +17624,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"; }; @@ -17641,7 +17641,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"; }; @@ -17661,7 +17661,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"; }; @@ -17680,7 +17680,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 @@ -17698,7 +17698,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"; }; @@ -17709,7 +17709,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"; }; @@ -17729,7 +17729,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"; }; @@ -17754,7 +17754,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"; }; @@ -17770,7 +17770,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"; }; @@ -17790,7 +17790,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"; }; @@ -17803,7 +17803,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"; }; @@ -17840,7 +17840,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"; }; @@ -17918,7 +17918,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"; }; @@ -17939,7 +17939,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"; }; @@ -17960,7 +17960,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 ]; @@ -17995,7 +17995,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"; }; @@ -18011,7 +18011,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"; }; @@ -18025,7 +18025,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"; }; @@ -18046,7 +18046,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"; }; @@ -18065,7 +18065,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"; }; @@ -18084,7 +18084,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"; }; @@ -18101,7 +18101,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"; }; @@ -18119,7 +18119,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"; }; @@ -18138,7 +18138,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"; }; @@ -18173,7 +18173,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"; }; @@ -18275,7 +18275,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"; }; @@ -18296,7 +18296,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"; }; @@ -18312,7 +18312,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"; }; @@ -18448,7 +18448,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"; }; @@ -18484,7 +18484,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"; }; @@ -18503,7 +18503,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"; }; @@ -18560,7 +18560,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"; }; @@ -18591,7 +18591,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"; }; @@ -18607,7 +18607,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"; }; @@ -18666,7 +18666,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 = { @@ -18712,7 +18712,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"; }; @@ -18730,7 +18730,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"; }; @@ -18752,7 +18752,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"; }; @@ -18799,7 +18799,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"; }; @@ -18819,7 +18819,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"; }; @@ -18873,7 +18873,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"; }; @@ -18899,7 +18899,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"; }; @@ -18926,7 +18926,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"; }; @@ -18947,7 +18947,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"; }; @@ -18969,7 +18969,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"; }; @@ -18995,7 +18995,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"; }; @@ -19014,7 +19014,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"; }; @@ -19031,7 +19031,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"; }; @@ -19074,7 +19074,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"; }; @@ -19094,7 +19094,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"; }; @@ -19108,7 +19108,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"; }; @@ -19133,7 +19133,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"; }; @@ -19155,7 +19155,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"; }; @@ -19177,7 +19177,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"; }; @@ -19197,7 +19197,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"; }; @@ -19254,7 +19254,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"; }; @@ -19271,7 +19271,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"; }; @@ -19290,7 +19290,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"; }; @@ -19310,7 +19310,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"; }; @@ -19343,7 +19343,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 ]; @@ -19361,7 +19361,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"; }; @@ -19379,7 +19379,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"; }; @@ -19402,7 +19402,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"; }; @@ -19418,7 +19418,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"; }; @@ -19435,7 +19435,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"; }; @@ -19451,7 +19451,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"; }; @@ -19469,7 +19469,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"; }; @@ -19503,7 +19503,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"; }; @@ -19535,7 +19535,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"; }; @@ -19562,7 +19562,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"; }; @@ -19596,7 +19596,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"; }; @@ -19640,7 +19640,7 @@ 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; @@ -19649,7 +19649,7 @@ in modules // { 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; @@ -19660,7 +19660,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"; }; @@ -19682,7 +19682,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"; }; @@ -19708,7 +19708,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"; }; @@ -19726,7 +19726,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"; }; @@ -19751,7 +19751,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"; }; @@ -19784,7 +19784,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"; }; @@ -19803,7 +19803,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"; }; @@ -19828,7 +19828,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"; }; @@ -19848,7 +19848,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"; }; @@ -19867,7 +19867,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"; }; @@ -19886,7 +19886,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"; }; @@ -19907,7 +19907,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"; }; @@ -19936,7 +19936,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"; }; @@ -19959,7 +19959,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"; }; @@ -19977,7 +19977,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"; }; @@ -20001,7 +20001,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"; }; @@ -20018,7 +20018,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"; }; @@ -20040,7 +20040,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"; }; @@ -20057,7 +20057,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"; }; @@ -20089,7 +20089,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"; }; @@ -20120,7 +20120,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"; }; @@ -20140,7 +20140,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"; }; @@ -20165,7 +20165,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"; }; @@ -20190,7 +20190,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"; }; @@ -20212,7 +20212,7 @@ in modules // { disabled = isPyPy || pythonOlder "2.6" || (isPy3k && pythonOlder "3.3"); src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/T/Theano/${name}.tar.gz"; + url = "mirror://pypi/T/Theano/${name}.tar.gz"; sha256 = "17dikk94r8bzkxg976srqlhj5c7phs9gl837iabyfdpixkbrl79g"; }; @@ -20243,7 +20243,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"; }; @@ -20273,7 +20273,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"; }; @@ -20293,7 +20293,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"; }; @@ -20311,7 +20311,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"; }; @@ -20332,7 +20332,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"; }; @@ -20345,7 +20345,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"; }; @@ -20367,7 +20367,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"; }; @@ -20390,7 +20390,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"; }; @@ -20412,7 +20412,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"; }; @@ -20435,7 +20435,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"; }; @@ -20455,7 +20455,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"; }; @@ -20474,7 +20474,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"; }; @@ -20496,7 +20496,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"; }; @@ -20523,7 +20523,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"; }; @@ -20537,7 +20537,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"; }; @@ -20551,7 +20551,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"; }; @@ -20568,7 +20568,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"; }; @@ -20600,7 +20600,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"; }; @@ -20653,7 +20653,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"; }; @@ -20669,7 +20669,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 = { @@ -20683,7 +20683,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"; }; @@ -20703,7 +20703,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"; }; @@ -20724,7 +20724,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"; }; @@ -20755,7 +20755,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"; }; @@ -20781,7 +20781,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 = []; @@ -20794,7 +20794,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"; }; @@ -20820,7 +20820,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"; }; @@ -20840,7 +20840,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"; }; @@ -20861,7 +20861,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"; }; @@ -20884,7 +20884,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"; }; @@ -20918,7 +20918,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"; }; @@ -20945,7 +20945,7 @@ in modules // { 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"; }; @@ -21004,7 +21004,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"; }; @@ -21040,7 +21040,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"; }; @@ -21060,7 +21060,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"; }; @@ -21085,7 +21085,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"; }; @@ -21104,7 +21104,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"; }; @@ -21202,7 +21202,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"; }; @@ -21221,7 +21221,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"; }; @@ -21243,7 +21243,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"; }; @@ -21262,7 +21262,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"; }; @@ -21336,7 +21336,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"; }; @@ -21429,7 +21429,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"; }; @@ -21459,7 +21459,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"; }; @@ -21478,7 +21478,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"; }; @@ -21531,7 +21531,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"; }; @@ -21554,7 +21554,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"; }; @@ -21572,7 +21572,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"; }; @@ -21595,7 +21595,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"; }; @@ -21614,7 +21614,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"; }; @@ -21634,7 +21634,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"; }; @@ -21658,7 +21658,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"; }; @@ -21678,7 +21678,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"; }; @@ -21696,7 +21696,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"; }; @@ -21712,7 +21712,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"; }; @@ -21728,7 +21728,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"; }; @@ -21750,7 +21750,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"; }; @@ -21766,7 +21766,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"; }; @@ -21793,7 +21793,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"; }; }; @@ -21803,7 +21803,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"; }; @@ -21829,7 +21829,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"; }; }; @@ -21862,7 +21862,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"; }; @@ -21893,7 +21893,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"; }; @@ -21911,7 +21911,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"; }; @@ -21929,7 +21929,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"; }; @@ -21950,7 +21950,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"; }; @@ -21984,7 +21984,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"; }; @@ -22004,7 +22004,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"; }; @@ -22025,7 +22025,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"; }; @@ -22045,7 +22045,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"; }; @@ -22074,7 +22074,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"; }; @@ -22104,7 +22104,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"; }; @@ -22123,7 +22123,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"; }; @@ -22146,7 +22146,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"; }; @@ -22162,7 +22162,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"; }; @@ -22181,7 +22181,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"; }; @@ -22208,7 +22208,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"; }; @@ -22225,7 +22225,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"; }; @@ -22244,7 +22244,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"; }; @@ -22285,7 +22285,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"; }; @@ -22330,7 +22330,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"; }; @@ -22390,7 +22390,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"; }; @@ -22406,7 +22406,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"; }; @@ -22431,7 +22431,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"; }; @@ -22452,7 +22452,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"; }; @@ -22542,7 +22542,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"; }; @@ -22559,7 +22559,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"; }; @@ -22578,7 +22578,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"; }; @@ -22598,7 +22598,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"; }; @@ -22617,7 +22617,7 @@ in modules // { version = "0.1.4"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/w/wcwidth/${name}.tar.gz"; + url = "mirror://pypi/w/wcwidth/${name}.tar.gz"; sha256 = "0awx28xi938nv55qlmai3b5ddqd1w5c294gy95xh4xsx0hik2vch"; }; @@ -22644,7 +22644,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"; }; @@ -22665,7 +22665,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"; }; @@ -22684,7 +22684,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"; }; @@ -22702,7 +22702,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"; }; @@ -22740,7 +22740,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"; }; @@ -22760,7 +22760,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"; }; @@ -22779,7 +22779,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"; }; @@ -22814,7 +22814,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"; }; @@ -22897,7 +22897,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"; }; @@ -22915,7 +22915,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"; }; @@ -22939,7 +22939,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"; }; @@ -22972,7 +22972,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"; }; @@ -22993,7 +22993,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"; }; @@ -23013,7 +23013,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"; }; @@ -23031,7 +23031,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"; }; @@ -23054,7 +23054,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"; }; @@ -23085,7 +23085,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"; }; @@ -23106,7 +23106,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"; }; @@ -23131,7 +23131,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"; }; @@ -23150,7 +23150,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"; }; @@ -23169,7 +23169,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"; }; @@ -23183,7 +23183,7 @@ in modules // { name = "xdot-0.6"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/x/xdot/xdot-0.6.tar.gz"; + url = "mirror://pypi/x/xdot/xdot-0.6.tar.gz"; sha256 = "c71d82bad0fec696af36af788c2a1dbb5d9975bd70bfbdc14bda15b5c7319e6c"; }; @@ -23200,7 +23200,7 @@ in modules // { 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"; }; @@ -23216,7 +23216,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"; }; @@ -23239,7 +23239,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"; }; }; @@ -23250,7 +23250,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"; }; @@ -23272,7 +23272,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"; }; @@ -23288,7 +23288,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"; }; @@ -23311,7 +23311,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"; }; @@ -23325,7 +23325,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 = { @@ -23339,7 +23339,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"; }; @@ -23357,7 +23357,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"; }; @@ -23379,7 +23379,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"; }; @@ -23395,7 +23395,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"; }; @@ -23411,7 +23411,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"; }; @@ -23425,7 +23425,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"; }; @@ -23441,7 +23441,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"; }; @@ -23464,7 +23464,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"; }; @@ -23483,7 +23483,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"; }; @@ -23501,7 +23501,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"; }; @@ -23517,7 +23517,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"; }; @@ -23536,7 +23536,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"; }; @@ -23554,7 +23554,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"; }; @@ -23573,7 +23573,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"; }; @@ -23595,7 +23595,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"; }; @@ -23614,7 +23614,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"; }; @@ -23633,7 +23633,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"; }; @@ -23650,7 +23650,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; @@ -23715,7 +23715,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"; }; }; @@ -23727,7 +23727,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"; }; }; @@ -23804,7 +23804,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"; }; @@ -23833,7 +23833,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"; }; @@ -23871,7 +23871,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 ]; @@ -23908,7 +23908,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"; }; @@ -23931,7 +23931,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"; }; @@ -23970,7 +23970,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"; }; @@ -24030,7 +24030,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"; }; @@ -24048,7 +24048,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"; }; @@ -24086,7 +24086,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"; }; @@ -24105,7 +24105,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"; }; @@ -24125,7 +24125,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"; }; @@ -24141,7 +24141,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"; }; @@ -24162,7 +24162,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"; }; @@ -24190,7 +24190,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"; }; @@ -24252,7 +24252,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"; }; @@ -24263,7 +24263,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"; }; @@ -24281,7 +24281,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"; }; @@ -24352,7 +24352,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"; }; @@ -24551,7 +24551,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"; }; @@ -24619,7 +24619,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"; }; @@ -24635,7 +24635,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"; }; @@ -24653,7 +24653,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"; }; @@ -24671,7 +24671,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"; }; @@ -24688,7 +24688,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"; }; @@ -24699,7 +24699,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"; }; @@ -24811,7 +24811,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 = { @@ -24914,7 +24914,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"; }; @@ -24933,7 +24933,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; @@ -24948,7 +24948,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 ]; @@ -24971,7 +24971,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"; }; @@ -25067,7 +25067,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"; }; @@ -25087,7 +25087,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"; }; }; @@ -25112,7 +25112,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"; }; }; @@ -25122,7 +25122,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; [ @@ -25148,7 +25148,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"; }; @@ -25160,7 +25160,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"; }; @@ -25228,7 +25228,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"; }; @@ -25244,7 +25244,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"; }; @@ -25262,7 +25262,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"; }; @@ -25309,7 +25309,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"; }; @@ -25326,7 +25326,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"; }; @@ -25342,7 +25342,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"; }; @@ -25393,7 +25393,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"; }; @@ -25409,7 +25409,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"; }; @@ -25422,7 +25422,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"; }; @@ -25441,7 +25441,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"; }; @@ -25457,7 +25457,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 = { @@ -25508,7 +25508,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"; }; @@ -25526,7 +25526,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; []; @@ -25545,7 +25545,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"; }; @@ -25564,7 +25564,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"; }; @@ -25581,7 +25581,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"; }; @@ -25637,7 +25637,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"; }; @@ -25695,7 +25695,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"; }; @@ -25743,7 +25743,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; @@ -25762,7 +25762,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; @@ -25800,7 +25800,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"; }; @@ -25816,7 +25816,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"; }; @@ -25853,7 +25853,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"; }; @@ -25907,7 +25907,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"; }; @@ -25926,7 +25926,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"; }; @@ -25943,7 +25943,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"; }; @@ -25967,7 +25967,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"; }; @@ -25986,7 +25986,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"; }; @@ -26005,7 +26005,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"; }; @@ -26030,7 +26030,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"; }; @@ -26073,7 +26073,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"; }; @@ -26093,7 +26093,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"; }; @@ -26111,7 +26111,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"; }; @@ -26136,7 +26136,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"; }; @@ -26164,7 +26164,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"; }; @@ -26180,7 +26180,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"; }; @@ -26200,7 +26200,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 = { @@ -26215,7 +26215,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 = { @@ -26251,7 +26251,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"; }; @@ -26267,7 +26267,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"; }; @@ -26283,7 +26283,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"; }; @@ -26300,7 +26300,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"; }; @@ -26317,7 +26317,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"; }; @@ -26333,7 +26333,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"; }; @@ -26350,7 +26350,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"; }; @@ -26378,7 +26378,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"; }; @@ -26397,7 +26397,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"; }; @@ -26421,7 +26421,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"; }; @@ -26445,7 +26445,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"; }; @@ -26462,7 +26462,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"; }; @@ -26479,7 +26479,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"; }; @@ -26498,7 +26498,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"; }; @@ -26514,7 +26514,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"; }; @@ -26530,7 +26530,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"; }; @@ -26575,7 +26575,7 @@ in modules // { buildInputs = with self ; [ six pytest ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/w/w3lib/${name}.tar.gz"; + url = "mirror://pypi/w/w3lib/${name}.tar.gz"; sha256 = "bd87eae62d208eef70869951abf05e96a8ee559714074a485168de4c5b190004"; }; @@ -26592,7 +26592,7 @@ in modules // { version = "1.4.2"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/q/queuelib/${name}.tar.gz"; + url = "mirror://pypi/q/queuelib/${name}.tar.gz"; sha256 = "a6829918157ed433fafa87b0bb1e93e3e63c885270166db5884a02c34c86f914"; }; @@ -26616,7 +26616,7 @@ in modules // { propagatedBuildInputs = with self ; [ six twisted w3lib lxml cssselect queuelib pyopenssl service-identity ]; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/S/Scrapy/${name}.tar.gz"; + url = "mirror://pypi/S/Scrapy/${name}.tar.gz"; sha256 = "0a51c785a310d65f6e70285a2da56d48ef7d049bd7fd60a08eef05c52328ca96"; }; @@ -26680,7 +26680,7 @@ in modules // { version = "0.1a3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/r/repeated-test/${name}.tar.gz"; + url = "mirror://pypi/r/repeated-test/${name}.tar.gz"; sha256 = "062syp7kl2g0x6qx3z8zb5sdycpi7qcpxp9iml2v8dqzqnij9bpg"; }; @@ -26703,7 +26703,7 @@ in modules // { version = "1.1a3"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/s/sigtools/${name}.tar.gz"; + url = "mirror://pypi/s/sigtools/${name}.tar.gz"; sha256 = "190w14vzbiyvxcl9jmyyimpahar5b0bq69v9iv7chi852yi71w6w"; }; @@ -26733,7 +26733,7 @@ in modules // { version = "3.0"; src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/c/clize/${name}.tar.gz"; + url = "mirror://pypi/c/clize/${name}.tar.gz"; sha256 = "1xkr3h404d7pgj5gdpg6bddv3v3yq2hgx8qlwkgw5abg218k53hm"; }; From 07cad5411ef18fa2de2e500d1a78e12a2b3fda6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Tue, 26 Apr 2016 13:43:12 +0100 Subject: [PATCH 64/96] pythonPackages.msgpack: 0.4.6 -> 0.4.7 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 20fe3795742..447481db7b3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12369,11 +12369,11 @@ in modules // { msgpack = buildPythonPackage rec { name = "msgpack-python-${version}"; - version = "0.4.6"; + version = "0.4.7"; src = pkgs.fetchurl { url = "mirror://pypi/m/msgpack-python/${name}.tar.gz"; - sha256 = "bfcc581c9dbbf07cc2f951baf30c3249a57e20dcbd60f7e6ffc43ab3cc614794"; + sha256 = "0syd7bs83qs9qmxw540jbgsildbqk4yb57fmrlns1021llli402y"; }; propagatedBuildInputs = with self; [ ]; From 23a093ebe886b2dcf0935d60d36e5f3f24fe5495 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 26 Apr 2016 16:10:30 +0300 Subject: [PATCH 65/96] dbus service: fix path to the launch helper --- nixos/modules/services/system/dbus.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; From 454eefa63b6f8fbd68139affd46d086e0d869ee3 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 26 Apr 2016 16:39:45 +0200 Subject: [PATCH 66/96] linux: 4.4.7 -> 4.4.8 --- pkgs/os-specific/linux/kernel/linux-4.4.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.4.nix b/pkgs/os-specific/linux/kernel/linux-4.4.nix index 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; From a133a74c8905c58721a2ae129c02c264bf6b3b09 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 26 Apr 2016 17:31:54 +0200 Subject: [PATCH 67/96] Remove cruft --- maintainers/scripts/map-files.pl | 22 - .../compilers/visual-c++/builder.sh | 26 - .../compilers/visual-c++/default.nix | 27 - pkgs/development/compilers/visual-c++/filemap | 622 --- .../compilers/visual-c++/test/builder.sh | 6 - .../compilers/visual-c++/test/default.nix | 10 - .../compilers/visual-c++/test/hello.c | 7 - pkgs/development/misc/windows-sdk/builder.sh | 35 - pkgs/development/misc/windows-sdk/default.nix | 92 - pkgs/development/misc/windows-sdk/filemap | 3738 ----------------- pkgs/os-specific/linux/dietlibc/builder.sh | 36 - pkgs/os-specific/linux/dietlibc/default.nix | 43 - pkgs/os-specific/linux/dietlibc/dns64.patch | 109 - .../os-specific/linux/dietlibc/no-wchar.patch | 77 - pkgs/os-specific/linux/dietlibc/pc.patch | 78 - .../linux/dietlibc/x86_64-lseek64.patch | 6 - pkgs/os-specific/linux/e3cfsprogs/builder.sh | 14 - pkgs/os-specific/linux/e3cfsprogs/default.nix | 20 - .../e3cfsprogs-1.39_bin_links.patch | 111 - .../e3cfsprogs/e3cfsprogs-1.39_etc.patch | 27 - .../os-specific/linux/ifplugd/interface.patch | 13 - .../linux/kernel-headers-cross/builder.sh | 31 - .../linux/kernel-headers-cross/default.nix | 13 - .../os-specific/linux/pam_devperm/default.nix | 12 - pkgs/os-specific/linux/procps/default.nix | 30 - .../linux/procps/gnumake3.82.patch | 13 - .../linux/procps/linux-ver-init.patch | 23 - pkgs/os-specific/linux/procps/makefile.patch | 71 - .../linux/procps/procps-build.patch | 50 - pkgs/test/rpath/builder.sh | 79 - pkgs/test/rpath/default.nix | 18 - pkgs/test/rpath/src/hello1.c | 7 - pkgs/test/rpath/src/hello2.cc | 7 - pkgs/test/rpath/src/hello3.c | 9 - pkgs/test/rpath/src/text.c | 4 - pkgs/test/simple/default.nix | 17 - pkgs/top-level/all-packages.nix | 16 +- pkgs/top-level/release.nix | 1 - 38 files changed, 1 insertion(+), 5519 deletions(-) delete mode 100644 maintainers/scripts/map-files.pl delete mode 100644 pkgs/development/compilers/visual-c++/builder.sh delete mode 100644 pkgs/development/compilers/visual-c++/default.nix delete mode 100644 pkgs/development/compilers/visual-c++/filemap delete mode 100644 pkgs/development/compilers/visual-c++/test/builder.sh delete mode 100644 pkgs/development/compilers/visual-c++/test/default.nix delete mode 100644 pkgs/development/compilers/visual-c++/test/hello.c delete mode 100644 pkgs/development/misc/windows-sdk/builder.sh delete mode 100644 pkgs/development/misc/windows-sdk/default.nix delete mode 100644 pkgs/development/misc/windows-sdk/filemap delete mode 100644 pkgs/os-specific/linux/dietlibc/builder.sh delete mode 100644 pkgs/os-specific/linux/dietlibc/default.nix delete mode 100644 pkgs/os-specific/linux/dietlibc/dns64.patch delete mode 100644 pkgs/os-specific/linux/dietlibc/no-wchar.patch delete mode 100644 pkgs/os-specific/linux/dietlibc/pc.patch delete mode 100644 pkgs/os-specific/linux/dietlibc/x86_64-lseek64.patch delete mode 100755 pkgs/os-specific/linux/e3cfsprogs/builder.sh delete mode 100644 pkgs/os-specific/linux/e3cfsprogs/default.nix delete mode 100644 pkgs/os-specific/linux/e3cfsprogs/e3cfsprogs-1.39_bin_links.patch delete mode 100644 pkgs/os-specific/linux/e3cfsprogs/e3cfsprogs-1.39_etc.patch delete mode 100644 pkgs/os-specific/linux/ifplugd/interface.patch delete mode 100644 pkgs/os-specific/linux/kernel-headers-cross/builder.sh delete mode 100644 pkgs/os-specific/linux/kernel-headers-cross/default.nix delete mode 100644 pkgs/os-specific/linux/pam_devperm/default.nix delete mode 100644 pkgs/os-specific/linux/procps/default.nix delete mode 100644 pkgs/os-specific/linux/procps/gnumake3.82.patch delete mode 100644 pkgs/os-specific/linux/procps/linux-ver-init.patch delete mode 100644 pkgs/os-specific/linux/procps/makefile.patch delete mode 100644 pkgs/os-specific/linux/procps/procps-build.patch delete mode 100644 pkgs/test/rpath/builder.sh delete mode 100644 pkgs/test/rpath/default.nix delete mode 100644 pkgs/test/rpath/src/hello1.c delete mode 100644 pkgs/test/rpath/src/hello2.cc delete mode 100644 pkgs/test/rpath/src/hello3.c delete mode 100644 pkgs/test/rpath/src/text.c delete mode 100644 pkgs/test/simple/default.nix 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/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/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/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 d98bfb96735..00000000000 --- a/pkgs/os-specific/linux/dietlibc/default.nix +++ /dev/null @@ -1,43 +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; - - 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/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/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/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/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/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/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d278b5d2419..36239d29431 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5205,14 +5205,10 @@ in vala_0_28 = callPackage ../development/compilers/vala/0.28.nix { }; - visualcpp = callPackage ../development/compilers/visual-c++ { }; - vs90wrapper = callPackage ../development/compilers/vs90wrapper { }; webdsl = callPackage ../development/compilers/webdsl { }; - win32hello = callPackage ../development/compilers/visual-c++/test { }; - wla-dx = callPackage ../development/compilers/wla-dx { }; wrapCCWith = ccWrapper: libc: extraBuildCommands: baseCC: ccWrapper { @@ -5678,11 +5674,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 { }; @@ -10279,8 +10273,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 { @@ -10320,8 +10312,6 @@ in lightum = callPackage ../os-specific/linux/lightum { }; - e3cfsprogs = callPackage ../os-specific/linux/e3cfsprogs { }; - ebtables = callPackage ../os-specific/linux/ebtables { }; eject = self.utillinux; @@ -10960,8 +10950,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 { }; @@ -11009,8 +10997,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 { }; diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix index 24ea9bdc470..dcdd27bfe50 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; From d3eea5ae359ba36e1bd70bad0f13d6840dde29ac Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 26 Apr 2016 14:00:20 -0500 Subject: [PATCH 68/96] melpa-packages 2016-04-26 --- .../editors/emacs-modes/melpa-generated.nix | 19375 +++++++++------- 1 file changed, 10896 insertions(+), 8479 deletions(-) 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; }; }) {}; From bf0ae7d45c496454066748cf1698ad7e145914b9 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 26 Apr 2016 14:00:33 -0500 Subject: [PATCH 69/96] melpa-packages: update package generation instructions --- .../editors/emacs-modes/melpa-packages.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) 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)"` */ From f6828eb247e99dfff45bb91692c10ebf728d5ed3 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 26 Apr 2016 14:05:00 -0500 Subject: [PATCH 70/96] melpa-stable-packages: update package generation instructions --- .../editors/emacs-modes/melpa-stable-packages.nix | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) 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)"` */ From 559010fa9c11f819a76c006902088aeff0765526 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 26 Apr 2016 14:05:25 -0500 Subject: [PATCH 71/96] melpa-stable-packages 2016-04-26 --- .../emacs-modes/melpa-stable-generated.nix | 8027 ++++++++++------- 1 file changed, 4707 insertions(+), 3320 deletions(-) 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; }; }) {}; From de33f4b48b06373c3d960f9939d02522ce55dbc3 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 26 Apr 2016 14:06:42 -0500 Subject: [PATCH 72/96] elpa-packages: update package generation instructions --- .../editors/emacs-modes/elpa-packages.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/elpa-packages.nix b/pkgs/applications/editors/emacs-modes/elpa-packages.nix index 29cb586484a..f0a10c3ee42 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)"` */ From d47fe2bd4a5633de58711c152ccfdd94fcf21b3a Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 26 Apr 2016 14:07:32 -0500 Subject: [PATCH 73/96] elpa-packages 2016-04-26 --- .../editors/emacs-modes/elpa-generated.nix | 689 +++++++++--------- 1 file changed, 346 insertions(+), 343 deletions(-) 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; }; }) {}; From a286d876adab722391896d4a0c69e38bad1dacbd Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 26 Apr 2016 14:09:33 -0500 Subject: [PATCH 74/96] melpaStablePackages.docker: don't call builtin dependency --- pkgs/applications/editors/emacs-modes/elpa-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/editors/emacs-modes/elpa-packages.nix b/pkgs/applications/editors/emacs-modes/elpa-packages.nix index f0a10c3ee42..0212451bef0 100644 --- a/pkgs/applications/editors/emacs-modes/elpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/elpa-packages.nix @@ -41,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; From f027aa20594ef4b5d3ab8e88ad4ad8f0edddc468 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edward=20Tj=C3=B6rnhammar?= Date: Tue, 26 Apr 2016 22:23:02 +0200 Subject: [PATCH 75/96] jonprl: corrected sha change --- pkgs/applications/science/logic/jonprl/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ]; From 3ae8810ffae23d083f58b645c696d2dcfd1be4ab Mon Sep 17 00:00:00 2001 From: Arnold Krille Date: Tue, 26 Apr 2016 22:38:47 +0200 Subject: [PATCH 76/96] containers: test imperative and ipv4 in small-release (#15015) Test imperative containers and declarative containers with ipv4. These two tests are basically the extraction of the containers test from before. --- nixos/release-small.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 From ca0e724266c7adc61f27607dfda16a08a423eb06 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Wed, 27 Apr 2016 03:24:04 +0300 Subject: [PATCH 77/96] otter: Mark broken Build hangs an hits the hydra time limit: http://hydra.nixos.org/build/34897110 --- pkgs/applications/science/logic/otter/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/science/logic/otter/default.nix b/pkgs/applications/science/logic/otter/default.nix index 398f6c9a3e2..08d19c143ee 100644 --- a/pkgs/applications/science/logic/otter/default.nix +++ b/pkgs/applications/science/logic/otter/default.nix @@ -43,5 +43,6 @@ stdenv.mkDerivation { license = stdenv.lib.licenses.publicDomain ; maintainers = [stdenv.lib.maintainers.raskin]; platforms = stdenv.lib.platforms.linux; + broken = true; }; } From 264cb737f60f291c80f96ad67d3a476c85e45417 Mon Sep 17 00:00:00 2001 From: Corbin Date: Tue, 26 Apr 2016 18:45:12 -0700 Subject: [PATCH 78/96] afl: 1.94b -> 2.10b Includes afl-analyze. QEMU support not tested. --- pkgs/tools/security/afl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 From 6e24c9974fbacbeb1c3d1327807ca4b0bfe861f2 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Wed, 27 Apr 2016 05:06:35 +0300 Subject: [PATCH 79/96] typespeed: Add platforms --- pkgs/games/typespeed/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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 ]; }; } From 12554997a79a0289866f821d55b78d437df3aa91 Mon Sep 17 00:00:00 2001 From: Moritz Ulrich Date: Wed, 27 Apr 2016 10:04:41 +0200 Subject: [PATCH 80/96] rustc+cargo: Mark -unstable as lowPrio. --- pkgs/top-level/all-packages.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 36239d29431..4008384dde4 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5097,13 +5097,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; @@ -5783,9 +5783,9 @@ 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 { From ae59f6426a93dce9161eb9edba563548e0ad77bf Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Wed, 27 Apr 2016 11:47:22 +0200 Subject: [PATCH 81/96] autoconf: peg version 2.64 --- pkgs/development/tools/misc/autoconf/2.64.nix | 49 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 1 + 2 files changed, 50 insertions(+) create mode 100644 pkgs/development/tools/misc/autoconf/2.64.nix 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/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4008384dde4..a10973312f3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5710,6 +5710,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{ }; From 40838ad20f79ffcba430d97bd80fbb76e07f2474 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Wed, 27 Apr 2016 13:28:04 +0300 Subject: [PATCH 82/96] meo: Use pcre-cpp (fixes build) --- pkgs/tools/security/meo/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 From 99b91020d6fcbffa23c3322bbf060ab05bb5e190 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Wed, 27 Apr 2016 12:28:53 +0200 Subject: [PATCH 83/96] xvfb-run: fix missing tools - it was failing to find awk and mktemp - use `makeBinPath` for better robustness wrt. multiple outputs --- pkgs/tools/misc/xvfb-run/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 ]} ''; } From 2f6c2ecd47e3a01880d9535c918d5eb6a798822b Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Wed, 27 Apr 2016 13:36:34 +0300 Subject: [PATCH 84/96] eiskaltdcpp: Use pcre-cpp (fixes build) http://hydra.nixos.org/build/34967606/nixlog/1/raw --- pkgs/applications/networking/p2p/eiskaltdcpp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/p2p/eiskaltdcpp/default.nix b/pkgs/applications/networking/p2p/eiskaltdcpp/default.nix index e4ca6d423cd..8d46cf62104 100644 --- a/pkgs/applications/networking/p2p/eiskaltdcpp/default.nix +++ b/pkgs/applications/networking/p2p/eiskaltdcpp/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, cmake, pkgconfig, qt4, boost, bzip2, libX11, pcre, libidn, lua5, miniupnpc, aspell, gettext }: +{ stdenv, fetchurl, cmake, pkgconfig, qt4, boost, bzip2, libX11, pcre-cpp, libidn, lua5, miniupnpc, aspell, gettext }: stdenv.mkDerivation rec { name = "eiskaltdcpp-2.2.9"; @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { sha256 = "3d9170645450f9cb0a605278b8646fec2110b9637910d86fd27cf245cbe24eaf"; }; - buildInputs = [ cmake pkgconfig qt4 boost bzip2 libX11 pcre libidn lua5 miniupnpc aspell gettext ]; + buildInputs = [ cmake pkgconfig qt4 boost bzip2 libX11 pcre-cpp libidn lua5 miniupnpc aspell gettext ]; cmakeFlags = '' -DUSE_ASPELL=ON From c5fcab987b819aa2dcb1c5cec788cb5fb7106c6d Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 27 Apr 2016 15:46:37 +0300 Subject: [PATCH 85/96] pulseaudio service: fix service path --- nixos/modules/config/pulseaudio.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/config/pulseaudio.nix b/nixos/modules/config/pulseaudio.nix index 1654d31cfeb..f2db428a444 100644 --- a/nixos/modules/config/pulseaudio.nix +++ b/nixos/modules/config/pulseaudio.nix @@ -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"; }; }; From e3e502e37a41f6ce4679124d926036230f5e8cfc Mon Sep 17 00:00:00 2001 From: Hannu Hartikainen Date: Wed, 27 Apr 2016 15:52:21 +0300 Subject: [PATCH 86/96] silver-searcher: add alias "ag" --- pkgs/top-level/all-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a10973312f3..5633ccb7b82 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3208,6 +3208,7 @@ in silc_server = callPackage ../servers/silc-server { }; silver-searcher = callPackage ../tools/text/silver-searcher { }; + ag = self.silver-searcher; simplescreenrecorder = callPackage ../applications/video/simplescreenrecorder { }; From e6e7c1e914b816397836d1508c2bee345e0518e0 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 19 Aug 2015 12:09:47 +0300 Subject: [PATCH 87/96] logmein-hamachi: init at 2.1.0.139, add nixos service --- nixos/modules/module-list.nix | 1 + .../services/networking/logmein-hamachi.nix | 50 +++++++++++++++++++ .../networking/logmein-hamachi/default.nix | 45 +++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 4 files changed, 98 insertions(+) create mode 100644 nixos/modules/services/networking/logmein-hamachi.nix create mode 100644 pkgs/tools/networking/logmein-hamachi/default.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index b238003dd0c..ec14fd2e363 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -338,6 +338,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 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/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/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a10973312f3..76a657cf1d5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2263,6 +2263,8 @@ in inherit (perlPackages) mimeConstruct; }; + logmein-hamachi = callPackage ../tools/networking/logmein-hamachi { }; + logkeys = callPackage ../tools/security/logkeys { }; logrotate = callPackage ../tools/system/logrotate { }; From 6c0404730f6470932493d59530f396a53c3a0e75 Mon Sep 17 00:00:00 2001 From: knedlsepp Date: Wed, 27 Apr 2016 13:37:15 +0000 Subject: [PATCH 88/96] catch: 1.2.1 -> 1.5.0 --- pkgs/development/libraries/catch/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 .. From d200e30e57342002312ea17270bdcdeaae49c65d Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 27 Apr 2016 13:06:18 +0200 Subject: [PATCH 89/96] simple-scan: 3.20.0 -> 3.21.1 --- pkgs/applications/graphics/simple-scan/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 From d71aabe00d13a39f0e4b6649b2b9334e8d535934 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 27 Apr 2016 13:11:05 +0200 Subject: [PATCH 90/96] hack-font: 2.019 -> 2.020 Changes: https://github.com/chrissimpkins/Hack/blob/master/CHANGELOG.md --- pkgs/data/fonts/hack/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"; }; From ed9e0b960e25fff36fdab05a51ec1dd6c6e30e0b Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 27 Apr 2016 16:42:44 +0200 Subject: [PATCH 91/96] gparted: 0.25.0 -> 0.26.0 Key changes include: - Implement read-only LUKS support - Add progress bars to NTFS, XFS, and EXT2/3/4 file system copy methods - Fix operations sometimes fail with: No such file or directory More: https://sourceforge.net/projects/gparted/files/gparted/gparted-0.26.0/gparted-0.26.0-README.md/view --- pkgs/tools/misc/gparted/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"; }; From 922383bb791a9ceb126daeed3a31726f17ef82e5 Mon Sep 17 00:00:00 2001 From: Mathieu Boespflug Date: Fri, 22 Apr 2016 00:20:44 +0200 Subject: [PATCH 92/96] terraform: fixup provider, provisioner binaries names. The build for some reason produces binaries with the wrong name. Terraform expects all its plugins to have a name of the form `terraform-TYPE-NAME`. So we add the `terraform-` prefix manually. --- pkgs/top-level/go-packages.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 941f77d9a61..f9c4b2878ce 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -3741,7 +3741,9 @@ let disabled = isGo14 || isGo15; sha256 = "1f1xm5pyz1hxqm2k74psanirpydf71pmxixplyc2x2w68hgjzi2l"; - buildInputs = [ ]; + postInstall = '' + for i in $bin/bin/{provider,provisioner}-*; do mv $i $bin/bin/terraform-$(basename $i); done + ''; }; testify = buildGoPackage rec { From 56f8206b859698cd3d8fe6f53c93e59a5aaf86bc Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Wed, 27 Apr 2016 10:27:52 -0500 Subject: [PATCH 93/96] Update `etc` example to not use a real config file A user noticed the example for `hosts`, took the `mode` permissions literally, and ended up with surprising behavior on their system. Updating the documentation to not reference a real config file which might have real permissions requirements. --- nixos/modules/system/etc/etc.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; }; From 2b384d401d5cd2a33be4261fc05d1684ebe02be6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edward=20Tj=C3=B6rnhammar?= Date: Wed, 27 Apr 2016 17:59:08 +0200 Subject: [PATCH 94/96] tsocks: switch back to regular stdenv libc, remove saveme compilation --- pkgs/development/libraries/tsocks/default.nix | 13 +++++++++++-- pkgs/top-level/all-packages.nix | 6 +----- 2 files changed, 12 insertions(+), 7 deletions(-) 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/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cd576d1bea0..9c6c9540da6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8979,11 +8979,7 @@ in unicap = callPackage ../development/libraries/unicap {}; - tsocks = callPackage ../development/libraries/tsocks { - stdenv = overrideCC stdenv ( - wrapCCWith (callPackage ../build-support/cc-wrapper) - musl "" gcc.cc); - }; + tsocks = callPackage ../development/libraries/tsocks { }; unixODBC = callPackage ../development/libraries/unixODBC { }; From 3329b75a14c6bd8a5c363bbd9e4eaadcedc77632 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 27 Apr 2016 18:20:13 +0200 Subject: [PATCH 95/96] bobcat: 4.01.04 -> 4.02.00 --- pkgs/development/libraries/bobcat/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"; From f66e9fd10d7599651117ac32c8212afcf34b7bfa Mon Sep 17 00:00:00 2001 From: Allen Nelson Date: Mon, 25 Apr 2016 16:16:22 -0500 Subject: [PATCH 96/96] sqlalchemy: define sqlalchemy_1_0 attribute --- pkgs/top-level/python-packages.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 447481db7b3..6bb1013bd72 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -20940,7 +20940,9 @@ in modules // { }; }; - sqlalchemy = buildPythonPackage rec { + sqlalchemy = self.sqlalchemy_1_0; + + sqlalchemy_1_0 = buildPythonPackage rec { name = "SQLAlchemy-${version}"; version = "1.0.12";